:root {
      --forest:   #1b3a2d;
      --forest2:  #254d3c;
      --gold:     #c8a050;
      --gold-lt:  #e2bc72;
      --cream:    #f7f2eb;
      --charcoal: #232323;
      --mist:     #e8ede9;
      --text:     #3a3a3a;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    /* ── FIX: overflow-x hidden on BOTH html AND body to kill horizontal scroll ── */
    html {
      scroll-behavior: smooth;
      overflow-x: hidden;          /* ← ADDED */
      max-width: 100%;             /* ← ADDED */
    }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--cream);
      overflow-x: hidden;
      max-width: 100%;             /* ← ADDED */
    }
a {
    color: rgb(255 255 255);
    text-decoration: none;

}
    h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

    /* ── ANIMATED BACKGROUND PARTICLES ── */
    #bg-canvas {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      pointer-events: none;
      z-index: 0;
      opacity: .45;
      max-width: 100vw;            /* ← ADDED */
    }

    /* ── TOP BAR ── */
    #topbar {
      background: #cb1926;
      color: #c8d8c8;
      font-size: 14px;
      letter-spacing: .04em;
      padding: 7px 0;
      position: relative;
      z-index: 1000;
      animation: slideDown .6s ease both;
    }
    #topbar a { color: #fff; text-decoration: none; transition: color .2s; }
    #topbar a:hover { color: #fff; }
    .topbar-divider { color: #3a5a45; margin: 0 8px; }
    .btn-booknow {
      background: #901228;
      color: #fff;
      border: none;
      border-radius: 2px;
      padding: 8px 18px;
    font-size: .78rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      transition: background .25s, transform .2s;
      cursor: pointer;
    }
    .btn-booknow:hover { background:#7f4311; transform: translateY(-1px); }

    @keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

    /* ── NAVBAR ── */
   /* ── HEADER ── */
   /* ════════════════════════════════════════
   1. HEADER ENTRANCE — slides down from above
════════════════════════════════════════ */
@keyframes headerSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
 
/* ════════════════════════════════════════
   2. BORDER SHIMMER — gold light sweeps across
      the crimson→gold→crimson bottom border
════════════════════════════════════════ */
@keyframes borderShimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
 
/* ════════════════════════════════════════
   3. NAV LINKS — staggered fade-up on load
════════════════════════════════════════ */
@keyframes navFadeUp {
  from { transform: translateY(-14px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
 
/* ════════════════════════════════════════
   4. LOGO — scale-in with slight overshoot
════════════════════════════════════════ */
@keyframes logoReveal {
  0%   { transform: scale(.7) translateY(-10px); opacity: 0; }
  70%  { transform: scale(1.06); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
 
/* ════════════════════════════════════════
   5. NAV DIVIDER — height grows down
════════════════════════════════════════ */
@keyframes dividerGrow {
  from { transform: scaleY(0); opacity: 0; }
  to   { transform: scaleY(1); opacity: 1; }
}
 
/* ════════════════════════════════════════
   6. ACTIVE LINK DOT — gentle pulse dot
════════════════════════════════════════ */
@keyframes activeDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192,57,43,.5); }
  50%       { box-shadow: 0 0 0 4px rgba(192,57,43,0); }
}
 
/* ════════════════════════════════════════
   7. MOBILE MENU — slide + fade in
════════════════════════════════════════ */
@keyframes menuSlide {
  from { transform: translateY(-12px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
 
/* ════════════════════════════════════════
   8. MOBILE MENU ITEMS — stagger in
════════════════════════════════════════ */
@keyframes mItemIn {
  from { transform: translateX(-16px); opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}
 
/* ════════════════════════════════════════
   9. ICON ROTATION for toggle btn
════════════════════════════════════════ */
@keyframes iconSpin {
  from { transform: rotate(-90deg) scale(.7); opacity: 0; }
  to   { transform: rotate(0)      scale(1);  opacity: 1; }
}
 
/* ════════════════════════════════════════
   10. LOGO HOVER — 3-D tilt shimmer
════════════════════════════════════════ */
@keyframes logoPulse {
  0%   { filter: drop-shadow(0 0 0px rgba(226,188,114,0)); }
  50%  { filter: drop-shadow(0 0 8px rgba(226,188,114,.7)); }
  100% { filter: drop-shadow(0 0 0px rgba(226,188,114,0)); }
}
 
/* ══════════════════════════════════════════════════
   HEADER BASE
══════════════════════════════════════════════════ */
#mainheader {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0,0,0,.12);
  width: 100%;                     /* ← ADDED */
  max-width: 100vw;                /* ← ADDED */
  overflow: hidden;                /* ← ADDED */
 
  /* animated shimmer border */
  border-bottom: 3px solid transparent;
  border-image:
    linear-gradient(90deg,
      var(--crimson) 0%,
      var(--gold-dk) 25%,
      #ffe9a0 50%,
      var(--gold-dk) 75%,
      var(--crimson) 100%
    ) 1;
  background-clip: padding-box;
 
  /* ① Header slides down */
  animation: headerSlideDown .55s cubic-bezier(.22,.68,0,1.2) both;
}
 
/* Shimmer overlay on border uses a pseudo on the wrapper div */
#mainheader::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,235,140,.9) 40%,
    rgba(255,255,255,1)  50%,
    rgba(255,235,140,.9) 60%,
    transparent 100%);
  background-size: 300% 100%;
  animation: borderShimmer 3.2s linear infinite;
  pointer-events: none;
}
 
/* ══════════════════════════════════════════════════
   DESKTOP LAYOUT
══════════════════════════════════════════════════ */
.navbar { padding: 0 !important; }
 
.nav-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 0 20px;
  min-height: 90px;
}
 
.nav-left  { display: flex; justify-content: flex-end; }
.nav-right { display: flex; justify-content: flex-start; }
 
.nav-left  ul,
.nav-right ul {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0; padding: 0;
  align-items: center;
}
 
/* ② Staggered nav-link entrance */
.nav-left  ul li,
.nav-right ul li {
  opacity: 0;
  animation: navFadeUp .5s cubic-bezier(.22,.68,0,1.2) both;
}
/* Left links: items 1-4 */
.nav-left  ul li:nth-child(1) { animation-delay: .15s; }
.nav-left  ul li:nth-child(2) { animation-delay: .22s; }
.nav-left  ul li:nth-child(3) { animation-delay: .29s; }
.nav-left  ul li:nth-child(4) { animation-delay: .36s; }
/* Right links: items 1-3 */
.nav-right ul li:nth-child(1) { animation-delay: .15s; }
.nav-right ul li:nth-child(2) { animation-delay: .22s; }
.nav-right ul li:nth-child(3) { animation-delay: .29s; }
 
/* ══════════════════════════════════════════════════
   LOGO
══════════════════════════════════════════════════ */
.nav-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 24px;
}
 
/* ③ Logo reveal */
.nav-logo a {
  display: block;
  animation: logoReveal .65s .05s cubic-bezier(.22,.68,0,1.2) both;
}
 
/* ══════════════════════════════════════════════════
   NAV LINKS
══════════════════════════════════════════════════ */
.nav-link-hd {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--charcoal) !important;
  text-decoration: none;
  padding: 10px 13px;
  display: block;
  position: relative;
  white-space: nowrap;
  transition: color .2s, transform .2s;
}
 
/* Underline bar */
.nav-link-hd::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 13px; right: 13px;
  height: 2px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .28s cubic-bezier(.4,0,.2,1);
}
.nav-link-hd:hover::after,
.nav-link-hd.active::after { transform: scaleX(1); }
 
/* Hover: tiny lift + color */
.nav-link-hd:hover {
  color: var(--crimson) !important;
  transform: translateY(-1px);
}
 
/* Active state */
.nav-link-hd.active {
  color: var(--crimson) !important;
  font-weight: 700;
}
 
/* Active state — tiny dot above text */
.nav-link-hd.active::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--crimson);
  border-radius: 50%;
  animation: activeDot 1.8s ease-in-out infinite;
}
 
/* ④ Divider — grows down */
.nav-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--gold-dk), transparent);
  flex-shrink: 0;
  transform-origin: top;
  animation: dividerGrow .5s .4s ease both;
}
 
/* ══════════════════════════════════════════════════
   MOBILE HEADER
══════════════════════════════════════════════════ */
.mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding:10px 35px;
  width: 100%;
}
.mobile-header .logo-mock { height: 60px; width: 130px; }
.mobile-header .logo-mock .lm-icon { width: 34px; height: 34px; font-size: .9rem; }
.mobile-header .logo-mock .lm-name { font-size: .68rem; }
 
.toggler-btn {
  background: #8f1228;
  border: none;
  padding: 8px 14px;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background .2s, transform .15s;
  border-radius: 2px;
}
.toggler-btn:hover { background: #a93226; transform: scale(1.05); }
.toggler-btn i {
  display: block;
  animation: iconSpin .3s ease both;
}
 
/* ══════════════════════════════════════════════════
   MOBILE MENU
══════════════════════════════════════════════════ */
#mobileMenu {
  display: none;
  background: #fff;
  border-top: 2px solid var(--gold-dk);
  padding: 8px 0 12px;
  /* ⑦ menu slides in */
  animation: menuSlide .3s ease both;
  overflow: hidden;
  width: 100%;                     /* ← ADDED */
}
#mobileMenu.open { display: block; }
 
#mobileMenu .m-nav-link {
  display: block;
  padding: 11px 24px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: color .2s, border-left-color .2s, background .2s, transform .18s;
 
  /* ⑧ stagger items */
  opacity: 0;
  animation: mItemIn .35s ease both;
}
#mobileMenu.open .m-nav-link:nth-child(1) { animation-delay: .03s; }
#mobileMenu.open .m-nav-link:nth-child(2) { animation-delay: .07s; }
#mobileMenu.open .m-nav-link:nth-child(3) { animation-delay: .11s; }
#mobileMenu.open .m-nav-link:nth-child(4) { animation-delay: .15s; }
#mobileMenu.open .m-nav-link:nth-child(6) { animation-delay: .20s; }
#mobileMenu.open .m-nav-link:nth-child(7) { animation-delay: .24s; }
#mobileMenu.open .m-nav-link:nth-child(8) { animation-delay: .28s; }
 
#mobileMenu .m-nav-link:hover {
  color: var(--crimson);
  border-left-color: var(--gold);
  background: #fdf8f0;
  transform: translateX(4px);
}
 
#mobileMenu .m-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,148,58,.3), transparent);
  margin: 6px 16px;
  opacity: 0;
  animation: mItemIn .35s .17s ease both;
}
#mobileMenu.open .m-divider { animation-delay: .17s; }
 
/* ══════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════════ */
@media (max-width: 1199px) {
  .nav-link-hd { font-size: .72rem; padding: 10px 9px; letter-spacing: .06em; }
  .logo-mock   { height: 68px; }
}
 
@media (max-width: 991px) {
  .desktop-nav  { display: none !important; }
  .mobile-header { display: flex; }
}
 


    /* ── SLIDER ── */
#heroSlider { position: relative; z-index: 1; }

.hero-slide {
  height: 88vh;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;                     /* ← ADDED */
  overflow: hidden;                /* ← ADDED */
}

.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 20, 15, 0.65) 0%, rgba(10,20,15,0.15) 60%, transparent 100%);
}

.slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 5rem 3rem 3rem;
  background: linear-gradient(to top, rgba(10, 20, 15, 0.5) 0%, transparent 100%);
}

.slide-caption .eyebrow {
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  display: block;
  margin-bottom: .5rem;
  animation: fadeUp .8s ease both;
}

.slide-caption h2 {
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  color: #fff;
  line-height: 1.15;
  animation: fadeUp .8s .1s ease both;
  margin-bottom: 0;
}

.slide-caption p {
  color: rgba(255, 255, 255, .80);
  max-width: 520px;
  margin-top: .5rem;
  font-size: .92rem;
  animation: fadeUp .8s .2s ease both;
  line-height: 1.5;
}

@keyframes fadeUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 44px;
  height: 44px;
  background: rgba(200, 160, 80, .85);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 .75rem;
  opacity: .9;
  transition: background .2s, transform .2s, opacity .2s;
  /* keep controls away from edges */
  position: absolute;
}

.carousel-control-prev { left: .5rem; }
.carousel-control-next { right: .5rem; }

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--gold);
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

/* Indicators */
.carousel-indicators {
  margin-bottom: .75rem;
}
.carousel-indicators button {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  opacity: .5;
}
.carousel-indicators .active {
  background-color: var(--gold);
  opacity: 1;
}

/* Slide images */
.s1 { background-image: url('img/portfolio/exterior1_1.webp'); }
.s2 { background-image: url('img/portfolio/kingbed.webp'); }
.s3 { background-image: url('img/portfolio/queenbed.webp'); }
.s4 { background-image: url('img/portfolio/Spacious-guest-room.webp'); }

/* ── RESPONSIVE FIXES ── */

/* Tablet (≤768px) */
@media (max-width: 768px) {
  .hero-slide {
    height: 72vh;
    min-height: 400px;
  }

  .slide-caption {
    padding: 4rem 1.5rem 2rem;
  }

  .slide-caption h2 {
    font-size: clamp(1.35rem, 5vw, 2rem);
  }

  .slide-caption p {
    font-size: .85rem;
    margin-top: .4rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 36px;
    height: 36px;
    margin: 0 .25rem;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 14px;
    height: 14px;
  }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
  .hero-slide {
    height: 65vh;
    min-height: 340px;
    /* Focus on subject on portrait mobile */
    background-position: center top;
  }

  .slide-caption {
    padding: 3rem 1rem 1.25rem;
  }

  .slide-caption .eyebrow {
    font-size: .65rem;
    letter-spacing: .18em;
    margin-bottom: .3rem;
  }

  .slide-caption h2 {
    font-size: clamp(1.15rem, 6vw, 1.6rem);
    line-height: 1.2;
  }

  .slide-caption p {
    font-size: .8rem;
    line-height: 1.45;
    /* Hide on very small screens if too crowded */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Tuck controls tighter on phone */
  .carousel-control-prev { left: .1rem; }
  .carousel-control-next { right: .1rem; }

  .carousel-control-prev,
  .carousel-control-next {
    width: 32px;
    height: 32px;
  }

  .carousel-indicators {
    margin-bottom: .5rem;
  }

  .carousel-indicators button {
    width: 18px;
  }
}
    /* ── SECTION SHARED ── */
    section { position: relative; z-index: 1; }
    .section-tag {
      display: inline-block;
      font-size: .68rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      font-family: 'DM Sans', sans-serif;
      margin-bottom: .6rem;
    }
    .section-tag::before { content: '— '; }
    .section-tag::after  { content: ' —'; }
    .divider-leaf {
      width: 60px; height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 1rem auto 0;
    }

    /* ── WELCOME SECTION ── */
    #welcome {
      background: var(--cream);
      padding: 6rem 0;
      overflow: hidden;
    }
    .welcome-frame {
      position: relative;
      padding: 3.5rem;
      background: #5f3f0b;
      color: var(--cream);
      border-radius: 4px;
      overflow: hidden;            /* ← already present — keeps pseudo-elements clipped */
    }
    .welcome-frame::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 220px; height: 220px;
      border: 40px solid rgba(200,160,80,.12);
      border-radius: 50%;
      pointer-events: none;
    }
    .welcome-frame::after {
      content: '';
      position: absolute;
      bottom: -40px; left: -40px;
      width: 160px; height: 160px;
      border: 30px solid rgba(200,160,80,.08);
      border-radius: 50%;
      pointer-events: none;
    }
    .welcome-frame .big-num {
      font-family: 'Playfair Display', serif;
      font-size: 5rem;
      color: rgba(200,160,80,.18);
      line-height: 1;
      user-select: none;
      position: absolute;
      top: 1.5rem; right: 2rem;
      pointer-events: none;
    }
    .welcome-photo-stack {
      position: relative;
      height: 420px;
      overflow: hidden;            /* ← ADDED */
    }
    .wp-main, .wp-inset {
      position: absolute;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0,0,0,.2);
    }
    .wp-main { width: 80%; height: 380px; top: 0; left: 0; }
    .wp-inset { width: 55%; height: 210px; bottom: 0; right: 0; border: 5px solid var(--cream); }
    .wp-main img, .wp-inset img { width: 100%; height: 100%; object-fit: cover; }
    .badge-checkin {
      position: absolute;
      top: 50%; left: 75%;
      transform: translate(-50%,-50%);
      background: #e31b23;
      color: #fff;
      text-align: center;
      padding: 1rem 1.2rem;
      border-radius: 50%;
      width: 90px; height: 90px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      font-family: 'DM Sans', sans-serif;
      font-size: .6rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      box-shadow: 0 6px 20px rgba(200,160,80,.45);
      z-index: 5;
    }
    .badge-checkin strong { font-size: 1.3rem; font-family: 'Playfair Display', serif; letter-spacing: 0; display: block; }
    .stat-row { display: flex; gap: 2rem; margin-top: 2rem; }
    .stat-item { text-align: center; flex: 1; }
    .stat-item .num {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      color: var(--gold);
      display: block;
      line-height: 1;
    }
    .stat-item .lbl { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; opacity: .6; margin-top: .2rem; display: block; }

    /* counting animation */
    .count-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold); display: block; line-height: 1; }

    /* ── AMENITIES ── */
    #amenities {
      background: #100f0f;
      padding: 6rem 0;
      overflow: hidden;
    }
    #amenities .section-title { color: var(--cream); }
    #amenities .section-tag { color: var(--gold); }
    #amenities p.lead { color: rgba(232,237,233,.65); }

    .amenity-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(200,160,80,.15);
      border-radius: 4px;
      padding: 2rem 1.5rem;
      text-align: center;
      color: var(--cream);
      position: relative;
      overflow: hidden;
      transition: transform .4s cubic-bezier(.25,.8,.25,1), background .4s, box-shadow .4s;
      cursor: default;
    }
    .amenity-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(200,160,80,.1) 0%, transparent 60%);
      opacity: 0;
      transition: opacity .4s;
    }
    .amenity-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.09); box-shadow: 0 20px 40px rgba(0,0,0,.3); }
    .amenity-card:hover::before { opacity: 1; }
    .amenity-card:hover .ami-icon { transform: scale(1.15) rotate(-5deg); color: var(--gold-lt); }
    .ami-icon { font-size: 2.2rem; color: var(--gold); margin-bottom: 1rem; display: block; transition: transform .4s, color .3s; }
    .amenity-card h5 { font-size: .88rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .4rem; font-family: 'DM Sans', sans-serif; font-weight: 500; }
    .amenity-card p { font-size: .8rem; color: rgba(232,237,233,.55); line-height: 1.5; }

    /* floating orbs behind amenities */
    .orb {
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200,160,80,.12) 0%, transparent 70%);
      pointer-events: none;
      max-width: 100%;             /* ← ADDED */
      overflow: hidden;            /* ← ADDED */
    }

    /* ── ATTRACTIONS ── */
    #attractions {
      background: var(--mist);
      padding: 6rem 0;
    }
    .attr-card {
      background: #fff;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,.07);
      transition: transform .35s ease, box-shadow .35s ease;
      height: 100%;
    }
    .attr-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.14); }
    .attr-card-img { height: 180px; overflow: hidden; }
    .attr-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
    .attr-card:hover .attr-card-img img { transform: scale(1.07); }
    .attr-card-body { padding: 1.2rem; }
    .attr-dist { font-size: .72rem; color: var(--gold); font-weight: 500; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .3rem; }
    .attr-card-body h5 { font-size: 1rem; margin-bottom: .3rem; }
    .attr-card-body p { font-size: 16px; color: #666; line-height: 1.5; }

    /* ── PARALLAX BG SECTION ── */
    #parallax-section {
      position: relative;
      min-height: 480px;
      background: url('img/bcg.webp') center/cover fixed;
      display: flex; align-items: center; justify-content: center;
      text-align: center;
      overflow: hidden;            /* ← ADDED */
    }
    #parallax-section::before {
      content: '';
      position: absolute; inset: 0;
      background: rgba(10, 25, 18, .72);
    }
    .parallax-content { position: relative; z-index: 1; color: #fff; padding: 3rem 1.5rem; }
    .parallax-content h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
    .parallax-content p { font-size: 1rem; max-width: 580px; margin: 0 auto 2rem; color: rgba(255,255,255,.75); }
    .btn-outline-gold {
      border: 1.5px solid var(--gold);
      color: #ffffff;
      background: #e31b23;
      padding: .7rem 2.2rem;
      border-radius: 2px;
      font-size: .82rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      font-family: 'DM Sans', sans-serif;
      transition: background .25s, color .25s, transform .2s;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
    }
    .btn-outline-gold:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
    .btn-gold {
      background: var(--gold);
      color: #fff;
      border: 1.5px solid var(--gold);
      padding: .7rem 2.2rem;
      border-radius: 2px;
      font-size: .82rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      font-family: 'DM Sans', sans-serif;
      transition: background .25s, transform .2s;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
    }
    .btn-gold:hover { background: var(--gold-lt); color: #fff; transform: translateY(-2px); }

    /* pulse rings */
    .pulse-ring {
      position: absolute;
      border-radius: 50%;
      border: 2px solid rgba(200,160,80,.35);
      animation: pulseRing 3s ease-out infinite;
      pointer-events: none;
    }
    @keyframes pulseRing { 0% { transform: scale(.8); opacity: .6; } 100% { transform: scale(1.8); opacity: 0; } }

    /* ── FOOTER ── */
    #footer {
      background: #9d1318;
    color: #ecd07e;
      padding: 4rem 0 0;
    }
    .footer-logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--cream);
    }
	
    .footer-logo-text span { color: var(--gold); }
    .footer-tagline { font-size: .78rem; color: #face9b; letter-spacing: .1em; margin-top: .25rem; }
    #footer h6 { color: var(--gold); font-family: 'DM Sans', sans-serif; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1rem; }
    #footer ul { list-style: none; padding: 0; }
    #footer ul li { margin-bottom: .5rem; }
    #footer ul li a { color: #ffffff;
    text-decoration: none;
    font-size: 16px; transition: color .2s, padding-left .2s; }
    #footer ul li a:hover { color: var(--gold); padding-left: 6px; }
    .footer-contact-item { display: flex; gap: .75rem; margin-bottom: .9rem; align-items: flex-start; }
    .footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
    .footer-contact-item span { font-size: .82rem; color: #ffffff; line-height: 1.5; }
    .footer-social a {
      display: inline-flex; align-items: center; justify-content: center;
      width: 36px; height: 36px;
          border: 1px solid #7b7878;
    border-radius: 50%;
    color: #ffffff;
      font-size: .9rem;
      margin-right: .4rem;
      transition: background .25s, color .25s, border-color .25s, transform .2s;
    }
    .footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-3px); }
    .footer-bottom {
     border-top: 1px solid #c39c4e;
    margin-top: 3rem;
    padding: 1.2rem 0;
    font-size: .74rem;
    color: #f0fcf0;
    }
    .choice-badge {
      display: inline-flex; align-items: center; gap: .5rem;
      background: rgba(200,160,80,.1);
      border: 1px solid rgba(200,160,80,.2);
      border-radius: 2px;
      padding: .3rem .7rem;
      font-size: .72rem;
      color: var(--gold);
      letter-spacing: .08em;
    }

    /* ── SCROLL TO TOP ── */
    #scrollTop {
      position: fixed;
      bottom: 2rem; right: 2rem;
      width: 44px; height: 44px;
      background: var(--gold);
      color: #fff;
      border: none;
      border-radius: 50%;
      font-size: 1rem;
      cursor: pointer;
      z-index: 9999;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .3s, transform .3s, background .2s;
      display: flex; align-items: center; justify-content: center;
    }
    #scrollTop.show { opacity: 1; transform: translateY(0); }
    #scrollTop:hover { background: var(--gold-lt); }

    /* ── MISC ANIMATIONS ── */
    @keyframes floatY {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-12px); }
    }
    .float { animation: floatY 4s ease-in-out infinite; }

    @keyframes shimmer {
      0%   { background-position: -200% center; }
      100% { background-position: 200% center; }
    }
    .shimmer-line {
      background: linear-gradient(90deg, transparent 0%, rgba(200,160,80,.35) 50%, transparent 100%);
      background-size: 200% auto;
      animation: shimmer 3s linear infinite;
      height: 1px;
      margin: 1rem 0;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .hero-slide { height: 65vh; }
      .welcome-photo-stack { height: 260px; margin-bottom: 2rem; }
      .wp-main { height: 230px; }
      .welcome-frame { padding: 2rem 1.5rem; }
      .stat-row { gap: 1rem; }
      .slide-caption { padding: 2rem 1.5rem; }
      .slide-caption h2 { font-size: 1.8rem; }
      #topbar .d-none-sm { display: none !important; }
    }
    @media (max-width: 576px) {
      .hero-slide { height: 55vh; }
    }

    /* section-title shared */
    .section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.15; }

    /* quick facts strip */
    #quickfacts {
      background: var(--gold);
      padding: 0;
      position: relative; z-index: 2;
    }
    .fact-pill {
      display: flex; align-items: center; gap: .6rem;
      padding: .9rem 1.5rem;
      border-right: 1px solid rgba(255,255,255,.2);
      color: #fff;
      font-size: .78rem;
      letter-spacing: .04em;
    }
    .fact-pill:last-child { border-right: none; }
    .fact-pill i { font-size: 1rem; }

    /* checkin highlight */
    .ci-box {
      border-left: 3px solid var(--gold);
      padding-left: 1rem;
      margin: 1.5rem 0;
    }
    .ci-box p { font-size: .82rem; margin: 0; }
    .ci-box strong { color: #ffd787; }
	
	
	.title2{font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight:600;}
	  
	  .small, small {
    font-size: 14px;
}

.agileits_reservation {
    z-index: 999;
    background-image: linear-gradient(to bottom, #f1f7f417 16%, #5f3f0b 68%);
    padding: 1em;
    -webkit-box-shadow: 0px 1px 8px 0px rgb(24 24 23 / 42%);
    -moz-box-shadow: 0px 1px 8px 0px rgba(24, 24, 23, 0.42);
    box-shadow: 0px 5px 8px 5px rgb(24 24 23 / 42%);
    
    position: relative;
}
.span1_of_1 {
    float: left;
    list-style: none;
    /* width: 30.9%; */
    padding-top: 10px;padding-right: 15px;
    padding-left: 15px;
}
.agileits_reservation input[type="text"], select#adult, select#children, select#selrooms, .phone_email1 input[type="email"] {
    width: 100%;
    color: #1d6554;
    font-size: 14px;
    padding: 10px 20px 10px 20px;
    outline: none;
    background: #ffffff;
    border: 1px solid #ccc;    font-weight: 500;

}
.agileits_reservation em.bi {
    position: absolute;
    color: #ffb900;
    font-size: 0.9em;
    margin-top: 14px;
    margin-left: 5px;
}
.date_btn input[type="submit"] {
    text-transform: capitalize;
    width: 100%;
        background: #c81925;
    color: #ffffff;
    padding: 6px 0;
    border: none;
    font-size: 19px;
    outline: none;
    font-weight: 600;
    letter-spacing: 1px;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    transition: .5s all;
}
@media (max-width: 480px){
.agileits_reservation input[type="text"], select#adult, select#children, select#selrooms, .phone_email1 input[type="email"] {
    width: 100%;
    color: #1d6554;
    font-size: 15px;
    padding: 10px 46px 10px;
    outline: none;
    background: #ffffff;
    border: 1px solid #ccc;
}}

@media (max-width: 480px){
.col-xs-12.span1_of_1.book_date {
    width: 100% !important;
}
.agileits_reservation {
    z-index: 999;
    background-image: linear-gradient(to bottom, #f1f7f417 16%, #1c1d1cd1 68%);
    padding: 1em;
    -webkit-box-shadow: 0px 1px 8px 0px rgb(24 24 23 / 42%);
    -moz-box-shadow: 0px 1px 8px 0px rgba(24, 24, 23, 0.42);
    box-shadow: 0px 5px 8px 5px rgb(24 24 23 / 42%);
    margin-top: 20px!important;
    
}
}
@media only screen and (max-width: 768px){
.col-lg-2.col-sm-4.col-xs-12.span1_of_1.book_date.both {
    clear: both;
}

.agileits_reservation {
    z-index: 999;
    background-image: linear-gradient(to bottom, #f1f7f417 16%, #1c1d1cd1 68%);
    padding: 1em;
    -webkit-box-shadow: 0px 1px 8px 0px rgb(24 24 23 / 42%);
    -moz-box-shadow: 0px 1px 8px 0px rgba(24, 24, 23, 0.42);
    box-shadow: 0px 5px 8px 5px rgb(24 24 23 / 42%);
    margin-top: -197px;
    position: relative;
}
}
/* Modal Styles */
    .modal {
        display: none; /* Hidden by default */
        position: fixed; /* Stay in place */
        z-index: 10000; /* Sit on top */
        left: 0;
        top: 0;
        width: 100%; /* Full width */
        height: 100%; /* Full height */
        overflow: auto; /* Enable scroll if needed */
        background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
        justify-content: center;
        align-items: center;
    }

    .modal-content {
        background-color: #fefefe;
        margin: auto;
       padding: 60px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    border-radius: 8px;
    position: relative;
    text-align: justify;
    }

    .close-btn {
        color: #aaa;
        position: absolute;
        top: 15px;
        right: 25px;
        font-size: 35px;
        font-weight: bold;
        cursor: pointer;
    }

    .close-btn:hover,
    .close-btn:focus {
        color: black;
        text-decoration: none;
    }

    .modal-content ul {
        list-style: none;
        padding-left: 0;
    }

    .modal-content ul li {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 10px;
        padding-left: 30px;
        position: relative;
    }
    
    .modal-content .ri-check-double-line {
        color: #024d89;
        font-size: 24px;
        position: absolute;
        left: 0;
        top: 2px;
    }

    .modal-content h2 {
        text-align: center;
        margin-bottom: 20px;
    }









/* ===================================================================
   --- 1. UNIQUE AMENITIES SECTION ---
   =================================================================== */

.amenities-unique {
  position: relative;
  padding: 10px 20px; 
  overflow: hidden;
  /* Optional: Animation for background */
  animation: gradientShift 12s ease infinite;
}

.amenities-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Style */
.amenity-item {
  background: #fff;
  padding: 40px 25px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border-top: 4px solid transparent;
}

.amenity-item:hover {
  transform: translateY(-12px) scale(1.02);
  /* UPDATED: Hover border now uses the new accent color */
  border-top: 4px solid #c8a050;
  /* UPDATED: Hover shadow uses a subtle version of the new primary color */
  box-shadow: 0 20px 45px rgba(157, 19, 24, 0.2); 
}

/* Icon Circle */
.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  /* UPDATED: Icon background uses the new accent color */
  background: #c8a050; 
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  /* UPDATED: Icon color for contrast with the new background */
  color: #9d1318; 
  transition: all 0.4s ease;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.amenity-item:hover .icon-circle {
  /* UPDATED: Icon hover background uses the new primary color */
  background: #9d1318;
  /* UPDATED: Icon hover color for contrast */
  color: #fff;
  /* UPDATED: Hover shadow effect using the new accent color for a 'glow' */
  box-shadow: 0 0 25px rgba(200, 160, 80, 0.6); 
}

.amenity-item h3 {
  font-size: 1.4rem;
  color: #9d1318;
  margin-bottom: 10px;
  font-weight: 400;
  text-transform: uppercase;
}

.amenity-item p {
  font-size: 0.95rem;
  color: #000000;
  line-height: 1.6;
}

/* Background decorative overlay */
.amenities-unique::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  /* UPDATED: Overlay with a transparent version of the new accent color */
  background: rgba(200, 160, 80, 0.1); 
  border-radius: 50%;
  z-index: 0;
}

.amenities-unique::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  /* UPDATED: Overlay with a transparent version of the new accent color */
  background: rgba(200, 160, 80, 0.15); 
  border-radius: 50%;
  z-index: 0;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== Responsive for Unique Amenities ===== */
@media (max-width: 992px) {
    .amenities-grid-page {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .amenities-grid-page {
        grid-template-columns: 1fr;
    }
    .amenity-item h3 {
        font-size: 1.2rem;
    }
    .amenity-item {
        padding: 30px 20px;
    }
}

/* ===================================================================
   --- 2. ROOM AMENITIES SHOWCASE ---
   =================================================================== */

/* General styling for the section */
.room-amenities-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffffff;
}

/* Styling for the main heading */
.room-amenities-section h2 {
    font-size: 3em;
    /* UPDATED: New primary color for heading */
    color: #9d1318; 
    margin: 0 0 20px 0;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

/* The underline for the heading */
.room-amenities-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    /* UPDATED: New accent color for underline */
    background-color: #c8a050;
}

/* Flex container for the columns */
.room-amenities-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

/* Styling for the text columns */
.room-amenities-column {
    flex: 1;
    max-width: 250px;
}

.room-amenities-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.room-amenities-column li {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 25px;
}

/* Align text away from the central image */
.room-amenities-column.left {
    text-align: right;
}

.room-amenities-column.right {
    text-align: left;
}

/* Container for the central image */
.room-amenities-image-container {
   flex-shrink: 0;
}

/* Styling for the circular room image */
.room-amenities-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ===== Responsive for Room Amenities ===== */
@media (max-width: 768px) {
    .room-amenities-section h2 {
        font-size: 2.2em;
    }
    .room-amenities-layout {
        gap: 30px;
        flex-direction: column;
    }
    .room-amenities-image {
        width: 250px;
        height: 250px;
        margin-bottom: 20px;
    }
    .room-amenities-column {
        max-width: 100%;
        text-align: center !important; /* Center text on mobile */
    }
    .room-amenities-column li {
        font-size: 1.1em;
        margin-bottom: 15px;
    }
    /* Reverse the order to show left text, then image, then right text */
    .room-amenities-layout .room-amenities-column.left {
        order: 1;
    }
    .room-amenities-layout .room-amenities-image-container {
        order: 2;
    }
     .room-amenities-layout .room-amenities-column.right {
        order: 3;
    }
}


/* =================================================================
   1. STYLES FOR THE "ATTRACTIONS" SECTION
   ================================================================= */


   /* App Layout */
.New-attraction-app-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 2rem 1rem;
    margin-top: -50px;
}

.New-attraction-attraction-quality-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 600px) {
    .New-attraction-attraction-quality-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- MODIFIED DESKTOP STYLES --- */
@media (min-width: 1024px) {
    .New-attraction-attraction-quality-cards {
        grid-template-columns: repeat(6, 1fr);
    }
    .New-attraction-card:nth-child(-n+3) {
        grid-column: span 2;
    }
    .New-attraction-card:nth-child(4) {
        grid-column: 2 / span 2;
    }
    .New-attraction-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}
/* --- END OF MODIFIED STYLES --- */


/* Card Styles */
.New-attraction-card {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.New-attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(200, 160, 80, 0.1);
}

.New-attraction-card-image-container {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.New-attraction-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.New-attraction-card:hover .New-attraction-card-image {
    transform: scale(1.05);
}

.New-attraction-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.New-attraction-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #9d1318;
}

.New-attraction-card-description {
    font-size: 1rem;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.New-attraction-card-details {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #000000;
}

.New-attraction-card-details li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.New-attraction-card-details li + li {
    margin-top: 0.75rem;
}

/* --- UPDATED STYLES FOR ICONS AND LINKS --- */

.New-attraction-card-details i {
    color: #c8a050;
    font-size: 16px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.New-attraction-card-details a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.New-attraction-card-details a:hover {
    color: #c8a050;
}


/* =================================================================
   3. LOCATION SECTION
   ================================================================= */
.location-container {
    width: 100%;
    max-width: 100%;
    padding: 40px 0;
    background: white;
}
.location-title {
    text-align: center;
    color: #9d1318;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}
.location-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #c8a050;
}
.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 90%;
    margin: 0 auto;
    align-items: stretch;
}
.location-info {
    flex: 1;
    min-width: 300px;
}
.coordinates-box {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(157, 19, 24, 0.1);
    border: 1px solid rgba(157, 19, 24, 0.1);
}
.coordinates-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #9d1318;
}
.coordinate {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 12px;
}
.coordinate i {
    color: #c8a050;
    font-size: 1.2rem;
}
.directions-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(157, 19, 24, 0.1);
    border: 1px solid rgba(157, 19, 24, 0.1);
}
.directions-form label {
    color: #9d1318;
    text-align: left;
}
.directions-form input {
    padding: 9px;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.directions-form input:focus {
    outline: none;
    border-color: #9d1318;
    box-shadow: 0 0 0 3px rgba(157, 19, 24, 0.2);
}
.directions-form button {
    background: #9d1318;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.directions-form button:hover {
    background: #c8a050;
    color: #ffffff;
    transform: translateY(-2px);
}
.location-map {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(157, 19, 24, 0.1);
    border: 1px solid rgba(157, 19, 24, 0.1);
    transition: transform 0.3s ease;
}
.location-map:hover {
    transform: translateY(-5px);
}
.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
@media (max-width: 768px) {
    .location-content {
      flex-direction: column;
    }
    .location-info, .location-map {
      width: 100%;
    }
}


/* =================================================================
   4. CONTACT SECTION
   ================================================================= */
.content-wrapper {
    display: flex;
    gap: 30px;
    padding: 30px;
}
.contact-card {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
    height: auto;
}
@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.contact-card h2 {
    color: #9d1318;
    margin-bottom: 25px;
    position: relative;
}
.contact-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #c8a050;
}
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}
.info-item em {
    color: #c8a050;
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 25px;
}
.info-text .title {
    margin-bottom: 5px;
    color: #9d1318;
}
.info-text p, .info-text a {
    text-decoration: none;
    color: #000000;
    transition: color 0.3s;font-size: 20px;
    font-weight: 500;
}
.info-text a:hover {
    color: #9d1318;
}
.map-container {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
    height: 450px;
}
.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    .contact-card, .map-container {
        width: 100%;
        height: auto;
    }
    .map-container {
        height: 350px;
    }
}


/* =================================================================
   5. HOTEL NAVIGATION SECTION
   ================================================================= */
#hotel-navigation-section .container {
    margin: 0 auto;
    padding: 0 20px;
}
#hotel-navigation-section .navigation-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#hotel-navigation-section .nav-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
#hotel-navigation-section .nav-item {
    display: flex;
    height: 100%;
}
#hotel-navigation-section .nav-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #9d1318;
    text-decoration: none;
    background: white;
    border-radius: 8px;
    padding: 25px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #c8a050;
    height: 120px;
}
#hotel-navigation-section .nav-link:hover {
    background: #9d1318;
    color: white;
    box-shadow: 0 8px 16px rgba(157, 19, 24, 0.2);
    transform: translateY(-3px);
}
#hotel-navigation-section .nav-link:hover .nav-desc {
    color: #ffffff;
}
#hotel-navigation-section .nav-icon {
    font-size: 24px;
    margin-bottom: 12px;
    color: #c8a050;
    transition: all 0.3s ease;
}
#hotel-navigation-section .nav-link:hover .nav-icon {
    color: white;
    transform: scale(1.1);
}
#hotel-navigation-section .nav-text {
    margin-bottom: 5px;
}
#hotel-navigation-section .nav-desc {
    opacity: 0.8;
    color: #000000;
    transition: all 0.3s ease;
}
@media (max-width: 992px) {
    #hotel-navigation-section .nav-row {
        grid-template-columns: repeat(2, 1fr);
    }
    #hotel-navigation-section .nav-link {
        height: 110px;
        padding: 20px 10px;
    }
}
@media (max-width: 576px) {
    #hotel-navigation-section .nav-row {
        grid-template-columns: 1fr;
    }
    #hotel-navigation-section .nav-link {
        height: 100px;
        padding: 15px 10px;
    }
    #hotel-navigation-section {
        padding: 30px 0;
    }
}


/* =================================================================
   6. FAQ SECTION
   ================================================================= */
.faq-section {
    margin: 20px auto;
    padding: 0 20px;
}
.faq-header {
    text-align: center;
    margin-bottom: 40px;
}
.faq-header h2 {
    color: #9d1318;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #9d1318, #c8a050);
    border-radius: 2px;
}
.faq-header p {
    color: #000000;
    max-width: 700px;
    margin: 0 auto;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
}
.faq-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 4px solid #9d1318;
}
.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.faq-question {
    padding: 25px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
}
.faq-icon {
    width: 40px;
    height: 40px;
    background: #c8a050;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 18px;
}
.faq-question-text {
    color: #000000;
}
.faq-answer {
    padding: 25px;
    position: relative;
}
.faq-answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(to right, transparent, #9d1318, transparent);
}
.faq-answer p {
    margin: 0;
    color: #000000;
}
.faq-answer a {
    color: #9d1318;
    text-decoration: none !important;
}
.faq-answer a:hover {
    color: #c8a050;
    border-bottom-color: #c8a050;
}
.faq-answer .fa-caret-right {
    color: #c8a050;
    margin-right: 8px;
}
@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-question, .faq-answer {
        padding: 20px;
    }
}



.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 0px auto;
    padding: 20px;
    margin-top: -40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    /* Shadow using a transparent version of the dark red */
    box-shadow: 0 4px 8px rgba(157, 19, 24, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the container without distortion */
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Hover effect on gallery thumbnails */
.gallery-item:hover {
    transform: translateY(-5px);
    /* A deeper shadow on hover */
    box-shadow: 0 8px 16px rgba(157, 19, 24, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* --- Lightbox Styling --- */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark red semi-transparent background */
    background-color: rgba(157, 19, 24, 0.9);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;

    /* Animation: Fade-in effect */
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

/* This class will be added by JavaScript to show the lightbox */
.lightbox.active {
    visibility: visible;
    opacity: 1;
}

/* Animation: Zoom-in effect for the image */
#lightbox-img {
    max-width: 90vw;
    max-height: 80vh;  /* Adjusted max-height to make room for caption */
    object-fit: contain;
    border-radius: 5px;
    /* Soft shadow with the dark red color */
    box-shadow: 0 10px 25px rgba(157, 19, 24, 0.5);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active #lightbox-img {
    transform: scale(1);
}

/* Caption with the new gold text color */
#lightbox-caption {
    text-align: center;
    /* Gold color for text */
    color: #c8a050;
    padding: 10px 0;
    margin-top: 10px;
    font-size: 1.1em;
    transition: opacity 0.4s ease-in-out; /* Fades in with lightbox */
}


/* Navigation & Close Buttons with the new gold color */
.close-btn, .prev-btn, .next-btn {
    position: absolute;
    /* Gold color for icons/text */
    color: #c8a050;
    cursor: pointer;
    font-weight: bold;
    user-select: none; /* Prevents text selection */
    transition: color 0.2s ease;
}

/* Match the exact primary hover to abide by limits safely */
.close-btn:hover, .prev-btn:hover, .next-btn:hover {
    color: #c8a050;
}

.close-btn {
    top: 20px;
    right: 35px;
    font-size: 40px;
}

.prev-btn, .next-btn {
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    padding: 16px;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}