
:root {
  --fs-hero: clamp(2rem, 6vw, 4rem);
  --fs-h1: clamp(1.8rem, 5vw, 3rem);
  --fs-h2: clamp(1.6rem, 4vw, 2.4rem);
  --fs-h3: clamp(1.3rem, 3vw, 2rem);
  --fs-body: clamp(1rem, 2vw, 1.2rem);
  --fs-small: clamp(0.85rem, 1.8vw, 1rem);
}

/* Remove inconsistent % scaling */
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

/* Prevent horizontal scroll but allow animations */
body {
  overflow-x: hidden;
  background: #ffffff;
  font-family: "Times New Roman", serif;
  color: #333;
  line-height: 1.6;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Images & media — keep proportions */
img, video {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* --------------------------------------------
   TYPOGRAPHY APPLICATION
-------------------------------------------- */

h1, .section-title {
  font-size: var(--fs-h1);
  font-family: "Recoleta", "Times New Roman", serif;
  text-align: center;
  color: #535d17;
  margin-bottom: 0.8em;
}

h2 {
  font-size: var(--fs-h2);
  margin-bottom: 0.6em;
}
h3 {
  font-size: var(--fs-h3);
  margin-bottom: 0.4em;
}
p {
  font-size: var(--fs-body);
}

/* --------------------------------------------
   BUTTONS (global)
-------------------------------------------- */
button, .btn, .btn-service, .btn-contact {
  font-size: var(--fs-body);
  padding: 12px 22px;
  border-radius: 6px;
  cursor: pointer;
}

/* Mobile button adjustments */
@media (max-width: 520px) {
  button, .btn, .btn-service, .btn-contact {
    width: 100%;
  }
}

/* --------------------------------------------
   LAYOUT HELPERS
-------------------------------------------- */

/* Smoother stacking without breaking desktop layout */
@media (max-width: 768px) {
  .flex-row {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
  }
}

/* ----------------------------------------------------
   HEADER
---------------------------------------------------- */
/* ================= HEADER ================= */
.header {
  width: 100%;
  background: #f8f1e7;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  box-sizing: border-box;
}

/* ---------- LEFT: LOGO ---------- */
.header-left {
  display: flex;
  align-items: center;
}

.brand-icon {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

/* ---------- RIGHT: THREE DOT MENU ---------- */
.header-right {
  display: flex;
  align-items: center;
}

/* three-dot button */
.menu-toggle {
  width: 34px;
  height: 26px;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  width: 100%;
  height: 4px;
  background: #535d17;
  border-radius: 3px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- DROPDOWN PANEL ---------- */
.menu-dropdown {
  position: absolute;
  top: 90px;
  right: 32px;
  width: 280px;
  background: #f8f1e7;
  border-radius: 14px;
  padding: 18px 18px 20px;
  box-shadow: 0 22px 40px rgba(0,0,0,0.18);
  z-index: 999;
  box-sizing: border-box;
}

.menu-dropdown.hidden {
  display: none;
}

/* ---------- NAV LINKS ---------- */
.dropdown-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.dropdown-nav .nav-link {
  background: none;
  border: none;
  text-align: left;
  font-size: 20px;
  font-family: "Times New Roman", serif;
  color: #535d17;
  cursor: pointer;
  padding: 6px 4px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-nav .nav-link:hover {
  opacity: 0.75;
  transform: translateX(2px);
}

/* ---------- LOGIN / SIGNUP ---------- */
.dropdown-auth {
  display: flex;
  gap: 10px;
}

.btn-nav {
  flex: 1;
  background: #ffffff;
  border: 1px solid #535d17;
  border-radius: 8px;
  padding: 10px 0;
  font-size: 16px;
  color: #535d17;
  cursor: pointer;
  font-family: "Times New Roman", serif;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn-nav:hover {
  background: #535d17;
  color: #ffffff;
}

.btn-nav.signup {
  background: #b4ba8f;
  border-color: #b4ba8f;
  color: #ffffff;
}

.btn-nav.signup:hover {
  background: #a6ad7a;
}

/* ---------- MOBILE TUNING ---------- */
@media (max-width: 520px) {
  .menu-dropdown {
    right: 16px;
    width: 92%;
  }

  .dropdown-nav .nav-link {
    font-size: 18px;
  }
}



/* ----------------------------------------------------
   HERO SECTION
---------------------------------------------------- */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(24px, 5vw, 60px);
  background: #ffffff;
  gap: clamp(20px, 5vw, 60px);
  flex-wrap: nowrap;
}

/* ---------- LEFT SIDE ---------- */
.hero-left {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* small logo */
.hero-logo {
  width: clamp(80px, 18vw, 220px);
  margin-bottom: 4px;
  margin-top: 0;
}

/* main title */
.title-main {
  font-family: "alice", serif;
  font-size: 75px;       /* original size */
  color: #535d17;
  letter-spacing: 2px;
  margin: 2px 0;
  text-align: center;
}

/* subtitle */
.title-sub {
  font-family: "alice", serif;
  color: #9b8f61;
  font-size: 50px;       /* original size */
  margin-bottom: 10px;
  text-align: center;
}

/* circular image holder */
.hero-circle-wrap {
  width: clamp(180px, 40vw, 350px);
  height: clamp(180px, 40vw, 350px);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: clamp(20px, 6vw, 80px) auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  background: #fff;
}

/* circular image */
.hero-circle {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* divider line */
.hero-divider {
  width: 80%;
  height: 2px;
  background: #9b8f61;
  margin: clamp(8px, 2vw, 20px) auto;
  border-radius: 2px;
  opacity: 0.9;
}

/* hero description */
.hero-desc {
  color: #535d17;
  font-family: "alice", serif;
  font-size: 30px;       /* original size */
  line-height: 1.4;
  text-align: center;
  max-width: 1500px;
  margin-top: 6px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- RIGHT SIDE (Lotus image) ----------
   This part stays strong on desktop, scales properly below it.
*/
.hero-right {
  width: 40%;
  display: flex;
  justify-content: center;
}

/* .hero-img {
  width: 500px;
  height: 850px;
  max-width: 700px;
  object-fit: cover;
  border-radius: 8px;
} */


/* 📱 Tablets & Phones — responsive scaling */
@media (max-width: 1200px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-left,
  .hero-right {
    width: 100%;
  }
  .hero-img {
    margin-top: 20px;
  }
  .hero-img {
    width: clamp(220px, 50vw, 420px);
    height: auto;
    max-height: clamp(300px, 60vw, 720px);
    object-fit: cover;
    border-radius: 8px;
  }
  .title-main {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
  }
  .title-sub {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
  }
  .hero-desc {
    font-size: clamp(1rem, 2.6vw, 1.8rem);
    max-width: 900px;
  }
}

/* Improve readability on small phones */
@media (max-width: 480px) {
  .hero-desc {
    padding: 0 16px;
  }
  .title-main {
    letter-spacing: 1px;
  }
  .hero-img {
    width: clamp(220px, 50vw, 420px);
    height: auto;
    max-height: clamp(300px, 60vw, 720px);
    object-fit: cover;
    border-radius: 8px;
  }
}


/* ----------------------------------------------------
   WELCOME SECTION
---------------------------------------------------- */
.welcome-section {
  position: relative;
  width: 100%;
  min-height: clamp(480px, 90vh, 850px);

  /* CENTER CONTENT VERTICALLY */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: clamp(40px, 8vw, 90px) clamp(20px, 6vw, 60px);
  text-align: center;
  overflow: hidden;
}

/* Background blur */
.welcome-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/welcome.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(6px);
  transform: scale(1.08);
  z-index: 1;
}

/* slight overlay for readability */
.welcome-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  z-index: 2;
}

/* content above images */
.welcome-section > * {
  position: relative;
  z-index: 3;
}

/* --------------------------------------------
   TITLE — override global green style
-------------------------------------------- */
.welcome-section .section-title {
  font-family: "Alice", serif;
  color: #000;
  font-size: 95px;     /* original size restored */
  margin-bottom: 50px;
  margin-top: 5%;
} 

/* --------------------------------------------
   TEXT — readable, centered, responsive
-------------------------------------------- */
.welcome-text {
  font-family: "Alice", serif;
  color: #111;
  font-size: 35px;     /* original size restored */
  line-height: 1.3;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;

  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Tablets & below — let text breathe */
@media (max-width: 1200px) {
  .welcome-text {
    -webkit-line-clamp: unset;
    overflow: visible;
  }

  .welcome-section .section-title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    margin-top: clamp(20px, 6vw, 60px);
    margin-bottom: clamp(16px, 4vw, 40px);
  }
  .welcome-text {
    font-size: clamp(1rem, 2.6vw, 2rem);
    line-height: 1.45;
    max-width: clamp(300px, 85vw, 900px);
    -webkit-line-clamp: unset;     /* allow full text on mobile/tablet */
    overflow: visible;
  }
}


/* Small mobiles — extra breathing room */
@media (max-width: 600px) {
  .welcome-section {
    padding-top: clamp(60px, 15vh, 140px);
  }
}



/* ----------------------------------------------------
   SERVICES SECTION
---------------------------------------------------- */
/* ---------- SERVICES SECTION (background image + overlay) ---------- */
.services {
  text-align: center;
  padding: 80px 40px;
  background: #f8f1e7;
}

/* subtle overlay for legibility (optional) */
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ensure content sits above overlay */
.services > * { position: relative; z-index: 2; }

/* section title */
.section-title {
  font-family: "Alice", serif;
  font-size: 75px;
  color: #535d17;
  letter-spacing: 2px;
  margin-bottom: 36px;
  text-align: center;
  margin-top: -3%;
}

/* --- GRID CONTAINER: center and distribute space evenly --- */
/* set a comfortable max width so left/right gutters are equal */
.service-grid {
  max-width: 12000px;        /* controls outer gutters: tweak as needed */
  margin: 0 auto;           /* center the grid on the page */
  display: flex;
  justify-content: space-between;  /* equal space between cards and equal left/right gutters */
  gap: 50px;                /* internal gap between cards */
  align-items: stretch;     /* force equal heights */
  flex-wrap: wrap;
  box-sizing: border-box;
  padding: 0 10px;
}

/* --- CARD --- */
.service-card {
  width: 30%;               /* 3 cards at ~32% fills the max-width evenly */
  min-width: 260px;         /* allows responsive wrap */
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  padding: 18px;
  box-sizing: border-box;
}

/* Image: consistent size */
.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-bottom: 14px;
}

/* content grows to keep button at bottom */
.service-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* TITLE: clamp to 2 lines, fixed size for consistent appearance */
.service-title-first {
  font-family: serif;
  font-size: 35px;           /* tuned so most titles wrap to max 2 lines */
  color: #38501a;            /* darker green */
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0.6px;

  display: -webkit-box;
  -webkit-line-clamp: 2;     /* show max 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.05em * 2); /* fallback */
}

.service-title {
  font-family: serif;
  font-size: 35px;           /* tuned so most titles wrap to max 2 lines */
  color: #38501a;            /* darker green */
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0.6px;
  margin-top: 5%;

  display: -webkit-box;
  -webkit-line-clamp: 2;     /* show max 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.05em * 2); /* fallback */
}

/* Price line (new) */
.service-price {
  font-family: serif;
  font-size: 30px;
  color: #535d17;
  margin: 6px 0 0;
  /* font-weight: 600; */
}

/* Meta list */
.service-meta-frist {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  color: #535d17;
  font-family: serif;
  font-size: 30px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15%;
}

.service-meta {
  list-style: none;
  padding: 0;
  margin: 6px 0 0 0;
  color: #535d17;
  font-family: serif;
  font-size: 30px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10%;
}

.service-meta-third {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  color: #535d17;
  font-family: serif;
  font-size: 30px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 17%;
}

.service-meta li { display:flex; align-items:center; gap:10px; }
.service-meta-frist li { display:flex; align-items:center; gap:10px; }
.service-meta-third li { display:flex; align-items:center; gap:10px; }

/* small icon style */
.meta-icon {
  display: inline-flex;
  align-items: left;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(83,93,23,0.08);
  color: #535d17;
  font-size: 20px;
}

.meta-icon {
  display: inline-flex;
  align-items: left;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(83,93,23,0.08);
  color: #535d17;
  font-size: 20px;
}

/* action area fixed to bottom of card */
.service-action {
  margin-top: 14px;
  display:flex;
  justify-content:flex-start;
}

/* Book button */
.btn-service {
  padding: 10px 26px;
  background: #b4ba8f;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 35px;
  font-family: "alice", serif;
  cursor: pointer;
  box-shadow: 0 6px 0 rgba(180,186,143,0.12);
  margin-top: 5%;
}

.btn-service-frist {
  padding: 10px 26px;
  background: #b4ba8f;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 35px;
  font-family: "alice", serif;
  cursor: pointer;
  box-shadow: 0 6px 0 rgba(180,186,143,0.12);
  margin-top: 5%;
}

/* hover */
.btn-service:hover { background:#a8af7b; transform: translateY(-3px); }
.btn-service-frist:hover { background:#a8af7b; transform: translateY(-3px); }

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {

  .services {
    padding: 60px 28px;
  }

  .service-grid {
    justify-content: center;
    gap: 30px;
  }

  .service-card {
    width: 45%;                 /* 2 cards per row */
  }

  /* make text scale smoothly */
  .service-title-first,
  .service-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }

  .service-meta,
  .service-meta-frist,
  .service-meta-third {
    font-size: clamp(1.1rem, 2.3vw, 1.6rem);
  }

  .btn-service-frist {
    font-size: clamp(1.1rem, 2.4vw, 1.6rem);
    padding: clamp(8px, 1.4vw, 14px) 24px;
  }
}


/* ======= PHONES / SMALL TABLETS ======= */
@media (max-width: 820px) {

  .service-card {
    width: 100%;                /* stack vertically */
  }

  .service-card img {
    height: clamp(180px, 45vw, 260px); /* responsive image height */
  }

  .services {
    padding: 50px 22px;
  }

  .section-title {
    font-size: clamp(2rem, 9vw, 3.2rem);   /* responsive title without desktop change */
  }

  /* ensure spacing looks balanced */
  .service-meta,
  .service-meta-frist,
  .service-meta-third {
    gap: 6px;
    margin-top: 14px;
  }

  /* keep button full width on small screens */
  .service-action {
    justify-content: center;
    margin-top: 18px;
  }

  .btn-service-frist {
    width: 100%;
  }
}


/* ======= SMALL PHONES ======= */
@media (max-width: 480px) {

  .services {
    padding: 45px 18px;
  }

  .service-card img {
    height: clamp(160px, 48vw, 240px);
  }

  .service-title-first,
  .service-title {
    font-size: clamp(1.3rem, 6vw, 1.7rem);
  }

  .service-meta,
  .service-meta-frist,
  .service-meta-third {
    font-size: clamp(0.95rem, 4vw, 1.2rem);
  }

  .btn-service-frist {
    font-size: clamp(1rem, 5vw, 1.4rem);
    padding: 10px;
  }
}


/* ---------------- OUR SHOP (featured green area) ---------------- */
.our-shop {
  width: 100%;
  background-image: url("assets/personalised bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  padding: 56px 48px;
}


/* Left feature collage (tilted images) */
.shop-feature-left {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* feature collage container */
/* ---------- Feature collage (3 images placed like provided screenshot) ---------- */
/* ---------- Collage Container ---------- */
/* -----------------------------------------------------
   SHOP SECTION BASE
----------------------------------------------------- */

/*.our-shop {*/
/*  width: 100%;*/
/*  background-image: url("assets/personalised bg.jpg");*/
/*  background-size: cover;*/
/*  background-position: center;*/
/*  background-repeat: no-repeat;*/
/*  box-sizing: border-box;*/
/*  padding: 56px 48px;*/
/*}*/

/* -----------------------------------------------------
   IMAGE SLIDER (matches Gentle Yoga)
----------------------------------------------------- */

/* Make image row full width and centered */
.animated-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;   /* space between image & 2-column text */
}


.animated-image-wrapper img {
  width: min(420px, 90%);
  max-width: 100%;
  border-radius: 12px;
  height: auto;

  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animated-image-wrapper img.active {
  opacity: 1;
  transform: translateX(0);
}

/* -----------------------------------------------------
   SHOP CONTENT (2 COLUMN DESKTOP)
----------------------------------------------------- */

.shop-text-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  column-gap: 40px;
  flex-wrap: nowrap;
  margin-top: 40px;
}

/* desktop splits columns evenly */
.shop-left,
.shop-right {
  width: 48%;
  text-align: left;       /* ENSURES LISTS NEVER CENTER */
}

/* stack on mobile */
/*@media (max-width: 900px) {*/
/*  .shop-text-wrapper {*/
/*    flex-direction: column;*/
/*    gap: 28px;*/
/*  }*/

/*  .shop-left,*/
/*  .shop-right {*/
/*    width: 100%;*/
/*  }*/
/*}*/

/* -----------------------------------------------------
   TYPOGRAPHY & LIST STYLING (aligned everywhere)
----------------------------------------------------- */

.shop-label {
  font-family: "Recoleta", serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: #576314;
  margin-bottom: 8px;
  text-align: left;
}

.shop-list {
  font-family: "Recoleta", serif;
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  line-height: 1.6;
  color: #576314;
  padding-left: 20px;     /* FIX: bullet indent aligned */
  margin-top: 0;
  text-align: left;
}

.shop-list li {
  margin-bottom: 6px;     /* better spacing consistency */
  text-align: left;
}

.shop-text {
  font-family: "Recoleta", serif;
  font-size: clamp(1.05rem, 2.6vw, 1.6rem);
  line-height: 1.6;
  color: #576314;
  margin-top: 20px;       /* clean spacing before button */
  text-align: left;
}

/* -----------------------------------------------------
   BUTTON — SAME LOOK AS GENTLE YOGA
----------------------------------------------------- */

.btn-add {
  display: inline-block;
  padding: 15px 30px;
  background: #ffffff;
  color: #576314;
  border: 2px solid rgba(83,93,23,0.15);
  border-radius: 35px;
  font-family: "Alice", serif;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 0 rgba(0,0,0,0.06);
  font-size: clamp(25px, 2vw, 46px);
  margin-top: 20px;
}


/* =====================================================
   TABLET — stack columns but keep slider on top
===================================================== */

/* =====================================================
   FINAL MOBILE/TABLET ALIGNMENT FIX
===================================================== */
@media (max-width: 1024px) {

  /* stack text columns */
  .shop-text-wrapper {
    flex-direction: column;
    width: 100%;
    gap: 32px;
  }

  /* full width containers */
  .shop-left,
  .shop-right,
  .shop-option {
    width: 100%;
    display: block;
  }

  /* align titles + lists */
  .shop-label {
    font-weight: 600;
    margin: 0 0 6px 0;  /* title spacing */
    text-align: left;
    display: block;
  }

  .shop-list {
    padding-left: 24px; /* bullet indentation */
    margin: 0;
    list-style-position: outside;
    text-align: left;
  }

  .shop-list li {
    margin-bottom: 6px;
  }

  /* extra spacing between product & scent blocks */
  .shop-option {
    margin-bottom: 28px;
  }

  /* below text stays centered on mobile */
  .shop-text {
    margin-top: 12px;
    text-align: center;
  }
}



/* ----------------------------------------------------
   FAQ SECTION
---------------------------------------------------- */
/* SECTION */
.faq-section {
  background: #ffffff; /* left side white */
  padding: 0;
  font-family: "Alice", serif;
}



/* MAIN CONTAINER */
.faq-container {
  display: flex;
  width: 100%;
  min-height: 100vh;
}



/* LEFT COLUMN */
.faq-left {
  width: 35%;
  background: #ffffff; /* ✅ white */
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;      /* needed for bottom image */
  padding: 60px 30px;
  box-sizing: border-box;
}


/* FAQs TITLE */
.faq-title {
  font-size: 90px;
  color: #535d17;
  margin: 0;
  font-family: "Alice", serif;
 
}


/* IMAGE WRAPPER — PUSH TO BOTTOM */
.faq-image-wrap {
  position: absolute;
  bottom: -5%;              /* ✅ exact bottom */
  left: 48%;
  transform: translateX(-50%);
}


/* IMAGE */
.faq-img {
  width: auto;
  height: 100%;
  display: block;
}


/* RIGHT COLUMN */
.faq-right {
  width: 65%;
  background: #f8f1e7;
  padding: 80px 0 80px 60px; /* ⬅ left padding only */
  color: #535d17;
  box-sizing: border-box;
}



/* FAQ ITEMS */
.faq-item h4 {
  font-size: 34px;
  margin: 0 0 12px;
  font-weight: 500;
  font-family: "alice", serif;
}

.faq-item p {
  font-family: "Public Sans", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  margin: 0;

  /* 🔒 FORCE 2 LINES ONLY */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}



/* DIVIDER LINE */
.faq-divider {
  height: 1px;
  background: rgba(83,93,23,0.35);
  margin: 36px 0;
}


/* RESPONSIVE */
@media (max-width: 1200px) {
  .faq-title {
    font-size: clamp(2.2rem, 6vw, 3.8rem);  /* similar scale as other titles */
  }

  .faq-item h4 {
    font-size: clamp(1.4rem, 3.6vw, 2.2rem);
  }

  .faq-item p {
    font-size: clamp(1rem, 2.6vw, 1.4rem);
    line-height: 1.5;
    -webkit-line-clamp: unset;      /* allow full answers */
    overflow: visible;
  }
}

/* ===== STACK COLUMNS (<=980px) ===== */
@media (max-width: 980px) {
  .faq-container {
    flex-direction: column;
    min-height: auto;
  }

  .faq-left, .faq-right {
    width: 100%;
  }

  .faq-left {
    padding: 0px 20px 0px;
    align-items: center;
  }

  .faq-title {
    margin-bottom: 20px;
  }

  /* image centered below title */
  .faq-image-wrap {
    position: static;
    transform: none;
    margin-top: 70px;
    margin-bottom: -50px;
  }

  .faq-img {
    width: clamp(260px, 50vw, 360px);
    height: auto;
  }

  .faq-right {
    padding: 40px 20px;
  }
}

/* ===== SMALL MOBILE (<=520px) ===== */
@media (max-width: 520px) {
  .faq-title {
    font-size: clamp(2.4rem, 7vw, 4.6rem);
    margin-top: 75px;
  }

  .faq-item h4 {
    font-size: clamp(1.3rem, 6vw, 2rem);
  }

  .faq-item p {
    font-size: clamp(0.9rem, 4.6vw, 1.2rem);
    line-height: 1.45;
  }

  .faq-divider {
    margin: 28px 0;
  }
}

/* ----------------------------------------------------
   CONNECT SECTION
---------------------------------------------------- */
.connect-section {
  background: #f8f1e7;
  padding: 80px 70px;
  font-family: "Alice", serif;
  color: #535d17;
}

.connect-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* LEFT & RIGHT keep same desktop sizes */
.connect-left { width: 60%; }
.connect-right { width: 40%; display: flex; justify-content: center; }

/* Desktop typography unchanged */
.connect-title {
  font-size: 78px;
  line-height: 1.1;
  margin: 0 0 40px;
}

.connect-img {
  width: 430px;
  height: 430px;
  border-radius: 50%;
  object-fit: cover;
}

/* contact row under title */
.contact-block {
  display: flex;
  gap: 60px;
  margin-top: 40px;
}

.contact-item { display: flex; flex-direction: column; }

.contact-label {
  font-size: 28px;
  margin-bottom: 6px;
}

.contact-value,
.social-handle {
  font-size: 18px;
  font-family: "Alice", serif;
}

.social-links {
  display: flex;
  gap: 14px;
  align-items: center;
}


/* ----------------------------------------------------
   RESPONSIVE — Below desktop
---------------------------------------------------- */

/* -------- TABLETS & LARGE PHONES (1200px and below) ------- */
@media (max-width: 1200px) {
  .connect-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .connect-left,
  .connect-right {
    width: 100%;
  }

  /* slightly scale the title for tablets */
  .connect-title {
    font-size: clamp(2.2rem, 6vw, 4rem);
  }

  /* scale image but still circular */
  .connect-img {
    width: clamp(260px, 50vw, 380px);
    height: clamp(260px, 50vw, 380px);
  }

  /* wrap contact items vertically */
  .contact-block {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }

  .contact-label {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
  }
  .contact-value,
  .social-handle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
  }

  .social-links {
    justify-content: center;
  }
}


/* -------- SMALL PHONES (600px and below) ------- */
@media (max-width: 600px) {
  .connect-section {
    padding: 50px 20px;
  }

  .connect-img {
    width: clamp(220px, 70vw, 320px);
    height: clamp(220px, 70vw, 320px);
    margin-top: 20px;
  }

  .contact-block {
    gap: 24px;
  }

  .social-links {
    justify-content: center;
  }
}


/* ----------------------------------------------------
   TESTIMONIAL SECTION
---------------------------------------------------- */
.testimonial-section {
  background: #f8f1e7;
  padding: 60px 40px;
}

.testimonial-section h2 {
  font-size: 70px;
  margin-bottom: 30px;
  color: #535d17;
  font-family: "Alice", serif;
  margin-top: 3%;
}

.testimonial-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-family: "Recoleta", serif;
}

.testimonial-box img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

/* ---------------------------------------
   TESTIMONIAL SLIDER
--------------------------------------- */
.testimonial-section {
  background: #b4ba8f;
  padding: 60px 40px;
  text-align: center;
  position: relative;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px;
  justify-content: center;
}

.testimonial-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-text {
  max-width: 500px;
  text-align: left;
}

.testimonial-text p {
  font-size: 35px;
  line-height: 1.5;
  color: #efeded;
  margin-bottom: 10px;
}

.testimonial-text h4 {
  font-size: 22px;
  color: #f0f1ed;
  font-weight: bold;
}

/* Navigation Buttons */
.testimonial-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #b4ba8f;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  color: white;
  font-size: 22px;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.testimonial-btn:hover {
  background: #535d17;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-slide {
    flex-direction: column;
  }
  .testimonial-text {
    text-align: center;
  }
}



@media (max-width: 1200px) {
  .testimonial-section {
    padding: 60px 30px;
  }

  .testimonial-section h2 {
    font-size: clamp(2.2rem, 6vw, 3.6rem);
  }

  .testimonial-text p {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
  }

  .testimonial-text h4 {
    font-size: clamp(1rem, 2.6vw, 1.6rem);
  }
  .testimonial-btn {
    display: none !important;
  }
}

/* ======= SMALL TABLETS / LARGE PHONES ======= */

@media (max-width: 840px) {

  /* place buttons at bottom */
  .testimonial-slider {
    padding-bottom: 60px; /* space so buttons don't overlap content */
  }

  .testimonial-btn {
    top: auto;
    bottom: 10px;
    transform: none;       /* remove vertical centering */
  }

  .prev-btn { left: 50%; transform: translateX(-120px); }
  .next-btn { right: 50%; transform: translateX(120px); }
}

/* ======= SMALL PHONES ======= */
@media (max-width: 520px) {
  .testimonial-btn {
    bottom: 6px;
    padding: 6px 10px;
  }

  .prev-btn { transform: translateX(-90px); }
  .next-btn { transform: translateX(90px); }
}


/* ----------------------------------------------------
   MODALS (LOGIN / SIGNUP)
---------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hidden {
  display: none !important;
}

.modal-content {
  background: #fff;
  padding: 30px;
  width: 350px;
  border-radius: 10px;
  text-align: center;
}

.modal-content input {
  width: 100%;
  padding: 8px 12px;
  margin-bottom: 12px;
  border: 1px solid #aaa;
  border-radius: 6px;
}


.btn-primary{
  margin-top: 10px;
  padding: 20px 20px;
  border: none;
  background: #b4ba8f;
  cursor: pointer;
  border-radius: 6px;
}

.btn-close {
  margin-top: 10px;
  padding: 8px 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: #b4ba8f;
  cursor: pointer;
  border-radius: 6px;
}

/* ---------- Auth modal (signup) ---------- */
.auth-modal {
  width: 680px;
  max-width: 96%;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  color: #222;
  position: relative;
  box-sizing: border-box;
}

/* Modal title */
#signupTitle {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  color: #535d17;
  font-size: 22px;
  margin: 4px 0 14px;
}

/* Basic row spacing */
.auth-modal .form-row {
  margin-bottom: 12px;
}

/* two-column helper */
.auth-modal .two-cols {
  display: flex;
  gap: 12px;
}
.auth-modal .two-cols > * { flex: 1 1 0; }

/* Inputs and textarea (same visual style as booking) */
.auth-modal input[type="text"],
.auth-modal input[type="email"],
.auth-modal input[type="tel"],
.auth-modal input[type="password"],
.auth-modal textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(83,93,23,0.12);
  font-size: 15px;
  font-family: "Times New Roman", serif;
  box-sizing: border-box;
  color: #333;
  background: #fff;
  outline: none;
  transition: box-shadow .12s ease, border-color .12s ease;
}

/* focus */
.auth-modal input:focus,
.auth-modal textarea:focus {
  border-color: rgba(83,93,23,0.28);
  box-shadow: 0 8px 18px rgba(83,93,23,0.05);
}

/* placeholder styling */
.auth-modal ::placeholder { color: #9b9b9b; }

/* actions */
.auth-modal .form-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 6px;
}

/* small-screen behavior */
@media (max-width: 640px) {
  .auth-modal { padding: 16px; }
  .auth-modal .two-cols { flex-direction: column; }
  #signupTitle { text-align: center; }
}

/* ---------------- BOOKING MODAL STYLES ---------------- */
.booking-modal { max-width: 720px; width: 95%; padding: 22px; position: relative; }
.booking-modal h3 { margin: 6px 0 14px; color: #535d17; font-size: 22px; font-family: "Times New Roman", serif; text-align:left; }
.booking-modal .form-row { margin-bottom: 12px; }
.booking-modal input[type="text"],
.booking-modal input[type="email"],
.booking-modal input[type="tel"],
.booking-modal input[type="password"],
.booking-modal input[type="number"],
.booking-modal input[type="date"],
.booking-modal input[type="time"],
.booking-modal select,
.booking-modal textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: "Times New Roman", serif;
  font-size: 15px;
}

.booking-modal .two-cols { display:flex; gap:10px; }
.booking-modal .two-cols input { flex:1; }

.booking-modal .inline-label { display:block; font-size:13px; color:#333; }
.payment-methods { display:flex; gap:14px; margin:6px 0 10px; }
.payment-option { display:flex; align-items:center; gap:6px; padding:6px 8px; border-radius:8px; background:#fff; border:1px solid rgba(0,0,0,0.06); }
.payment-panel { margin-top:8px; }
.payment-panel.hidden { display:none; }

/* small tweaks for modal buttons */
#bookingModal .btn-primary { background: #535d17; color:#fff; border:none; padding:10px 16px; border-radius:8px; cursor:pointer; }
#bookingModal .btn-nav { background:#fff; border:1px solid #535d17; color:#535d17; padding:8px 12px; border-radius:8px; cursor:pointer; }

#bookingModal .btn-close { position:absolute; right:14px; top:12px; background:transparent;border:none;font-size:18px;cursor:pointer; color:#333; }

#bookingModal .hidden { display:none !important; }

/* booking status spinner (simple) */
#bookingStatus.processing { display:block; color:#333; }
#bookingStatus.success { display:block; color:green; }

/* responsive */
@media (max-width:720px) {
  .booking-modal .two-cols { flex-direction:column; }
}


/* ===========================
        FOOTER SECTION
=========================== */

.site-footer,
.site-footer-user {
  background: #f8f1e7;
  padding: 50px 30px;
  color: #535d17;

  /* ✅ FORCE SINGLE FONT FOR ENTIRE FOOTER */
  font-family: "aerial", serif;
}

.site-footer-user {
  background: #b4ba8f;
}


.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Footer Column */
.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h4 {
  font-size: 25px;
  margin-bottom: 12px;
  border-bottom: 2px solid rgba(255,255,255,0.4);
  padding-bottom: 6px;

  /* inherits Alice */
  font-weight: 600;
}

.footer-col p,
.footer-col ul,
.footer-col li {
  margin: 6px 0;
  font-size: 20px;
  list-style: none;
  color: #535d17;
}

.footer-col a {
  color: #535d17;
  text-decoration: none;
  font-size: 20px;
}

.footer-col a:hover {
  text-decoration: underline;
}

/* Quick Links Buttons (Terms + Policy) */
.footer-link-btn {
  background: none;
  border: none;
  color: #535d17;
  cursor: pointer;
  font-size: 20px;
  padding: 4px 0;

  /* inherits Alice */
}

.footer-link-btn:hover {
  text-decoration: underline;
}

/* Social Column */
.footer-social ul {
  list-style: none;
  padding: 0;
}

.footer-social li {
  margin: 6px 0;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.4);
  font-size: 14px;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-col {
    min-width: 100%;
  }
}



.close-legal {
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

.footer-link-btn {
  background: transparent;
  border: none;
  color: #535d17;
  cursor: pointer;
  font-size: 16px;
  padding: 4px 0;
}

.footer-link-btn:hover {
  text-decoration: underline;
}

/* ---------------- LEGAL MODALS (Terms + Policy) ---------------- */
/* ===== FIX SPACING INSIDE PRIVACY POLICY MODAL ===== */

/* =========================
   LEGAL MODAL / PRIVACY CSS
   Replace previous modal / legal rules with this
   ========================= */

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: flex-start;      /* allow modal to start at top so it can scroll */
  justify-content: center;
  padding: 20px;                /* space around modal on small screens */
  overflow: auto;               /* allow overlay to scroll if needed */
  -webkit-overflow-scrolling: touch;
}

/* Inner modal box that actually scrolls */
.legal-modal {
  position: relative;
  width: 100%;
  max-width: 820px;
  max-height: calc(100vh - 80px); /* leaves room top/bottom */
  overflow-y: auto;               /* scroll inside modal */
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
  color: #222;
}

/* Close button (absolute inside modal) */
.close-legal {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

/* Content spacing */
.legal-text {
  margin-top: 8px;
}

/* Reduce vertical spacing between sections */
.legal-text section {
  margin-bottom: 14px;
}

/* Headings inside modal (clear and readable) */
.legal-text h4,
.legal-text h5 {
  margin: 8px 0;
  font-size: 18px;
  color: #000000;
  font-weight: 700;
  line-height: 1.25;
}

/* Paragraphs: readable size and line-height */
.legal-text p {
  font-size: 15px;
  line-height: 1.6;
  margin: 8px 0;
  text-align: left;
  color: #333;
}

/* Lists: compact, no giant gaps */
.legal-text ul,
.legal-text ol {
  margin: 8px 0 8px 22px; /* small top/bottom margins, left indent */
  padding: 0;
}

.legal-text li {
  margin: 6px 0;    /* minimal gap between items */
  padding: 0;
  font-size: 15px;
  line-height: 1.45;
}

/* Ensure ordered list numbers align correctly */
.legal-text ol {
  list-style-position: outside;
}

/* Change bullet color to theme green if you want */
.legal-text li::marker {
  color: #535d17;
}

/* Responsive */
@media (max-width: 720px) {
  .modal { padding: 12px; }
  .legal-modal { max-height: calc(100vh - 40px); padding: 16px; }
  .legal-text h4, .legal-text h5 { font-size: 16px; }
  .legal-text p, .legal-text li { font-size: 14px; line-height: 1.5; }
}

/* Terms modal specifics (uses same .modal and .legal-modal styles) */
#termsModal .legal-text h4 { font-size: 18px; color: #020202; margin-top: 8px; margin-bottom: 6px; }
#termsModal .legal-text h5 { font-size: 16px; color: #0a0a0a; margin-top: 6px; margin-bottom: 6px; font-weight:600; }
#termsModal .legal-text p { font-size: 15px; line-height:1.6; color:#0c0c0c; margin: 6px 0; }
#termsModal .legal-text ul, #termsModal .legal-text ol { margin: 8px 0 8px 22px; padding:0; }
#termsModal .legal-text li { margin:6px 0; font-size:15px; line-height:1.45; }

/* Ensure the modal uses the same scroll behavior */
#termsModal .legal-modal { max-height: calc(100vh - 80px); overflow-y: auto; -webkit-overflow-scrolling: touch; }


/* ---------- Booking modal form controls (consistent look) ---------- */

/* Modal form wrapper sizing (tweak to match your modal sizing) */
/* ---------------------------------------
   Booking modal container
---------------------------------------- */
.booking-modal {
  width: 720px;
  max-width: 95%;
  padding: 24px;
  border-radius: 14px;
  background: #ffffff;
  color: #222;
  box-sizing: border-box;
}

/* Title */
#bookingTitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  color: #535d17;
  margin-bottom: 16px;
}

/* ---------------------------------------
   Form rows
---------------------------------------- */
.form-row {
  margin-bottom: 14px;
  align-items: left;
}

.two-cols {
  display: flex;
  gap: 12px;
}

.two-cols > * {
  flex: 1;
}

/* inline label style (for date) */ 
.inline-label {
  display: flex;                 /* ⬅️ not inline-flex */
  flex-direction: column;        /* label text above input */
  align-items: flex-start;       /* ⬅️ force LEFT alignment */
  gap: 0px;
  font-family: "Times New Roman", serif;
  color: #666;
  font-size: 14px;
  width: 100%;
}

.inline-label input[type="date"] {
  width: 100%;
  margin-left: 0;                /* ⬅️ remove centering offset */
}


/* ---------------------------------------
   Inputs / select / textarea
---------------------------------------- */
.booking-modal input,
.booking-modal select,
.booking-modal textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(83,93,23,0.15);
  font-family: "Times New Roman", serif;
  font-size: 15px;
  color: #333;
  background: #fff;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.booking-modal input:focus,
.booking-modal select:focus,
.booking-modal textarea:focus {
  border-color: rgba(83,93,23,0.35);
  box-shadow: 0 6px 18px rgba(83,93,23,0.06);
}

.booking-modal ::placeholder {
  color: #9a9a9a;
}

/* ---------------------------------------
   Date inline label
---------------------------------------- */
.inline-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: #666;
  font-family: "Times New Roman", serif;
}

/* ---------------------------------------
   Medical conditions field (left aligned)
---------------------------------------- */
#bk_conditions {
  margin-top: 4px;
}

/* ---------------------------------------
   Confirmation block (18+ question)
---------------------------------------- */
.form-group {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(83,93,23,0.04);
  border: 1px solid rgba(83,93,23,0.15);
  border-radius: 10px;
  align-items: left;
}

/* Heading inside confirmation */
.form-group .small-note:first-of-type {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  color: #535d17;
  margin-bottom: 6px;
  align-items: left;
}

/* Explanation text */
.form-group .small-note {
  font-family: "Times New Roman", serif;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* Radio buttons row */
.radio-row {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* Radio labels */
.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Times New Roman", serif;
  font-size: 15px;
  color: #333;
  cursor: pointer;
}

.radio-label input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #535d17;
}

/* ---------------------------------------
   Buttons
---------------------------------------- */
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.btn-primary {
  background: #b4ba8f;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: "Times New Roman", serif;
  cursor: pointer;
  box-shadow: 0 6px 0 rgba(180,186,143,0.12);
}

.btn-nav.btn-close {
  background: #ffffff;
  border: 1px solid rgba(83,93,23,0.2);
  color: #535d17;
  padding: 10px 16px;
  border-radius: 8px;
}

/* ---------------------------------------
   Mobile
---------------------------------------- */
@media (max-width: 640px) {
  .two-cols {
    flex-direction: column;
  }
  .form-actions {
    justify-content: center;
  }
}


/* ================= CONTACT SECTION ================= */
.contact-section {
  background: #b4ba8f;               /* soft cream */
  padding: 90px 20px 100px;
  text-align: center;
  font-family: "Alice", serif;
}

/* Title */
.contact-title {
  font-size: 70px;
  color: #535d17;
  margin-bottom: 12px;
  font-weight: 600;
}

/* Subtitle */
.contact-subtitle {
  font-size: 22px;
  color: #6b6b6b;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Form wrapper */
.contact-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Inputs & textarea */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(83, 93, 23, 0.25);
  font-size: 16px;
  font-family: "Times New Roman", serif;
  background: #ffffff;
  color: #333;
  outline: none;
  transition: all 0.2s ease;
}

/* Focus state */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #535d17;
  box-shadow: 0 6px 18px rgba(83, 93, 23, 0.12);
}

/* Placeholder */
.contact-form ::placeholder {
  color: #9a9a9a;
}

/* Submit button */
.btn-contact {
  margin-top: 10px;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: #f8f1e7;
  color: #535d17;
  font-size: 18px;
  font-family: "Alice", serif;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 0 rgba(180, 186, 143, 0.2);
}

/* Hover */
.btn-contact:hover {
  background: #a8af7b;
  transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 600px) {
  .contact-title {
    font-size: 42px;
  }

  .contact-subtitle {
    font-size: 16px;
  }
}



/* gental yoga  */

/* ANIMATED IMAGE */

.animated-image-wrapper {
  width: 100%;
  margin: clamp(24px, 4vw, 40px) 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

/* Image */
.animated-image-wrapper img {
  width: min(420px, 90%);     /* prevents oversize & overflow */
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 0;

  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Active animation state */
.animated-image-wrapper img.active {
  opacity: 1;
  transform: translateX(0);
}
/* ================= MOBILE ================= */
@media (max-width: 600px) {
  .animated-image-wrapper img {
    width: 95%;
    border-radius: 10px;
  }
}

/* ================= DESKTOP (DEFAULT) ================= */

/* MAIN HEADING */
.content h1 {
  font-size: 45px;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

/* SUB SECTION HEADINGS */
.content h2 {
  font-size: 35px;
  margin-top: 60px;
  margin-bottom: 25px;
  line-height: 1.25;
}

/* NORMAL TEXT */
.content p,
.content li {
  font-size: 35px;
  line-height: 1.5;
}

/* ================= TABLET ================= */
@media (max-width: 1200px) {
  .content h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 24px;
  }

  .content h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .content p,
  .content li {
    font-size: clamp(1.2rem, 2.6vw, 1.8rem);
    line-height: 1.45;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {
  .content h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .content h2 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 16px;
  }

  .content p,
  .content li {
    font-size: 1.05rem;
    line-height: 1.55;
  }
}

/* ================= RESET ================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================= MAIN CONTENT ================= */
.content {
  width: 100%;
  padding: 3.5rem 5rem;
  background-color: #b4ba8f;
  color: #000;

  /* base text size (desktop) */
  font-size: 35px;
  line-height: 1.35;
}

.content p,
.content ul {
  padding-left: 1.25rem;
  margin: 0.75rem 0;
  font-size: inherit;
}

.price-line{
    padding-left: 1.25rem;
  /*display:flex;*/
  /*justify-content:space-between;*/
  /*width:100%;*/
}

/*.content span{*/
/*    padding-left: 1.25rem;*/
/*    font-size: inherit;*/
/*}*/

.content li {
  line-height: 1.4;
  margin-bottom: 0.5rem;
  margin-left: 1rem;
  font-size: inherit;
  text-align: left;
}

.content .rate1,
.content .rate2,
.content .end {
  margin-top: 1.5rem;
}

/* ================= TABLET ================= */
@media (max-width: 1200px) {
  .content {
    font-size: clamp(1.2rem, 2.6vw, 2rem);
    line-height: 1.45;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {
  .content {
    font-size: 1.05rem;
    line-height: 1.55;
    padding: 2rem 1.2rem;
    text-align: left;
  }

  .content ul {
    padding-left: 1rem;
    text-align: left; /* keeps bullets readable */
  }
}


/* ================= CART ROW ================= */
.cart-row{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin:1.5rem 0;
}



.cart-label {
  font-size: 1.05rem;
  min-width: 160px;
}
/*.price-inline{*/
/*  display:flex;*/
/*  justify-content:space-between;*/
/*  align-items:center;*/
  /*width:100%;       */
/*}*/



/* ================= CART BUTTONS ================= */

/* Shared base */
.cart-btn1,
.cart-btn2 {
  display: inline-block;
  background: #535d17;
  color: #ffffff;
  border: none;
  padding: 12px 26px;
  font-family: "Alice", serif;
  font-size: 1.4rem;              /* scalable */
  cursor: pointer;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.25s ease;
  margin-top: 1.0rem;
}

/* Hover */
.cart-btn1:hover,
.cart-btn2:hover {
  background: #3f480f;
}

/* ================= DESKTOP ALIGNMENT ================= */
/* Wrap buttons in a flex container */
.cart-btn-wrapper {
  display: flex;
  justify-content: center;
  gap: 0rem;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .cart-btn1,
  .cart-btn2 {
    font-size: 1.25rem;
    padding: 11px 11px;
  }
  
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {
  .cart-btn-wrapper {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .cart-btn1,
  .cart-btn2 {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    padding: 10px;
  }
  
  .cart-label {
    margin-top: -1rem;
   }
   
}


/* .cart-btn1,
.cart-btn2 {
  background: #535d17;
  color: #fff;
  border: none;
  padding: 0.8rem 1.8rem;
  font-family: "Alice", serif;
  font-size: 1.1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.25s ease;
} */

.cart-btn1:hover,
.cart-btn2:hover {
  background: #3f480f;
}

/* ================= MODAL ================= */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: #f8f1e7;
  border-radius: 16px;
  padding: 1.8rem;
  max-width: 560px;
  width: 92%;
}

/* ================= CALENDAR ================= */
/* .calendar-wrapper {
  max-width: 360px;
  margin: 1rem auto;
  padding: 1rem;
  border-radius: 12px;
  background: #fff;
} */
 
.booking-modal {
  width: 720px;
  max-width: 95%;
  padding: 24px;
  border-radius: 14px;
  background: #ffffff;
  color: #222;
  box-sizing: border-box;
}

/* Title */
#bookingTitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  color: #535d17;
  margin-bottom: 16px;
}

/* ---------------------------------------
   Form rows
---------------------------------------- */
.form-row {
  margin-bottom: 14px;
  align-items: left;
}

.two-cols {
  display: flex;
  gap: 12px;
}

.two-cols > * {
  flex: 1;
}

/* inline label style (for date) */ 
.inline-label {
  display: flex;                 /* ⬅️ not inline-flex */
  flex-direction: column;        /* label text above input */
  align-items: flex-start;       /* ⬅️ force LEFT alignment */
  gap: 0px;
  font-family: "Times New Roman", serif;
  color: #666;
  font-size: 14px;
  width: 100%;
}

.inline-label input[type="date"] {
  width: 100%;
  margin-left: 0;                /* ⬅️ remove centering offset */
}


/* ---------------------------------------
   Inputs / select / textarea
---------------------------------------- */
.booking-modal input,
.booking-modal select,
.booking-modal textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(83,93,23,0.15);
  font-family: "Times New Roman", serif;
  font-size: 15px;
  color: #333;
  background: #fff;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.booking-modal input:focus,
.booking-modal select:focus,
.booking-modal textarea:focus {
  border-color: rgba(83,93,23,0.35);
  box-shadow: 0 6px 18px rgba(83,93,23,0.06);
}

.booking-modal ::placeholder {
  color: #9a9a9a;
}

/* ---------------------------------------
   Date inline label
---------------------------------------- */
.inline-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: #666;
  font-family: "Times New Roman", serif;
}

/* ---------------------------------------
   Medical conditions field (left aligned)
---------------------------------------- */
#bk_conditions {
  margin-top: 4px;
}

/* ---------------------------------------
   Confirmation block (18+ question)
---------------------------------------- */
.form-group {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(83,93,23,0.04);
  border: 1px solid rgba(83,93,23,0.15);
  border-radius: 10px;
  align-items: left;
}

/* Heading inside confirmation */
.form-group .small-note:first-of-type {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  color: #535d17;
  margin-bottom: 6px;
  align-items: left;
}

/* Explanation text */
.form-group .small-note {
  font-family: "Times New Roman", serif;
  font-size: 14px;
  color: #555;.
  line-height: 1.5;
  margin-bottom: 10px;
}

/* Radio buttons row */
.radio-row {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* Radio labels */
.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Times New Roman", serif;
  font-size: 15px;
  color: #333;
  cursor: pointer;
}

.radio-label input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #535d17;
}

/* ---------------------------------------
   Buttons
---------------------------------------- */
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.btn-primary {
  background: #b4ba8f;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: "Times New Roman", serif;
  cursor: pointer;
  box-shadow: 0 6px 0 rgba(180,186,143,0.12);
}

.btn-nav.btn-close {
  background: #ffffff;
  border: 1px solid rgba(83,93,23,0.2);
  color: #535d17;
  padding: 10px 16px;
  border-radius: 8px;
}

/* ---------------------------------------
   Mobile
---------------------------------------- */
@media (max-width: 640px) {
  .two-cols {
    flex-direction: column;
  }
  .form-actions {
    justify-content: center;
  }
}
/* ================= BREAKPOINTS ================= */

/* Tablets */
@media (max-width: 1024px) {
  .content {
    padding: 3rem;
  }

  .our-shop {
    flex-direction: column;
    text-align: center;
  }

  .feature-collage {
    width: 360px;
    height: 300px;
  }

  .feature-img {
    width: 180px;
    height: 240px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .content {
    padding: 2rem 1.2rem;
  }

  .cart-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-btn1,
  .cart-btn2 {
    width: 100%;
    text-align: center;
  }

  .feature-title {
    font-size: 1.8rem;
  }

  .feature-list {
    font-size: 1rem;
  }

  .feature-collage {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
  }

  .feature-img {
    position: relative;
    width: 100%;
    height: 220px;
    transform: none;
  }

  .btn-add {
    width: 100%;
  }
}

/* ===== COMPACT CALENDAR ===== */
.calendar-wrapper {
  max-width: 360px;
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Header */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.calendar-header button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #535d17;
}

#calendarTitle {
  font-size: 18px;
  font-weight: 600;
  color: #535d17;
}

/* Days row */
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-bottom: 6px;
}

/* Calendar grid */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

/* Date cell */
.day {
  padding: 8px 0;
  font-size: 14px;
  text-align: center;
  border-radius: 6px;
  background: #eee;
  user-select: none;
}

/* Allowed date */
.day.allowed {
  background: #181917ff;
  color: #fff;
  cursor: pointer;
}

/* Selected date */
.day.selected {
  background: #8f8a8aff;
  color: #fff;
}

/* Disabled date */
.day.disabled {
  background: #f2f2f2;
  color: #aaa;
  cursor: not-allowed;
}


.price-box {
  margin-top: 25px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  font-size: 25px;
  color: #535d17;
}

.btn-primary {
  margin-top: 35px;
  width: 100%;
  padding: 16px;
  font-size: 25px;
  background: #535d17;
  color: #fff;
  border: none;
  border-radius: 40px;
  cursor: pointer;
}

/* ================= POPUP MODAL ================= */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: #f8f1e7;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  animation: modalFade 0.25s ease;
}

.booking-modal {
  max-width: 560px;
  width: 92%;
  max-height: 85vh;
  overflow-y: auto;
}

@keyframes modalFade {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.form-row input,
.form-row select,
textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: "Alice", serif;
}

.sub-title {
  font-size: 18px;
  margin: 18px 0 10px;
}

.price-box {
  background: #fff;
  padding: 14px;
  border-radius: 10px;
  margin-top: 15px;
  font-size: 16px;
}

.btn-primary {
  width: 100%;
  padding: 14px;
  background: #535d17;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
}

/* ---------------------- SHOP PREVIEW SECTION ---------------------- */
.shop-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 4vw, 4rem);

  /* ✅ Desktop layout */
  width: 100%;
  max-width: 1400px;          /* desktop container width */
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 5rem);

  overflow: hidden;
  background: url("assets/shop bg.jpeg") center / cover no-repeat;
}

@media (max-width: 1024px) {
  .shop-preview {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }
}

@media (max-width: 600px) {
  .shop-preview {
    padding: 2rem 1.2rem;
  }
}


/* ================= LEFT ================= */
.shop-left {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}

/* Image */
.shop-single-img {
  width: 100%;
  max-width: 420px;        /* limit only, not fixed */
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
}

/* ================= RIGHT ================= */
.shop-right {
  flex: 1 1 45%;
}

/* Title */
.shop-right-title {
  font-family: "Alice", serif;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  color: #6e7c1b;
  margin-bottom: 12px;
}

/* Description */
.shop-right-desc {
  font-family: "Alice", serif;
  font-size: clamp(1.05rem, 2.5vw, 2.2rem);
  color: #535d17;
  line-height: 1.6;
}

/* Explore Shop button */
.btn-explore-shop {
  display: inline-block;
  margin-top: 32px;
  padding: 12px 34px;
  background: #b4ba8f;
  color: #535d17;
  font-family: "Alice", serif;
  font-size: 1.1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.btn-explore-shop:hover {
  background: #a4aa7d;
  transform: translateY(-3px);
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .shop-preview {
    flex-direction: column;
    text-align: center;
  }

  .shop-left,
  .shop-right {
    width: 100%;
  }

  .shop-single-img {
    max-width: 300px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {
  .shop-preview {
    padding: 2rem 1.2rem;
  }

  .shop-single-img {
    max-width: 70%;
  }

  .btn-explore-shop {
    width: 100%;
    text-align: center;
    font-size: clamp(1.7rem, 6vw, 4.0rem); 
  }
}

/* ---------------- SHOP PREVIEW (top) ---------------- */
/* ---------------- MAIN SHOP TITLE (centered) ---------------- */
.shop-main-title {
  text-align: center;
  font-family: "Alice", serif;
  color: #576314;
  letter-spacing: 2px;
  margin-bottom: 20px;

  /* Fluid sizing */
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 1.15;
}


/*Services popup css */


/* MODAL BACKGROUND */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999; /* 🔥 INCREASE THIS */
}

.modal.hidden {
  display: none;
}

/* MODAL BOX */
.modal-content {
  background: #f8f1e7;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 550px;
  color: #576314;
  max-height: 85vh;
  overflow-y: auto;
  font-family: "Recoleta", serif;
  position: relative;
  z-index: 100000;
}

/* CLOSE BUTTON */
.close-modal {
  float: right;
  font-size: 28px;
  cursor: pointer;
  color: #576314;
}

/* TABLE STYLE */
.services-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.services-table th,
.services-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.services-table th {
  background: rgba(87,99,20,0.1);
}


/* ======= USER SERVICES MODAL FIX (TOP OF ALL) ======= */

#userServicesModal {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0,0,0,0.55) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 999999 !important;
}

#userServicesModal.hidden {
  display: none !important;
}

#userServicesModal .modal-content {
  background: #f8f1e7;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 550px;
  max-height: 85vh;
  overflow-y: auto;
  font-family: "Recoleta", serif;
  position: relative;
  z-index: 9999999 !important;
}



.price-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.label {
  flex: 1;
}

.price-column {
  text-align: right;
}

.old-price {
  text-decoration: line-through;
  color: #777;
}

.new-price {
  color: black;
  /* font-weight: bold; */
  font-size: 18px;
  margin-top: 4px;
  
}
