@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --hero-bg: #e3b0a2;
  --hero-text: #fdf9f6;
  --footer-bg: #e7e1d7;
  --text-main: #3c3331;
  --button-bg: #fdf9f6;
  --button-text: #3c3331;
  --button-hover-bg: #f7efe7;
}

* {
  box-sizing: border-box;
}

/* Global fonts */
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background-color: #faf7f4;
}

a {
  color: inherit;
  text-decoration: none;
}

/* All key headings use Playfair */
.site-title,
.hero-title,
.section-title,
.book-subtitle,
.service-heading,
.footer-brand {
  font-family: "Playfair Display", serif;
}

/* HEADER & NAV */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(227, 176, 162, 0.96);
  backdrop-filter: blur(6px);
}

.site-title {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hero-text);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.9rem;
  color: var(--hero-text);
}

.nav-links a {
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--button-text);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.nav-cta:hover {
  background: var(--button-hover-bg);
  transform: translateY(-1px);
}

/* MOBILE NAV TOGGLE */

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--hero-text);
  margin: 4px 0;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* When menu is open, animate the icon into an X */
.nav-toggle.nav-open .nav-toggle-line:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle.nav-open .nav-toggle-line:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

/* HERO */

.hero {
  min-height: 100vh;
  padding: 120px 8vw 80px;
  background: var(--hero-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.hero-copy {
  color: var(--hero-text);
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  margin-bottom: 10px;
  opacity: 0.85;
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 20px;
}

.hero-title span.emoji {
  font-size: 1.1em;
}

.hero-text {
  max-width: 360px;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-primary,
.btn-ghost {
  border-radius: 999px;
  padding: 11px 26px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--button-bg);
  color: var(--button-text);
}

.btn-primary:hover {
  background: var(--button-hover-bg);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(253, 249, 246, 0.6);
  color: var(--hero-text);
}

.btn-ghost:hover {
  background: rgba(253, 249, 246, 0.12);
}

/* HERO IMAGE */

.hero-image-wrap {
  display: flex;
  justify-content: center;
}

.hero-image-card {
  background: #fdf9f6;
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  max-width: 440px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-card img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* SECTIONS */

.page-section {
  padding: 80px 8vw 60px;
  background: #faf7f4;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.section-intro {
  max-width: 520px;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ABOUT SECTION GRID */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
}

.about-photo {
  display: flex;
  justify-content: center;
}

.about-photo img {
  max-width: 360px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  object-fit: cover;
}

/* Booking & Payments grid */

.book-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.book-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 28px 24px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.book-actions {
  margin-top: 18px;
}

.book-subtitle {
  font-size: 1.3rem;
  margin: 0 0 10px;
}

.book-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* visually disabled placeholder button */
.disabled-btn {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}

/* SERVICES GRID */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 22px 20px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.service-heading {
  font-size: 1.15rem;
  margin: 0 0 10px;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
  padding: 4px 0;
}

.service-name {
  font-weight: 500;
}

.service-price {
  font-weight: 600;
}

.services-note {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* FOOTER */

.footer {
  background: var(--footer-bg);
  padding: 40px 8vw 36px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  font-size: 0.9rem;
}

.footer-brand {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.footer-heading {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 8px;
}

.footer-small {
  margin-top: 12px;
  font-size: 0.75rem;
  opacity: 0.7;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero {
    padding: 96px 6vw 48px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-image-wrap {
    order: -1;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 5vw;
    margin-top: 8px;
    background: rgba(227, 176, 162, 0.98);
    border-radius: 999px;
    padding: 10px 18px;
    display: none;
    flex-direction: column;
    gap: 10px;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    order: -1;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .book-grid {
    grid-template-columns: 1fr;
  }
}
