:root{
  --bg:#fff;
  --muted:#666;
  --accent:#7a4f2a;
  --container:1200px;
  --header-height:84px;
  --overlay-rgba: rgba(35,35,35,0.28);
  --card-shadow: 0 8px 30px rgba(22,22,22,0.06);

  /* spacing tokens */
  --section-gap-lg: 120px;   /* increased "a lot" for desktop/tablet */
  --section-gap-md: 86px;
  --section-gap-sm: 44px;

  --card-padding-lg: 34px;  /* bigger card padding for desktop/tablet */
  --card-gap-lg: 32px;

  --mobile-side-padding: 16px;
  --separator-color: #f5efe7; /* Earthy Beige chosen */
}

/* Prevent horizontal overflow that caused the blank right space */
html, body {
   
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/* Reset & basics */
* { box-sizing: border-box; }
html,body { height:100%; scroll-behavior: smooth; }
body{
  margin:0;
  /*font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;*/
  font-family: "Architects Daughter", cursive;
  font-weight: 400;
  font-style: normal;
  color:#222;
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  line-height:1.65;
  -webkit-font-feature-settings: "kern";
}

/* Global Typography Refinement */
.content-section p {
    color: #444; /* Slightly darker than muted for better contrast */
    margin: 0 0 16px;
    font-size: 17px; /* Slight increase for readability */
    font-weight: 400; /* Ensure clear reading weight */
}
.muted-quote{font-style:italic;color:var(--muted);margin:8px 0 18px;}
.section-intro {
    color: #444;
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 300; /* Lighter weight for introductory text */
}

/* Container (desktop constrained; mobile expands minus side padding) */
.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:120;
  backdrop-filter: blur(6px);
  background:rgba(255,255,255,0.92);
  border-bottom:1px solid rgba(0,0,0,0.04);
  transition: background 200ms ease, backdrop-filter 200ms ease;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  height:var(--header-height);
}
.brand{display:flex;align-items:center;gap:14px;text-decoration:none;color:inherit}
.logo{height:auto;width:100px;object-fit:cover;border-radius:8px}
.brand-text{font-family:"Architects Daughter", cursive;}

/* Desktop nav */
.nav-desktop{display:flex;gap:22px;align-items:center}
.nav-desktop a{
  color:var(--muted);
  text-transform: uppercase;
  text-decoration:none;
  padding:10px 10px;
  border-radius:10px;
  transition:background 180ms ease, color 180ms ease, transform 160ms ease;
  font-weight:900;
}
.nav-desktop a:hover{
  color:#000;
  background:rgba(0,0,0,0.03);
  transform:translateY(-2px);
}

/* Header Book Now Button */
.btn-header {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-header:hover {
  background: #5d3b1e !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(122,79,42,0.18);
}

/* Hide the button on smaller devices (use mobile nav instead) */
@media (max-width: 980px) {
  .btn-header {
    display: none;
  }
}


/* Burger (mobile only) */
.burger{background:none;border:0;display:none;flex-direction:column;gap:6px;padding:8px;cursor:pointer}
.burger:focus{outline:2px solid rgba(0,0,0,0.06);border-radius:8px}
.burger-bar{display:block;width:24px;height:2px;background:#222;border-radius:2px}

/* Mobile overlay */
.mobile-overlay{
  position:fixed;
  inset:0;
 /* background:var(--overlay-rgba);*/
  opacity:0;
  pointer-events:none;
  transition:opacity 300ms cubic-bezier(.2,.9,.3,1);
  z-index:140;
}

/* Mobile menu */
.mobile-menu{
  position:fixed;
  top:0;
  right:0;
  width:70vw;
  max-width:420px;
  height:100vh;
  background:#fff;
  box-shadow: -18px 0 40px rgba(0,0,0,0.14);
  z-index:150;
  transform:translateX(100%);  /* completely off-screen */
  transition: transform 420ms cubic-bezier(.2,.9,.3,1), opacity 320ms ease;
  opacity:0;
  display:flex;
  flex-direction:column;
  padding:22px;
  will-change: transform;
  pointer-events: none;
}
.mobile-menu.open{
  transform:translateX(0);
  opacity:1;
  pointer-events: auto;
   overflow: hidden;
  touch-action: none;
}
/* inner fade for slide + fade feel */
.mobile-menu-inner {
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 360ms ease, transform 360ms ease;
}
.mobile-menu.open .mobile-menu-inner {
  opacity: 1;
  transform: translateX(0);
}

.mobile-close{font-size:34px;background:none;border:0;cursor:pointer;align-self:flex-end;padding:6px}
.mobile-nav{display:flex;flex-direction:column;gap:18px;margin-top:18px;padding:12px}
.mobile-nav a{font-size:18px;text-decoration:none;color:#222;padding:12px;border-radius:10px}
.mobile-nav a:focus{outline:2px solid rgba(0,0,0,0.06);}

/* HERO */


.hero {
  position: relative;
  /*height: 100vh;*/
  width: 100%;
  overflow: hidden;
}

.hero-video {
  padding: 70px;
  position: absolute;  
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: none;  
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Hide one of them depending on screen */
.desktop-video { display: block; }
.mobile-video { display: none; }

/* Mobile switch */
@media (max-width: 768px) {
  .desktop-video { display: none; }
  .mobile-video { display: block; object-fit: cover; padding: 30px; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  /*background: rgba(0, 0, 0, 0.28); *//* Subtle dark overlay for readability */
}







/*.hero{
  position:relative;
  min-height:72vh;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  overflow:hidden;
  padding:48px 0;
}*/
.hero-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  /*filter:contrast(0.98) saturate(0.9) brightness(0.72);*/
  z-index:0;
}
.hero-content{
  position:relative;
  z-index:3;
  padding:64px 20px;
  color:#000;
  max-width:600px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.80), rgba(255, 255, 255, 0.80));
  border-radius:12px;
  margin-left:24px;
}
.hero h1{
  margin:0 0 14px 0;
  font-family:"Architects Daughter", cursive;
  font-size:40px;
  letter-spacing:1px;
  line-height:1.05;
}
.lead{font-size:17px;opacity:0.95;max-width:700px;margin-bottom:20px;line-height:1.6}
/* Hero Buttons */
.cta {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  padding: 12px 22px;
  transition: all 0.25s ease;
  margin-right: 12px;
}

/* Primary: warm accent tone */
.cta.primary {
  border: 2px solid #000;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(122, 79, 42, 0.15);
}

.cta.primary:hover {
  background: #5d3b1e;
  box-shadow: 0 12px 30px rgba(122, 79, 42, 0.25);
  transform: translateY(-3px);
}

/* Secondary: clean transparent look */
.cta.secondary {
  border: 2px solid #000;
  color: #000;
  background: transparent;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.cta.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

/* Align buttons neatly on small devices */
@media (max-width: 600px) {
  .cta {
    display: block;
    text-align: center;
    margin: 10px auto;
    width: 80%;
  }
}


/* Slogan stripe */
.section-slogan{
  padding:20px 0;
  text-align:center;
  background:linear-gradient(180deg, rgba(250,250,250,0.5), rgba(255,255,255,0.5));
}
.section-slogan .slogan{letter-spacing:8px;font-weight:600;color:var(--muted);margin:0;font-family:"Architects Daughter", cursive;font-size:14px}

/* Content sections baseline */
.content-section{
  padding:var(--section-gap-sm) 0;
  position:relative;
  z-index:0;
}
.content-section.alt{background:#fbfbfb}
.content-section h2{font-family:"Architects Daughter", cursive;font-size:26px;margin:0 0 14px}
.content-section p{color:#444;margin:0 0 16px;font-size:17px;font-weight:400} /* Refined */
.muted-quote{font-style:italic;color:var(--muted);margin:8px 0 18px;}

/* grids */
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:28px;align-items:center}
.grid-2.reverse{grid-template-columns:1fr 1fr;gap:28px;align-items:center}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.grid-3-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:18px}
.card{
  background:#fff;
  padding:20px;
  border-radius:12px;
  box-shadow:var(--card-shadow);
  transition:transform 260ms ease, box-shadow 260ms ease;
  border: 1px solid rgba(0,0,0,0.03); /* Added subtle border */
}
.card:hover{transform:translateY(-6px);box-shadow:0 18px 40px rgba(25,25,25,0.08)}
.figure img{width:100%;height:100%;object-fit:cover;border-radius:10px}

/* stay cards */
/* ---------- Premium Stay Card (Background Image + Luxury Overlay) ---------- */

.refined-stay .stay-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 360px; /* balanced card height */
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: transform 320ms ease, box-shadow 320ms ease;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Luxury hover */
.refined-stay .stay-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(0,0,0,0.18);
}

/* Dark premium gradient to make text readable */
.refined-stay .stay-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.10)
  );
  z-index: 1;
}

/* Content wrapper */
.stay-content {
  position: relative;
  z-index: 2;
  padding: 28px 26px;
  width: 100%;
  color: #fff;
  text-shadow: 0 3px 12px rgba(0,0,0,0.55);
}

/* Icon */
.stay-icon {
  font-size: 46px;
  margin-bottom: 10px;
  opacity: 0.95;
}

/* Title */
.stay-content h4 {
  font-family: "Architects Daughter", cursive;
  font-size: 22px;
  margin: 0 0 8px;
  color: #fff;
}

/* Divider */
.stay-divider {
  width: 44px;
  height: 2px;
  background: rgba(255,255,255,0.75);
  margin: 10px 0 16px;
  border-radius: 2px;
}

/* Description text */
.stay-content p {
  font-size: 16px;
  margin: 0;
  line-height: 1.55;
  color: #f5f5f5;
}

/* Bottom note adjusted to stay readable */
.stay-note {
  background: #faf8f4;
  margin-top: 50px;
  padding: 20px 24px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  font-style: italic;
  color: #555;
  font-size: 15.5px;
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.02);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .refined-stay .stay-card {
    height: 300px;
  }

  .stay-content {
    padding: 22px 20px;
  }

  .stay-note {
    margin-top: 36px;
  }
}



/* pricing */
.pricing-section{padding:var(--section-gap-sm) 0;background:linear-gradient(180deg,#fff,#fff)}
.pricing-section h2{
  font-family: "Architects Daughter", cursive;
  margin-bottom: 18px;
  font-size: 34px;
}
.pricing-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.price-card{
    padding:18px;
    border-radius:12px;
    border:1px solid var(--accent); /* Highlight pricing border */
    transition:transform 260ms ease, box-shadow 260ms ease;
}
.price-card:hover{transform:translateY(-6px);box-shadow:0 18px 40px rgba(25,25,25,0.06)}
.price{font-size:26px;margin:6px 0;color:var(--accent)}

/* contact & menu grids */
.menu-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.contact-section{padding:var(--section-gap-sm) 0;background:#f8f6f2}
.contact-grid{display:grid;grid-template-columns:1fr 380px;gap:24px;align-items:start}
.contact-form label{display:block;margin-bottom:12px;color:#444;font-size:15px;font-weight: 500;} /* Refined */
.contact-form input, .contact-form textarea{
    width:100%;
    padding:12px;
    border-radius:10px;
    border:1px solid rgba(0,0,0,0.08);
    font-size:15px;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}
.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(122,79,42,0.1); /* Subtle focus ring */
    outline: none;
}

.contact-details {
  margin-top: 28px;
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  text-align: center;
}

.contact-details h4 {
  font-family: "Architects Daughter", cursive;
  color: var(--accent);
  margin-bottom: 18px;
  font-size: 20px;
}

.contact-section h2 {
  font-family: "Architects Daughter", cursive;
  margin-bottom: 18px;
  font-size: 34px;
}

.contact-btn {
  display: block;
  margin: 8px auto;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
  max-width: 240px;
}

.phone-btn {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(122, 79, 42, 0.12);
}

.email-btn {
  background: #faf8f4;
  color: var(--accent);
  border: 1px solid rgba(122, 79, 42, 0.1);
}

.phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(122, 79, 42, 0.2);
}

.email-btn:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}
.quick-contact {
  margin-top: 16px;
  text-align: center;
  font-size: 16px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-inline {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

.contact-inline:hover {
  color: #000;
}

.divider {
  color: #aaa;
  font-weight: 300;
}

/* Make sure the right column aligns vertically center */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .quick-contact {
    font-size: 15px;
  }
}

.contact-box {
  background: #fff;
  border-radius: 14px;
  padding: 32px 26px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  /* gap: 24px; */
  gap: 0px;
  justify-content: space-between;
}

.info-section h4 {
  font-family: "Architects Daughter", cursive;
  color: var(--accent);
  margin-bottom: 10px;
  margin-top: 0px;
  font-size: 19px;
}

.info-section p {
  color: #444;
  font-size: 16px;
  margin: 0;
  line-height: 1.6;
}

.info-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.25s ease;
}

.info-link:hover {
  color: #000;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  /* gap: 48px; */
  gap:0px;
  align-items: start;
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
    /* gap: 28px; */
    gap: 0px;
  }

  .contact-box {
    padding: 24px 20px;
  }
}


.btn{background:var(--accent);color:#fff;border:0;padding:12px 16px;border-radius:10px;cursor:pointer;box-shadow:0 8px 28px rgba(122,79,42,0.12)}
.btn:hover{transform:translateY(-3px)}

/* footer */
.site-footer{padding:48px 0;text-align:center;background:#fff;color:var(--muted);border-top:1px solid rgba(0,0,0,0.04)}

/* reveal animation */
/* .reveal{
  opacity:0;
  transform: translateY(18px);
  will-change: transform, opacity;
  transition: opacity 560ms cubic-bezier(.2,.9,.3,1), transform 560ms cubic-bezier(.2,.9,.3,1);
}
.reveal.in{
  opacity:1;
  transform: translateY(0);
} */

/* Unified smooth reveal for all elements */
.reveal,
.bring-card,
.menu-card,
.stay-card,
.activity-card {
  opacity: 0;
  transform: translateY(28px);
  will-change: transform, opacity;
  transition: opacity 700ms cubic-bezier(.25, .85, .35, 1), transform 700ms cubic-bezier(.25, .85, .35, 1);
}

.reveal.in,
.bring-card.reveal-visible,
.menu-card.reveal-visible,
.stay-card.reveal-visible,
.activity-card.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}


/* -------------------------
   DESKTOP & TABLET LARGER SPACING
   (applied on min-width: 981px)
   ------------------------- */
@media (min-width:981px) {
  /* increase section spacing substantially */
  .content-section { padding: var(--section-gap-lg) 0; }
  .pricing-section { padding: var(--section-gap-md) 0; }
  .contact-section { padding: var(--section-gap-md) 0; }
  .section-slogan { padding: 28px 0; }

  /* increase typography spacing */
  .content-section h2 { font-size: 34px; margin-bottom: 22px; }
  .content-section p { font-size: 18px; margin-bottom: 20px; line-height: 1.7; }

  /* hero spacing */
  .hero { min-height: 78vh; padding: 64px 0; }
  .hero-content { padding: 20px 20px;margin-top: 85px; margin-left: 75px; border-radius:14px; }

  .hero h1 { font-size: 35px; margin-bottom: 18px; }
  .lead { font-size: 18px; }

  /* cards & grids spacing */
  .card { padding: var(--card-padding-lg); border-radius: 14px; }
  .grid-3 { gap: var(--card-gap-lg); }
  .grid-3-cards { gap: var(--card-gap-lg); }
  .grid-2 { gap: 40px; }

  .pricing-grid { gap: 26px; }
  .price { font-size: 30px; }
  .price-card { padding: 28px; }

  /* contact grid */
  .contact-grid { grid-template-columns: 1fr 480px; gap: 40px; }

    /* simple subtle separators between sections (clean beige line) */
  main > section + section::before,
  main > section + footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    height: 1px;
    background: var(--separator-color); /* Used the defined separator color */
    z-index: 1;
  }


  /* ensure sections have background for gradient to blend (if alt or white) */
  main > section { z-index: 1; }
}

/* -------------------------
   MOBILE & TABLET RESPONSIVE RULES (<= 980px)
   ------------------------- */
@media (max-width:980px) {
  .container {
    max-width: none;
    padding-left: var(--mobile-side-padding);
    padding-right: var(--mobile-side-padding);
  }

  .nav-desktop { display: none; }
  .burger { display: flex; }

  .header-inner { padding: 8px 10px; height: 68px; }
  .brand-text { font-size: 18px; }

  /* hero adjustments for mobile */
  .hero { min-height: 65vh; padding: 100px 0; }
  .hero-content { margin: 0 auto; max-width: calc(100% - (var(--mobile-side-padding) * 5)); padding: 28px; border-radius:12px;/* margin-left: 0;*/ }
  .hero h1 { font-size: 32px; }
  .lead { font-size: 15.5px; }

  /* more compact section spacing on mobile */
  .content-section { padding: var(--section-gap-sm) 0; }
  .section-slogan { margin-top: 16px; }

  /* stack grids */
  .grid-2, .grid-2.reverse { grid-template-columns: 1fr; gap: 18px; }
  .grid-3, .grid-3-cards { grid-template-columns: 1fr; gap: 16px; }
  .pricing-grid, .contact-grid { grid-template-columns: 1fr; gap: 18px; }
  .grid-3 { gap: 18px; }

  /* smaller cards on mobile */
  .card, .price-card, .stay-card { padding: 16px; border-radius: 10px; }

  /* mobile overlay & menu z-index quick fixes */
  .mobile-menu { z-index: 160; }
  .mobile-overlay { z-index: 150; }

  /* scroll-snap subtle: use proximity for softer feel */
  main {
     scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
    /* scroll-snap-type: y proximity;
    -webkit-overflow-scrolling: touch; */
  }
  main > section, main > footer {
    scroll-snap-align: start;
  scroll-snap-stop: always;
   /* min-height: calc(100vh - var(--header-height));*/
    /* padding-top: 20px; */
  }

  /* Slightly reduce vertical padding for mobile flow */
.content-section,
.pricing-section,
.contact-section {
  padding: calc(var(--section-gap-sm) * 0.8) 0;
}
}

/* smallest phones */
@media (max-width:560px) {
  :root{
    --section-gap-lg: 64px;
    --section-gap-md: 48px;
    --section-gap-sm: 28px;
  }
  .logo{height:auto;width:80px}
  .brand-text{font-size:16px}
  .hero h1{font-size:26px}
  .hero-content{padding:20px}
  .lead{font-size:15px}
  .section-slogan .slogan{letter-spacing:2px;font-size:12px}
  .contact-grid{grid-template-columns:1fr}
}

/* Desktop: ensure burger hidden */
@media (min-width:981px){
  .burger { display: none; }
  .nav-desktop { display: flex; }
}

/* Refined food menu section */
.section-intro {
  color: #444; /* Refined */
  font-size: 18px;
  margin-bottom: 40px;
  font-weight: 300;
}

.menu-grid.refined-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.menu-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 14px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: transform 280ms ease, box-shadow 280ms ease;
  position: relative;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

.menu-icon {
  font-size: 40px;
  margin-bottom: 12px;
  opacity: 0.9;
}

.menu-card h4 {
  font-family: "Architects Daughter", cursive;
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--accent); /* Accent color on menu titles */
}

.menu-divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  opacity: 0.5;
  margin: 12px auto 20px;
  border-radius: 1px;
}

.menu-card p {
  color: #444; /* Refined */
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .menu-card {
    padding: 24px 20px;
  }
  .menu-card h4 {
    font-size: 20px;
  }
  .menu-card p {
    font-size: 15.5px;
  }
}
/* ---- Bring Section (3 + 2 Centered Grid) ---- */
.bring-grid-staggered {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  justify-content: center;
}

.bring-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.bring-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  background: #faf8f4;
}

.bring-icon {
  font-size: 40px;
  margin-bottom: 12px;
  opacity: 0.9;
}

.bring-card h4 {
  font-family: "Architects Daughter", cursive;
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--accent); /* Accent color on bring titles */
}

.bring-card p {
  color: #444; /* Refined */
  font-size: 15.5px;
  line-height: 1.6;
}

/* Center bottom row (2 cards under 3) */
.bring-card:nth-child(4) {
  grid-column: 2;
}
.bring-card:nth-child(5) {
  grid-column: 3;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .bring-grid-staggered {
    grid-template-columns: repeat(2, 1fr);
  }
  .bring-card:nth-child(4),
  .bring-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .bring-grid-staggered {
    grid-template-columns: 1fr;
  }
  .bring-card {
    padding: 24px 18px;
  }
  .bring-icon {
    font-size: 34px;
  }
}
/* Update the relevant part of your styles.css file with this code: */

/* ---- Bring Section (NEW: Two separate rows for centering) ---- */
.bring-row-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
 /* max-width: 900px;*/ /* Optional: Keep consistent with the centering logic if you had one */
  margin-left: auto;
  margin-right: auto;
}

.bring-row-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns */
  gap: 28px;
  margin-top: 28px; /* Slightly less margin than the first row */
 /* max-width: 600px;*/ /* Smaller max width to naturally center the two cards */
  margin-left: auto; /* Centering the row */
  margin-right: auto;
}

.bring-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  /*transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;*/
  transform: translateY(24px);
  transition: opacity 600ms cubic-bezier(.2,.9,.3,1), transform 600ms cubic-bezier(.2,.9,.3,1);
}

.bring-card.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.bring-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  background: #faf8f4;
}

/* ... (Keep other existing .bring-card, .bring-icon, etc. styles) ... */


/* Responsive adjustments */
@media (max-width: 992px) {
  /* Collapse both rows to 2 columns on tablet view */
  .bring-row-top,
  .bring-row-bottom {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px; /* Use a consistent width for both rows */
    margin: 20px auto 0 auto;
  }
}

@media (max-width: 600px) {
  /* Collapse both rows to 1 column on mobile view */
  .bring-row-top,
  .bring-row-bottom {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 18px;
  }
}


/* ---- New Activity Card Styles (Extracted from inline styles) ---- */
.activity-card {
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  padding: 24px; /* Standard desktop padding */
}

/* ... (Keep .indoor-card, .outdoor-card, .activity-card h4 styles) ... */

.activity-card h4 {
  color: var(--accent); 
  margin-top: 0; 
  font-family: "Architects Daughter", cursive;
  font-size: 22px; 
  margin-bottom: 18px;
}

/* Updated from 'ul' to '.activity-list' */
.activity-list {
  list-style: none; 
  padding-left: 0; 
  margin: 0; 
  display: flex; 
  flex-wrap: wrap; 
  gap: 10px 14px; /* Adjusted gap for the new tags */
}

/* NEW: This creates the "pill" or "tag" effect */
.activity-list li {
  font-weight: 500;
  font-size: 15px;
  color: #555; /* Slightly softer text color */
  background: #EAE5DD; /* Using your light beige for a warm feel */
  padding: 6px 16px;
  border-radius: 30px; /* Fully rounded pill shape */
  transition: transform 200ms ease, box-shadow 200ms ease;
}

/* NEW: Adds a subtle, premium hover effect */
.activity-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.07);
  color: #222; /* Darker text on hover */
}


.indoor-card {
  margin-bottom: 20px; 
 
}

/* Inside @media (max-width: 980px) */
@media (max-width: 980px) {
  /* ... (Keep all existing rules) ... */

  /* FIX: Reduce padding and margin for the Activity Cards */
  .activity-card {
    padding: 16px 18px; /* Reduced padding for mobile */
  }

  .indoor-card {
    margin-bottom: 20px; /* Reduced margin for mobile */
  }
  
  /* Make the list items closer together */
  .activity-list { /* Renamed from ul */
    gap: 8px 10px; 
  }

  /* NEW: Make pills smaller on mobile */
  .activity-list li {
    font-size: 14px;
    padding: 5px 12px;
  }

  /* ... (Keep all existing rules) ... */
}
/* ---- Booking Section ---- */
#booking {
  background: #fff; /* White background for clean look */
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
  justify-content: center;
}

.booking-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  text-align: center;
  padding: 34px 26px;
  text-decoration: none;
  color: #222;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.booking-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  background: #faf8f4;
}

.booking-card img {
  width: 80px;
  height: auto;
}

.booking-card h4 {
  font-family: "Architects Daughter", cursive;
  color: var(--accent);
  font-size: 20px;
  margin-top: 0px;
  margin-bottom: 10px;
}

.booking-card p {
  color: #444;
  font-size: 15.5px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .booking-card {
    padding: 26px 20px;
  }
  .booking-card img {
    width: 70px;
    margin-bottom: 12px;
  }
}

/* 2-column layout: Info Box + Map */
.contact-grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  margin-top: 40px;
}

/* Contact Info Box */
.contact-box {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 22px;
  height: 100%;
}

.info-inline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.divider {
  opacity: 0.4;
}

/* Map */
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: 16px;
}

/* Responsive */
@media (max-width: 960px) {
  .contact-grid-2 {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    min-height: 300px;
  }
}


.live-widget {
  
  font-size: 15.5px;
  color: #444;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 500;
  
}

.info-section .live-widget div {
  line-height: 1.4;
}
.gallery-section{
  background: #fbfbfb;
}

/* ------------------------------
   Masonry Gallery (Luxury Theme)
------------------------------ */
/* Base masonry grid (JS will position items) */
/* Masonry container */
.masonry {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

/* Masonry items */
.masonry-item {
  position: absolute;
  transition: all 0.35s ease;
  box-sizing: border-box;
  padding: 0; /* no internal padding */
    margin-bottom: 20px !important; /* Ensures all items (portrait + landscape) get spacing */
}

/* Images */
.masonry-item img {
  width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease;
}

.masonry-item img:hover {
  transform: scale(1.03);
}

/* Add real gap */
/*.masonry-gap {
  margin-bottom: 20px;
}*/

@media (max-width: 600px) {
  .masonry-item {
    padding-right: 8px;   /* small side gap for mobile */
  }

  .masonry-item img {
    border-radius: 10px;
  }
}



/* ------------------------------
    LIGHTBOX (Luxury Theme)
------------------------------ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.lightbox.show {
  display: flex;
}

.lightbox-img {
  max-width: 92%;
  max-height: 88vh;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  animation: fadeIn 0.35s ease;
  object-fit: contain;
}

/* Close button */
.lb-close {
  position: absolute;
  top: 22px;
  right: 32px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  font-weight: 300;
  z-index: 10;
}

/* Arrows */
.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 40px;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease;
}

.lb-prev:hover,
.lb-next:hover {
  background: rgba(255,255,255,0.22);
}

.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

/* Mobile improvements */
@media (max-width: 600px) {
  .lb-prev, .lb-next {
    font-size: 32px;
    padding: 6px 12px;
  }
  .lb-close {
    font-size: 32px;
  }
}

/* WhatsApp Floating Button */
.wa-floating {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 9999;

  background: #1cdb63;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-floating img {
  width: 40px;
  height: 40px;
  filter: brightness(1) contrast(1.1);
}

.wa-floating:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 26px rgba(0,0,0,0.22);
}

/* Mobile adjustment */
@media (max-width: 480px) {
  .wa-floating {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
  }

  .wa-floating img {
    width: 26px;
    height: 26px;
  }
}

/* Desktop book button */
.nav-desktop .book-btn {
  padding: 10px 20px;
  background: #111;
  color: #fff;
  border-radius: 30px;
  margin-left: 16px;
  transition: 0.25s ease;
}

.nav-desktop .book-btn:hover {
  background: #333;
}

/* Mobile book button */
.mobile-book-btn {
  display: block;
  width: 100%;
  padding: 12px 0;
  background: var(--accent);
  color: #fff !important;
  text-align: center;
  border-radius: 8px;
  margin-top: 20px;
}


/* Active menu highlight */
.nav-desktop .nav-link.active,
.mobile-nav .nav-link.active {
  color: #111;
  font-weight: 600;
  position: relative;
}

.nav-desktop .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #111;
  border-radius: 2px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Center navigation in desktop */
.center-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
}

/* Book Now button aligned right */
.book-btn-header {
  padding: 10px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

.book-btn-header:hover {
  background: #5d3b1e;
}

/* Make sure mobile layout doesn’t break */
@media (max-width: 900px) {
  .center-nav {
    display: none; /* hide desktop nav */
  }

  .book-btn-header {
    display: none; /* hide desktop Book button */
  }
}
/* FIXED: Stay Cards With Visible Background Images */
/*.stay-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  padding: 0 !important;
  height: 360px; 
  display: flex;
  align-items: flex-end;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  box-shadow: var(--card-shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.stay-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.15));
  z-index: 1;
}


.stay-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  color: #ffffff;
}


.stay-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}*/

/* Assign background images */
/*.stay1 { background-image: url("assets/gallery/6-1.jpg") !important; }
.stay2 { background-image: url("assets/gallery/1-1.jpg") !important; }
.stay3 { background-image: url("assets/gallery/3.jpg") !important; }*/


/* -------------------------
   Botanical Panorama Section
-------------------------- */
/* Forest Grid Section */
#green-family {
  background: #ffffff; /* pure white */
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

#green-family h2 {
  font-family: "Architects Daughter", cursive;
  color: #111;
  font-size: 32px;
  margin-bottom: 12px;
}

#green-family .section-intro {
  color: #555;
  margin-bottom: 50px;
  font-size: 18px;
}

/* Grid layout */
.green-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card style */
.green-card {
  background: #fff; 
  border-radius: 14px;
  padding: 32px 26px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.green-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(0,0,0,0.08);
}

/* Typography inside cards */
.green-card h4 {
  font-family: "Architects Daughter", cursive;
  font-size: 20px;
  margin-bottom: 12px;
  color: #222;
}

.green-card p {
  color: #333;
  font-size: 15.5px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .green-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .green-grid {
    grid-template-columns: 1fr;
  }
  .green-card {
    padding: 24px;
  }
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.insta-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  background: #fff;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.insta-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .insta-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}




