 :root{
      --cream:#fdf8f3;
      --deep-green:#0b4f40;
      --accent:#c8a46b;
      --card-bg: #ffffff;
      --muted:#6b6b6b;
      --glass: rgba(255,255,255,0.6);
    }
    /* Reset & Base */
    *{box-sizing:border-box}
    body{margin:0;font-family:'Poppins',sans-serif;background:var(--cream);color:#222;line-height:1.45}
    a{text-decoration:none;color:inherit}
    img{max-width:100%;display:block}
    .container{max-width:1200px;margin:0 auto;padding:0 20px}
    /* === Popup Styles === */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.1s;
}

.popup-overlay.active {
  visibility: visible;
  opacity: 1;
}

.popup-box {
  position: relative;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  animation: popupZoom 0.6s ease;
}

.popup-image {
  width: 100%;
  height: auto;
  display: block;
}

.popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 28px;
  color: #333;
  cursor: pointer;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  line-height: 32px;
  text-align: center;
  transition: background 0.2s;
}

.popup-close:hover {
  background: rgba(255, 255, 255, 1);
}

@keyframes popupZoom {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ✅ Responsive Adjustments */
@media (max-width: 1024px) {
  .popup-box {
    max-width: 70%;
  }
}

@media (max-width: 768px) {
  .popup-box {
    max-width: 85%;
    border-radius: 10px;
  }

  .popup-close {
    font-size: 24px;
    width: 32px;
    height: 32px;
    line-height: 28px;
  }
}

@media (max-width: 480px) {
  .popup-box {
    width: 92%;
    max-width: 360px;
    border-radius: 10px;
  }

  .popup-close {
    top: 6px;
    right: 8px;
    font-size: 22px;
    width: 28px;
    height: 28px;
    line-height: 24px;
  }
}



 /* Navbar */
header {
  background: white;
  position: relative;
  top: 0;
  margin-top: 15px;
  z-index: 60;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--deep-green);
  font-weight: 600;
}

nav ul {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-weight: 600;
  color: var(--deep-green);
  text-decoration: none;
}

.btn-cta {
  background: var(--deep-green);
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
}

/* Hamburger menu */
.hamburger {
  display: none;
  background: none;
  border: 0;
  font-size: 22px;
  color: var(--deep-green);
  cursor: pointer;
}

/* Close button (hidden by default) */
.close-menu {
  display: none;
  background: none;
  border: 0;
  font-size: 28px;
  color: var(--deep-green);
  cursor: pointer;
  position: fixed;
  top: 22px;
  right: 26px;
  z-index: 1001;
}

/* Mobile nav */
@media (max-width: 820px) {
  nav ul {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 260px;
    background: var(--cream);
    flex-direction: column;
    padding: 80px 20px;
    transform: translateX(110%);
    transition: transform 0.28s ease;
    box-shadow: -8px 0 30px rgba(10,10,10,.08);
    z-index: 1000;
  }

  nav ul.open {
    transform: translateX(0);
  }

  .hamburger {
    display: block;
  }

  /* When menu is open */
  nav.menu-open .hamburger {
    display: none;
  }

  nav.menu-open .close-menu {
    display: block;
  }
}


    /* Hero */
 .hero {
  padding: 86px 0 60px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.9) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 40px;
  align-items: center;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  color: var(--deep-green);
  font-size: 2.8rem;
  margin: 0 0 14px;
  line-height: 1.2;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-cta .btn {
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--deep-green);
  color: var(--deep-green);
}

.hero-image {
  height: 560px;
  width: 410px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(10,10,10,.12);
}

/* ✅ Responsive Adjustments */
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr 420px;
    gap: 30px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-image {
    height: 500px;
    width: 360px;
  }
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .hero-image {
    margin: 0 auto;
    width: 80%;
    max-width: 360px;
    height: auto;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-cta {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 60px 0 40px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-cta .btn {
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .hero-image {
    width: 100%;
    max-width: 320px;
  }
}


    /* Services */
    .services{padding:60px 0}
    .services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
    .service-card{background:var(--card-bg);border-radius:12px;padding:18px;box-shadow:0 8px 26px rgba(10,10,10,.06);text-align:left}
    .service-card h3{margin:10px 0;color:var(--deep-green)}
    .service-card p{color:var(--muted);margin:0}
    .service-image{height:160px;border-radius:8px;overflow:hidden;margin-bottom:12px}

    @media (max-width:920px){
      .services-grid{grid-template-columns:1fr}
    }

    /* Highlights / Menu */
    .highlights{padding:40px 0}
    .menu-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
    .menu-card{background:var(--card-bg);padding:16px;border-radius:10px;box-shadow:0 8px 20px rgba(0,0,0,.05)}
    .menu-card h4{margin-top:0;color:var(--deep-green)}
    @media (max-width:720px){.menu-grid{grid-template-columns:1fr}}

    /* Rooms */
    .rooms{padding:58px 0}
    .rooms-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
    .room-card{background:var(--card-bg);border-radius:12px;overflow:hidden;box-shadow:0 12px 30px rgba(0,0,0,.06)}
    .room-card .room-body{padding:16px}
    .room-meta{display:flex;justify-content:space-between;align-items:center;margin-top:12px}
    @media (max-width:920px){.rooms-grid{grid-template-columns:1fr 1fr}}
    @media (max-width:620px){.rooms-grid{grid-template-columns:1fr}}

    /* Collage (Your Experiences) */
    .collage-section{padding:68px 0;text-align:center}
    .collage-title{font-family:'Playfair Display',serif;font-size:2.2rem;color:var(--deep-green);margin-bottom:28px}
    .collage-wrap{display:flex;justify-content:center;align-items:center;gap:0;position:relative;flex-wrap:nowrap;overflow:visible}
    .collage-wrap img{width:360px;height:240px;object-fit:cover;border-radius:8px;box-shadow:0 10px 30px rgba(0,0,0,.12);margin-left:-140px;transition:transform .35s ease}
    .collage-wrap img:nth-child(1){margin-left:0;transform:translateY(10px)}
    .collage-wrap img:nth-child(3){transform:translateY(-8px);z-index:4}
    .collage-wrap img:hover{transform:scale(1.03);z-index:8}
    @media (max-width:1024px){ .collage-wrap img{width:280px;height:200px;margin-left:-100px} }
    @media (max-width:680px){ .collage-wrap{flex-wrap:wrap} .collage-wrap img{width:92%;margin-left:0;margin:10px 0;height:auto} }

    /* Booking Form */
    .booking{padding:48px 0;background:linear-gradient(180deg, rgba(200,164,107,.06), rgba(255,255,255,0));border-radius:12px;margin:18px 0}
    .booking-grid{display:grid;grid-template-columns:1fr 420px;gap:20px;align-items:start}
    .form-card{background:var(--card-bg);padding:18px;border-radius:10px;box-shadow:0 10px 26px rgba(0,0,0,.06)}
    .form-row{display:flex;gap:10px;margin-bottom:10px}
    .form-row input,.form-row select, textarea, input[type="date"], input[type="time"]{width:100%;padding:10px;border-radius:8px;border:1px solid #e6e6e6}
    .form-row textarea{min-height:110px;resize:vertical}
    .booking-info{padding:18px}

    @media (max-width:920px){ .booking-grid{grid-template-columns:1fr} }

    /* Contact & Footer */
    footer{padding:34px 0 60px;color:var(--muted)}
    .footer-grid{display:flex;justify-content:space-between;gap:20px;align-items:flex-start}
    @media (max-width:820px){ .footer-grid{flex-direction:column} }

    /* small utilities */
    .muted{color:var(--muted)}
    .caps{font-size:.85rem;letter-spacing:.08em;text-transform:uppercase;color:var(--deep-green);font-weight:700}
    .section{padding:8px 0}
    .center{display:flex;justify-content:center;align-items:center}
    /* tiny scroll reveal */
    .reveal{opacity:0;transform:translateY(20px);transition:all .6s ease}
    .reveal.visible{opacity:1;transform:none}


/* PREMIUM HOVER EFFECTS — LIGHT THEME */

/* Buttons */
.btn-cta {
  background: var(--deep-green);
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.btn-cta:hover {
  background: #0b644c;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--deep-green);
  color: var(--deep-green);
  background: transparent;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: var(--deep-green);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

/* Navbar Links */
nav a {
  position: relative;
  color: #333;
  transition: color 0.3s ease;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: var(--deep-green);
  transition: width 0.3s ease;
}
nav a:hover::after {
  width: 100%;
}
nav a:hover {
  color: var(--deep-green);
}

/* Service Cards */
.service-card {
  background: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.service-card img {
  transition: transform 0.35s ease;
}
.service-card:hover img {
  transform: scale(1.04);
}

/* Menu Cards */
.menu-card {
  background: #fff;
  transition: all 0.35s ease;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Room Cards */
.room-card {
  background: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.room-card img {
  transition: transform 0.35s ease;
}
.room-card:hover img {
  transform: scale(1.05);
}

/* Collage Images */
.collage-wrap img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 10px;
}
.collage-wrap img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  z-index: 10;
}

/* Footer */
footer {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(220,180,100,0.05), rgba(0,100,60,0.05));
  opacity: 0;
  transition: opacity 0.5s ease;
}
footer:hover::before {
  opacity: 1;
}
.footer-grid > div {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
.footer-grid > div:hover {
  transform: translateY(-4px);
}

/* Form Card Hover */
.form-card {
  background: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 26px rgba(0,0,0,0.08);
}

/* =============================== */
/* AUTO ROTATING IMAGE CAROUSEL */
/* =============================== */
.places-section {
  text-align: center;
  padding: 50px 0;
  background: #faf9f7;
}

.places-section h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #084b37;
  font-weight: 600;
}

.carousel {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.carousel-track {
  display: flex;
  gap: 20px;
  animation: scroll 35s linear infinite;
}

.carousel img {
  width: 400px;
  height: 250px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .carousel img {
    width: 280px;
    height: 180px;
  }
}
@media (max-width: 480px) {
  .carousel img {
    width: 220px;
    height: 140px;
  }
}

/* Rotate */

:root{
      --cream:#fdf8f3;
      --deep-green:#0b4f40;
      --accent:#c8a46b;
      --card-bg: #ffffff;
      --muted:#6b6b6b;
      --glass: rgba(255,255,255,0.6);
    }
    *{box-sizing:border-box}
    body{margin:0;font-family:'Poppins',sans-serif;background:var(--cream);color:#222;line-height:1.45}
    a{text-decoration:none;color:inherit}
    img{max-width:100%;display:block}
    .container{max-width:1200px;margin:0 auto;padding:0 20px}

    .popup1-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); display: flex; justify-content: center; align-items: center; z-index: 999; visibility: hidden; opacity: 0; transition: opacity 0.4s ease, visibility 0.1s; }
    .popup1-overlay.active { visibility: visible; opacity: 1; }
    .popup1-box { position: relative; background: white; border-radius: 12px; overflow: hidden; max-width: 40%; box-shadow: 0 10px 40px rgba(0,0,0,0.25); animation: popupZoom 0.6s ease; }
    .popup1-image { width: 100%; height: auto; display: block; }
    .popup1-close { position: absolute; top: 8px; right: 10px; background: rgba(255,255,255,0.8); border: none; font-size: 28px; color: #333; cursor: pointer; border-radius: 50%; width: 36px; height: 36px; line-height: 32px; text-align: center; transition: background 0.2s; }
    .popup1-close:hover { background: rgba(255,255,255,1); }
    @keyframes popupZoom { from {transform: scale(0.8); opacity:0;} to {transform: scale(1); opacity:1;} }


.gallery {
      position: relative;
      width: 90%;
      max-width: 1200px;
      height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      cursor: pointer;
      margin: 0 auto;
    }

    .gallery img {
      position: absolute;
      width: 45%;
      height: auto;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.25);
      opacity: 0;
      transform: scale(0.8);
      transition: all 1s ease;
      user-select: none;
    }

    .gallery img.active { opacity: 1; transform: scale(1); z-index: 3; }
    .gallery img.prev { opacity: 0.7; transform: translateX(-50%) scale(0.9); z-index: 2; }
    .gallery img.next { opacity: 0.7; transform: translateX(50%) scale(0.9); z-index: 2; }
    .gallery img.behind { opacity: 0.4; transform: scale(0.7); z-index: 1; }
    .gallery img.zoomed { transform: scale(1.7) !important; z-index: 10; box-shadow: 0 15px 30px rgba(0,0,0,0.4); }

    .nav-btn { position: absolute; top:50%; transform: translateY(-50%); background: rgba(0,0,0,0.4); color: #fff; border: none; border-radius:50%; width:50px;height:50px;font-size:24px;cursor:pointer;transition: background 0.3s ease; z-index:5; }
    .nav-btn:hover { background: rgba(0,0,0,0.6); }
    #prevBtn { left:20px; }
    #nextBtn { right:20px; }

    @media (max-width: 1024px) { .gallery img { width: 55%; } }
    @media (max-width: 680px) { .gallery { height:300px; } .gallery img { width:70%; } }

  /* Fullscreen zoom overlay */
.fullscreen-zoom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.fullscreen-zoom.active {
  opacity: 1;
  visibility: visible;
}

.fullscreen-zoom img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.fullscreen-zoom .close-zoom {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 36px;
  color: #fff;
  background: rgba(0,0,0,0.4);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  line-height: 45px;
  text-align: center;
  transition: background 0.3s;
}
.fullscreen-zoom .close-zoom:hover {
  background: rgba(0,0,0,0.7);
}
