/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blush: #f9eff0;
  --blush-mid: #f0e4e8;
  --lavender-bg: #ede8f5;
  --rose: #b97287;
  --rose-dark: #a15e73;
  --mauve: #8b6a7a;
  --accent-purple: #9980b8;
  --dark: #2c1f26;
  --body-text: #5a4050;
  --muted: #9b7d8a;
  --white: #ffffff;
  --cream: #fdf8f5;
  --footer-bg: #2c1f26;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
  --nav-h: 70px;
  --max-w: 1280px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

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

/* ===== TYPOGRAPHY HELPERS ===== */
.eyebrow {
  max-width: 600px; /* Limits width so it doesn't span the whole screen */
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-transform: none; /* Optional: keep it normal case if you prefer */
  letter-spacing: 0.05em;
  font-size: 1rem;
}

.accent-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--accent-purple);
}

.body-text {
  font-size: 1rem;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--body-text);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-header.centered {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--rose);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--rose);
  color: var(--rose);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  transition: background 0.25s, color 0.25s;
}
.btn-outline:hover { background: var(--rose); color: var(--white); }

.btn-send {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--rose), var(--accent-purple));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: opacity 0.25s, transform 0.2s;
}
.btn-send:hover { opacity: 0.9; transform: translateY(-1px); }

/* ===== IMAGE EDIT OVERLAY ===== */
.img-edit-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255,255,255,0.92);
  border: 1.5px solid var(--rose);
  color: var(--rose);
  font-size: 0.78rem;
  font-family: var(--font-sans);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, color 0.2s;
  backdrop-filter: blur(4px);
}
.img-edit-overlay:hover { background: var(--rose); color: var(--white); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 4%;
  background: rgba(253, 248, 245, 0.96);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(185, 114, 135, 0.1);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(44,31,38,0.08); }

/* Find .nav-logo and .logo-img in style.css and update them */
.nav-logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}

#mainLogo {
  display: block;
  height: 50px; /* Adjust this to make it look right in your 70px header */
  width: auto;
  object-fit: contain;
}

/* You can remove .logo-text and .logo-img-wrapper from CSS if they are no longer used */
.logo-img.hidden { display: none; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0 2rem;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--rose); }

.btn-book {
  background: var(--rose);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 400;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-book:hover { background: var(--rose-dark); }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
  margin-left: 1rem;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--cream);
  padding: 1.5rem 2rem;
  z-index: 999;
  border-bottom: 1px solid var(--blush-mid);
  box-shadow: 0 8px 20px rgba(44,31,38,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { padding: 0.75rem 0; border-bottom: 1px solid var(--blush-mid); }
.mobile-menu ul li:last-child { border-bottom: none; padding-top: 1.25rem; }
.mobile-menu ul li a { font-size: 1rem; color: var(--dark); font-weight: 400; }
.mobile-menu .btn-book { display: inline-block; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background: linear-gradient(135deg, #fdf4f6 0%, #f5ecf5 50%, #ede8f5 100%);
  overflow: hidden;
}

.hero-content {
  flex: 1;
  padding: 4rem 4% 4rem 6%;
  max-width: 700px;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1rem;
  color: var(--body-text);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image-col {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 5% 4rem 0;
}

.hero-img-container {
  position: relative;
  width: min(420px, 90%);
}

.hero-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: var(--blush-mid);
  min-height: 300px;
  border: 1.5px solid var(--rose); 
  box-sizing: border-box;
}

/* Placeholder when no image */
.hero-photo:not([src]), .hero-photo[src=""] {
  background: linear-gradient(135deg, var(--blush-mid), var(--lavender-bg));
  min-height: 420px;
}

.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--white);
  border-radius: 12px;
  padding: 1rem 1.4rem;
  box-shadow: 0 8px 30px rgba(44,31,38,0.12);
}
.badge-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.badge-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--dark);
}

/* ===== ABOUT ===== */
.about {
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 7rem 6%;
  background: var(--cream);
  max-width: var(--max-w);
  margin: 0 auto;
}

.about-image-col {
  flex: 0 0 420px;
  max-width: 420px;
}

.about-img-container {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: 50% 50% 40% 40% / 55% 55% 45% 45%;
  background: linear-gradient(135deg, var(--blush-mid), var(--lavender-bg));
  min-height: 420px;
}

.about-badge {
  position: absolute;
  top: 2.5rem;
  right: -2rem;
  background: #f5ecf7;
  border-radius: 10px;
  padding: 0.75rem 1.1rem;
  font-size: 0.82rem;
  color: var(--mauve);
  line-height: 1.5;
  box-shadow: 0 4px 15px rgba(44,31,38,0.08);
}

.about-text-col {
  flex: 1;
}

.about-text-col h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-quote {
  border-left: 3px solid var(--lavender-bg);
  padding-left: 1.5rem;
  margin: 1.5rem 0 2rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--body-text);
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services {
  padding: 7rem 6%;
  background: linear-gradient(180deg, #fdf4f2 0%, var(--cream) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(44,31,38,0.1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--lavender-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--dark);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-tags {
  font-size: 0.82rem !important;
  color: var(--rose) !important;
  font-style: normal;
}

/* Restores the centered card look with side margins */
.schedule-table-wrapper {
  /* This creates the space on the right and left */
  max-width: 1100px; 
  margin: 2rem auto 4rem; /* Centers the div horizontally */
  
  /* Restores the card aesthetic */
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(44,31,38,0.08);
  overflow: hidden; 
  padding: 0;
}

/* Ensure the table fills the new centered container */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

/* Add a bit of horizontal padding to the section if needed */
.schedule {
  padding-left: 5%;
  padding-right: 5%;
}

.schedule-table thead tr:first-child th[colspan="2"] {
  text-align: center;
  padding-bottom: 0.5rem;
  color: var(--rose);
}

/* Increase vertical spacing between rows */
.schedule-table td {
  /* 2.5rem at the top and bottom will create a much taller, cleaner row */
  padding: 2.5rem 1rem; 
  border-bottom: 1px solid var(--blush-mid);
  color: var(--dark);
  vertical-align: middle;
}

/* Also adjust the header padding to match the new spacious look */
.schedule-table th {
  padding: 2rem 1rem 1rem; /* More space at the very top of the table */
}

/* Ensure the sub-headers (UK/India) don't get too much extra space */
.sub-header th {
  padding: 0.5rem 1rem 1.5rem;
}
/* Adds the line under the main header row */
.schedule-table thead tr:first-child th {
  border-bottom: 1px solid var(--blush-mid);
  padding-bottom: 1rem;
}

/* Adds the line under the UK/India sub-header row */
.schedule-table thead tr.sub-header th {
  border-bottom: 1px solid var(--blush-mid);
  padding-bottom: 1.5rem; /* Keeps that nice spacing we just added */
}

/* Optional: Make the first row headers bold like the original */
.schedule-table th {
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.05em;
}
.schedule-table thead tr:last-child th:nth-child(3),
.schedule-table thead tr:last-child th:nth-child(4) {
  text-align: center;
}
.row-highlight { background: rgba(249, 239, 240, 0.6); }

.badge-pill {
  background: var(--lavender-bg);
  color: var(--accent-purple);
  font-size: 0.78rem;
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
}

.badge-full {
  background: var(--blush-mid);
  color: var(--muted);
  font-size: 0.78rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  display: inline-block;
}

.btn-book-row {
  border: 1.5px solid var(--rose);
  color: var(--rose);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 400;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.btn-book-row:hover { background: var(--rose); color: var(--white); }

/* ===== STORIES ===== */
.stories {
  padding: 7rem 6%;
  background: linear-gradient(135deg, var(--lavender-bg), #ede4f0);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  position: relative;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--blush-mid);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.testimonial-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  font-family: var(--font-sans) !important;
  font-style: normal !important;
  font-size: 0.82rem !important;
  color: var(--muted) !important;
  margin-bottom: 0 !important;
}

/* ===== FAQ ===== */
.faq {
  padding: 7rem 6%;
  background: var(--cream);
}

.faq .eyebrow {
  display: block;
  text-align: left; /* Forces it to the left */
  margin-left: 0;   /* Removes any auto-centering margin */
  margin-bottom: 0.5rem;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 3rem;
}

.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--blush-mid);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--dark);
  cursor: pointer;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--rose); }

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blush-mid);
  color: var(--rose);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: var(--body-text);
  font-size: 0.98rem;
  line-height: 1.8;
}

/* ===== CONNECT ===== */
.connect {
  padding: 7rem 6%;
  background: linear-gradient(135deg, var(--lavender-bg) 0%, #f0e8f5 100%);
  text-align: center;
}

.connect-inner { max-width: 720px; margin: 0 auto; }

.connect h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.connect .section-sub { margin-bottom: 3rem; }

.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(44,31,38,0.08);
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full { margin-bottom: 1.25rem; }

.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #fdf5f0;
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--dark);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--footer-bg);
  padding: 3rem 6%;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand { flex: 1; min-width: 200px; }

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }

.footer-socials { display: flex; gap: 0.75rem; }

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.65);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.social-btn:hover { border-color: var(--white); color: var(--white); }

.footer-copy {
  width: 100%;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-align: right;
  margin-top: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about {
    gap: 3rem;
  }
  .about-image-col {
    flex: 0 0 320px;
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links, .btn-book { display: none; }
  .hamburger { display: block; }

  .hero {
    flex-direction: column;
    padding-top: calc(var(--nav-h) + 1rem);
    min-height: auto;
  }
  .hero-content {
    padding: 3rem 5%;
    order: 2;
    text-align: center;
    max-width: 100%;
  }
  .hero-btns { justify-content: center; }
  .hero-image-col {
    order: 1;
    padding: 2rem 5% 0;
    width: 100%;
  }
  .hero-img-container { width: min(300px, 80%); }
  .hero-badge { left: -0.5rem; }

  .about {
    flex-direction: column;
    padding: 4rem 5%;
    gap: 2.5rem;
  }
  .about-image-col { flex: none; max-width: 300px; margin: 0 auto; }
  .about-badge { right: -0.5rem; }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .schedule { padding: 4rem 3%; }
  .faq { padding: 4rem 5%; }
  .connect { padding: 4rem 5%; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy { text-align: left; }

  .section-header h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero-heading { font-size: 2.2rem; }
  .schedule-table th:nth-child(4),
  .schedule-table td:nth-child(4) { display: none; }
}
