/* ---------- Základ ---------- */
:root {
  --fuchsia: #c9247f;
  --fuchsia-dark: #a41a66;
  --fuchsia-soft: #fbe6f1;
  --brown: #3b2419;
  --brown-mid: #5a3a2e;
  --brown-light: #8a6b5d;
  --cream: #fbf6f1;
  --cream-dark: #f3e8df;
  --white: #ffffff;
  --radius: 28px;
  --radius-sm: 18px;
  --shadow: 0 14px 40px rgba(59, 36, 25, 0.10);
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--brown);
  background: var(--cream);
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--brown);
}

h1 { font-size: clamp(2.8rem, 8vw, 5.2rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: 1.5rem; }

p { margin: 0 0 1em; }

a { color: var(--fuchsia); text-decoration: none; }
a:hover { color: var(--fuchsia-dark); }

ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

.section { padding: 5rem 0; }

.eyebrow {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--fuchsia);
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}

.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-lead { color: var(--brown-light); }

/* ---------- Tlačítka ---------- */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  background: var(--fuchsia);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--fuchsia);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 8px 22px rgba(201, 36, 127, 0.28);
}
.btn:hover {
  background: var(--fuchsia-dark);
  border-color: var(--fuchsia-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--white); }
.btn-small { padding: 0.55rem 1.4rem; font-size: 0.95rem; box-shadow: none; }
.btn-full { width: 100%; }

/* ---------- Hlavička ---------- */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
}
.logo {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--white);
  margin: 0;
}
.logo em { color: #f7a7d0; font-style: italic; }
.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav a { color: var(--white); font-size: 0.98rem; }
.nav a:not(.btn):hover { color: #f7a7d0; }

/* ---------- Úvodní vizuál ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--brown);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media video,
.hero-media img,
.hero-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(59,36,25,0.35) 0%, rgba(59,36,25,0.25) 50%, rgba(59,36,25,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 7rem 1.5rem 5rem;
  color: var(--white);
}
.hero-content h1 { color: var(--white); }
.hero-content .eyebrow { color: #f7a7d0; }
.hero-text {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* ---------- O salonu ---------- */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
.features {
  display: grid;
  gap: 1.2rem;
}
.feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.8rem 1.4rem;
  box-shadow: var(--shadow);
}
.feature h3 { font-size: 1.35rem; margin-bottom: 0.3rem; }
.feature p { margin: 0; color: var(--brown-light); font-size: 0.98rem; }
.feature-icon {
  display: inline-flex;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--fuchsia-soft);
  color: var(--fuchsia);
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feature-icon svg { width: 26px; height: 26px; }

/* ---------- Služby ---------- */
.services {
  background: var(--white);
  border-radius: var(--radius);
  margin: 0 clamp(0.5rem, 2vw, 1.5rem);
}
.service-list {
  display: grid;
  gap: 1rem;
}
.service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 1.8rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.service:hover {
  background: var(--fuchsia-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.service h3 { font-size: 1.4rem; margin-bottom: 0.15rem; }
.service p { margin: 0; color: var(--brown-light); font-size: 0.95rem; }
.price {
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--fuchsia);
  white-space: nowrap;
}

/* ---------- Objednání ---------- */
.booking-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
.contact-list {
  margin: 2rem 0 0;
  display: grid;
  gap: 1.1rem;
}
.contact-list dt {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--fuchsia);
  font-size: 0.95rem;
}
.contact-list dd { margin: 0; }

.booking-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.6rem);
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 1.2rem; }
.form-row.two { display: grid; gap: 1.2rem; }
label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: var(--brown-mid);
}
.req { color: var(--fuchsia); }
input, select, textarea {
  width: 100%;
  padding: 0.85rem 1.2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--brown);
  background: var(--cream);
  border: 2px solid var(--cream-dark);
  border-radius: 999px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
textarea { border-radius: var(--radius-sm); resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: var(--fuchsia);
  box-shadow: 0 0 0 4px rgba(201, 36, 127, 0.12);
  background: var(--white);
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23c9247f' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  padding-right: 2.8rem;
}
.form-note {
  font-size: 0.85rem;
  color: var(--brown-light);
  text-align: center;
  margin: 1rem 0 0;
}
.form-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form-result {
  display: none;
  margin: 1.2rem 0 0;
  padding: 0.9rem 1.3rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}
#form-success:target { display: block; background: #e8f5ea; color: #256a35; }
#form-error:target { display: block; background: #fdeaea; color: #9c2b2b; }

/* ---------- Patička ---------- */
.site-footer {
  background: var(--brown);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0;
  border-radius: var(--radius) var(--radius) 0 0;
  text-align: center;
  font-size: 0.92rem;
}
.footer-inner .logo { display: block; margin-bottom: 0.6rem; }
.footer-inner p:last-child { margin: 0; }

/* ---------- Větší obrazovky ---------- */
@media (min-width: 720px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
  .service-list { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .about-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
  .booking-grid { grid-template-columns: 0.85fr 1.15fr; gap: 4rem; }
  .section { padding: 6.5rem 0; }
}

@media (max-width: 600px) {
  .nav a:not(.btn) { display: none; }
  .hero { min-height: 80vh; }
}
