/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  /* Body */
  body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom right, #fdf6e3, #ffe0b2, #fbc02d);
    background-attachment: fixed;
    font-size: 18px; /* increased base font size */
  }
  
 /* Header - Fixed at top */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: radial-gradient(circle at top, #fff3e0, #ffe082);
  color: #b56c00;
  text-align: center;
  padding: 10px 20px;   /* less height */
  box-shadow: 0 0 20px rgba(255, 215, 64, 0.5);
}
header h1 {
  font-size: 2.5rem;
}

header p {
  font-size: 1.4rem;
}


/* Make space automatically under fixed header */
body {
  padding-top: var(--header-height);
}

/* Fallback if JS isn't loaded */
body {
  padding-top: 120px; /* Approx header height */
}


  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .branding {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .branding img {
    height: 100px;
  }
  nav {
    display: flex;
    gap: 20px;
  }
  nav a {
  color: #b56c00;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem; /* Bigger nav text */
}

  nav a:hover {
    color: #ff8f00;
  }
  
  /* Sections */
  .section-container {
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto 20px auto; /* 20px gap between sections */
  }
  .section-container h2 {
    margin-bottom: 30px;
    text-align: center;
    color: #5d4037;
    font-size: 1.8rem; /* bigger heading */
  }
  
  /* About Section */
  .about-section {
    margin-top: 30px;   /* space between header and about */
    padding-top: 30px;  /* internal padding */
  }

  
  .about-content {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .about-text {
    flex: 1;
    min-width: 300px;
    font-size: 1.25rem; /* bigger text */
    line-height: 1.7;
    color: #4e342e; /* optional darker text */
  }
  
  .about-image {
    flex: 1;
    min-width: 300px;
  }
  
  .about-image img {
    width: 100%;
    height: auto;              /* keep natural height */
    object-fit: contain;       /* show the full image */
    border-radius: 12px;
    display: block;
    transition: transform 0.4s ease;
  }
  
  .about-image img:hover {
    transform: scale(1.05);
  }
  
   
  /* Mobile layout: stack */
  @media (max-width: 768px) {
    .about-content {
      flex-direction: column;
    }
    .about-image img {
      max-height: none;
    }
    .about-text {
      font-size: 1.3rem;
    }
    .section-container h2 {
      font-size: 2.2rem;
    }
  }
  
  /* Contact */
  .contact-section {
    background: #ffe0b6;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  .contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  .map-link {
    color: #6a1b9a;
  }
  
/* Modern Rooms */
.rooms-modern h2 {
  margin-bottom: 20px;
}

/* Responsive grid */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* was 280px */
  gap: 16px;
}

/* Mobile optimization */
@media (max-width: 480px) {
  .room-card__body {
    padding: 12px 12px 14px;
  }
  .room-card__title h3 {
    font-size: 1rem;
  }
  .room-card__title .price {
    font-size: 0.95rem;
  }
  .pill-list li {
    font-size: 0.8rem;
    padding: 4px 8px;
  }
  .view-all-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* Card */
.room-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* Media (robust 3:2 ratio) */
.room-card__media {
  position: relative;
  display: block;
  overflow: hidden;
}
.room-card__media::before {
  content: "";
  display: block;
  padding-top: 66.6667%; /* 3:2 ratio */
}
.room-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .35s ease;
}
.room-card:hover .room-card__media img {
  transform: scale(1.06);
}

/* hide extra anchors used for Lightbox grouping */
.room-card__hidden {
  display: none !important;
}

.room-card__body {
  padding: 16px 16px 18px;
}

/* Title + price row */
.room-card__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.room-card__title h3 {
  margin: 0;
  font-size: 1.15rem;
  color: #5d4037;
}
.room-card__title .price {
  font-weight: 700;
  color: #d35400;
  white-space: nowrap;
}

/* Feature pills */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 14px 0;
  padding: 0;
}
.pill-list li {
  background: #fff3e0;
  color: #8d6e63;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.9rem;
}

/* CTAs */
.cta-row {
  display: flex;
  gap: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease;
  border: 1px solid transparent;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(135deg, #ffb74d, #ff9800);
  color: #3e2723;
  box-shadow: 0 6px 16px rgba(255, 152, 0, 0.28);
}
.btn-primary:hover { box-shadow: 0 8px 22px rgba(255, 152, 0, 0.35); }

.btn-outline {
  background: #fff;
  color: #5d4037;
  border-color: rgba(0,0,0,0.12);
}
.btn-outline:hover {
  background: #fff7e6;
  border-color: rgba(0,0,0,0.18);
}

/* Small tweaks on very small screens */
@media (max-width: 380px) {
  .room-card__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
.view-all-btn {
  display: inline-block;
  background: #ff9800;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.view-all-btn:hover {
  background: #e68a00;
}



  
  /* Attractions */
  .attraction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 20px;
  }
  .attraction-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  .attraction-card:hover {
    transform: translateY(-5px);
  }
  .attraction-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
  }
  .attraction-card div {
    padding: 15px;
  }
  
  /* Amenities */
  .amenities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .amenity-card {
    flex: 1 1 180px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    transition: 0.3s ease;
  }
  .amenity-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
/* Group discount only */
.two-column {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.discount-section {
    flex: 0 1 550px;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Hover glow effect */
.discount-section:hover {
    box-shadow: 0 6px 16px rgba(255, 165, 0, 0.4);
    transform: translateY(-3px);
}

/* Heading style */
.discount-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Price style */
.discount-price {
    font-size: 18px;
    font-weight: 500;
    margin: 8px 0;
}

.discount-price span {
    font-size: 26px;
    font-weight: bold;
    color: #d35400;
}

/* Remove bullets */
.discount-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Mobile friendly */
@media (max-width: 600px) {
    .discount-section {
        flex: 1 1 100%;
    }
}



  /* .whatsapp-section {
    background: #e8f5e9;
    text-align: center;
  }
  .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
  }
  .btn-whatsapp img {
    width: 24px;
    height: 24px;
  } */
  
  /* Pricing */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 15px;
  }
  .pricing-card {
    background: white;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
  }
  .price {
    font-weight: bold;
  }
  
  /* QR */
  .qr-section {
    background: linear-gradient(135deg, #6a1b9a, #8e24aa);
    text-align: center;
    color: white;
    border-radius: 12px;
    padding: 15px;
  }
  .qr-box {
    background: white;
    padding: 8px;
    border-radius: 8px;
    display: inline-block;
  }
  .qr-box img {
    width: 130px;
  }
  
  /* Footer */
  footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    margin-top: 30px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    nav {
      flex-wrap: wrap;
      justify-content: center;
    }
    .about-content {
      flex-direction: column;
    }
  }
/* Hide hamburger on desktop */
.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #b56c00; /* matches site text color */
    background: transparent;
    padding: 10px 15px;
    transition: transform 0.3s ease;
    z-index: 1001;
  }
  
  /* Active (X icon) */
  .menu-toggle.active {
    transform: rotate(90deg);
  }
  
  /* Overlay (dim background) */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* dim effect */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 998;
  }
  
  .menu-overlay.show {
    opacity: 1;
    visibility: visible;
  }
  
  /* Sidebar menu for mobile */
  @media (max-width: 768px) {
    nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 250px;
      height: 100%;
      background: linear-gradient(to bottom right, #fdf6e3, #ffe0b2, #fbc02d);
      display: flex;
      flex-direction: column;
      gap: 0;
      padding-top: 60px;
      transition: right 0.3s ease;
      z-index: 999;
    }
  
    nav a {
      color: #5d4037; /* darker text to match site */
      padding: 15px 20px;
      border-bottom: 1px solid rgba(0,0,0,0.1);
      text-decoration: none;
      font-weight: bold;
    }
  
    nav a:hover {
      background: rgba(255,255,255,0.3);
    }
  
    nav.showing {
      right: 0;
    }
  }
/* Hide hamburger by default (desktop) */
  .menu-toggle {
    display: none !important; /* hide everywhere by default */
  }
  
  /* Show only on mobile */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block !important;
      font-size: 1.8rem;         /* slightly smaller */
      cursor: pointer;
      color: #b56c00;
      background: transparent;
      padding: 5px 10px;         /* less padding */
      transition: transform 0.3s ease;
      z-index: 1001;
      position: fixed;
      top: 8px;                  /* moved higher */
      right: 15px;
    }
  }
  /* Container to hold text + button */
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
}

/* Text beside the button */
.whatsapp-text {
    background-color: #25d366;
    color: white;
    padding: 8px 14px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    white-space: nowrap;
}

/* WhatsApp button */
.whatsapp-float {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Pulse + Bounce Animation */
    animation: pulseBounce 2.5s ease-in-out infinite;
    transition: transform 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Pulse + Bounce Animation */
@keyframes pulseBounce {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    30% {
        transform: scale(1.05) translateY(-3px);
    }
    50% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0.0);
    }
    70% {
        transform: scale(1) translateY(0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.0);
    }
}



  
    