body { margin:0; font-family:'Lato', sans-serif; color:#333; }
nav { position:fixed; top:0; width:100%; background-color: #f7ead1; padding:15px; text-align:center; z-index:1000; }
nav a { margin:0 15px; text-decoration:none; color:#333; font-weight:600; }
nav a:hover { color:#c49b66; }

.book-btn {
  position: fixed;       
  top: 5px;             
  right: 5px;           
  background: #c49b66;  
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  z-index: 1000;        
  transition: background 0.3s ease;
}

.book-btn:hover {
  background: #a67c52;
}

.info-pill {
  position: fixed;
  top: 4px;             
  left: 4px;     
  z-index: 3000;

  display: flex;
  align-items: center;
  gap: 8px;

  background:  #c49b66;  
  color: #fff;
  font-weight: bold;
  font-size: 14px;

  border-radius: 30px;
  padding: 10px 16px;
  cursor: pointer;
  border: none;

  transition: transform 0.3s ease;
}

.info-pill img {
  width: 20px;
  height: 20px;
}

.info-pill:hover {
  transform: scale(1.05);
}

/* Modal styling */
.modal {
  display: none; /* hidden by default */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 4000;

  /* only used when opened */
  align-items: center;
  justify-content: center;
}


.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease;
}

.modal-content h2 {
  margin-top: 0;
  text-align: center;
  color: #333;
}

.info-section {
  margin: 15px 0;
}

.info-section h3 {
  margin-bottom: 8px;
  color: #444;
}

.facility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.facility-card {
  background: #f9f9f9;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: left;
}

.facility-card strong {
  display: block;
  margin-bottom: 6px;
  color: #333;
  font-size: 1rem;
}

.facility-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.close {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
}


.hero { background: url('HBG.png') center/cover no-repeat; background-attachment: scroll; /* ensures it moves with the page */ height: 78vh; display: flex; align-items: center; justify-content: center; color: #faf3dd; position: relative;}
.hero .overlay { background:rgba(0,0,0,0.4); padding:40px; border-radius:25px; text-align:center; }
h1,h2,h3 { font-family:'Cormorant Garamond', serif; }

.hero-contact { background:url('Garden&Terrace2.jpg') center/cover no-repeat; height: 100vh; display:flex; align-items:center; justify-content:center; color:#faf3dd; position:relative; }
.hero-contact .overlay { background:rgba(0,0,0,0.4); padding:40px; border-radius:25px; text-align:center; }

.footer {
  display: flex;
  justify-content: space-between;
      background-color: #ffffff;
  align-items:center ;
  padding: 15px 30px;
  color: #000000;
}

.footer-bg {
    background-color: #494343;
}

.footer-left p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-right .icon {
  margin-left: 15px;
  text-decoration: none;
  font-size: 1.2rem;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-right .icon:hover {
  color: #ffd700; /* gold hover effect */
}

.cta {
  background:#c49b66;
  padding:12px 30px;
  color:white;
  text-decoration:none;
  border-radius:50px; /* curved pill style */
  transition:background 0.3s;
  font-weight:bold;
}
.cta:hover { background:#a67c52; }

.whatsapp-pill {
  position: fixed;
  top: 5px;             
  right: 135px;     
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 8px;

  background: #25D366; /* WhatsApp green */
  color: #fff;
  font-weight: bold;
  font-size: 14px;

  border-radius: 30px; /* curved pill shape */
  padding: 10px 16px;
  text-decoration: none;

  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.whatsapp-pill img {
  width: 20px;
  height: 20px;
}

.whatsapp-pill:hover {
  transform: scale(1.05);
}

section { padding:1px 20px; text-align:center; }

.home-desc {
  padding:1px 20px; 
  text-align: center;
}

.text-align {
  text-align: left;
}

.gallery {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.gallery-item {
  width:250px;
  text-align:center;
}

.gallery-item img {
  gap: 20px;
  width:100%;
  border-radius:8px;
}

.caption {
  margin-top:8px;
  font-size:0.9rem;
  color:#555;
  font-style:italic;
}

.home-gallery-preview {
  margin: 40px 0;
  text-align: center;
}

.home-gallery-preview h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  color: #333;
}

.home-gallery-preview p {
  margin-bottom: 20px;
  color: #666;
}

.preview-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 12px;
}

.preview-row img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.preview-row img:hover {
  transform: scale(1.05);
}

.fade-in { opacity:0; transform:translateY(30px); transition:opacity 1s ease, transform 1s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }

.location {
  background-color: #f5f0e6; /* soft beige backdrop */
  padding: 60px 20px;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 1000px;
}

.map-container {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin-top: 20px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.amenity {
  background: #f9f9f9;       /* light background */
  border-radius: 8px;        /* rounded corners */
  padding: 16px;             /* space inside */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* subtle shadow */
}

.amenity h3 {
  margin-top: 0;
  font-size: 1.2em;
  color: #333;
}

.amenity ul {
  list-style-type: none;     /* remove default bullets */
  padding-left: 0;
  margin: 0;
}

.amenity li {
  margin-bottom: 6px;
}

/* Smooth fade + slide */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Button hover glow */
.cta {
  background:#c49b66;
  padding:12px 30px;
  color:white;
  text-decoration:none;
  border-radius:50px;
  transition:background 0.3s, box-shadow 0.3s;
  font-weight:bold;
}
.cta:hover {
  background:#a67c52;
  box-shadow:0 4px 12px rgba(0,0,0,0.3);
}

/* Gallery zoom effect */
.gallery img {
  width:250px;
  border-radius:8px;
  transition:transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery img:hover {
  transform:scale(1.05);
  box-shadow:0 6px 16px rgba(0,0,0,0.2);
}

.room-preview {
  background-color: #f5f0e6; /* soft beige for contrast */
  padding: 80px 20px;
}

.room-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.room-item {
  width: 300px;
  text-align: center;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s ease;
}

.room-item:hover {
  transform: translateY(-5px);
}

.room-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.room-item h3 {
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 10px;
}

.room-item p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.room-section {
  padding: 60px 20px;
  background-color: #f5f0e6;
  font-family: 'Helvetica Neue', sans-serif;
}

.room-card {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  padding: 40px;
}

.room-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.Room-desc {
   flex: 1;
  min-width: 300px;
  text-align: justify;
}

.room-text h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.amenities-rooms {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  columns: 2;
  font-size: 0.95rem;
  color: #444;
}

.amenities-rooms li {
  margin-bottom: 8px;
  text-align: left;
}

.room-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.cta {
  display: inline-block;
  padding: 12px 24px;
  background-color: #c49b66;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
}

.room-image {
  flex: 1;
  min-width: 300px;
}

.room-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Mobile-first adjustments */
@media (max-width: 768px) {
  /* Navigation */
  nav {
    padding: 10px;
    text-align: left; /* align links for easier tap targets */
  }
  nav a {
    display: block;
    margin: 10px 0;
    font-size: 1rem;
  }

  /* Hero section */
  .hero {
    height: 70vh; /* reduce height for mobile */
    background-position: center;
  }
  .hero .overlay {
    padding: 20px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .cta {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  /* Sections */
  section {
    padding: 40px 15px;
  }

  /* Gallery */
  .gallery {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .gallery-item {
    width: 90%; /* full width on mobile */
  }

  /* Amenities grid */
  .amenities-grid {
    flex-direction: column;
    gap: 20px;
  }
  .amenity {
    width: 100%;
  }

  /* Room previews */
  .room-grid {
    flex-direction: column;
    gap: 20px;
  }
  .room-item {
    width: 100%;
  }

  /* Room card layout */
  .room-card {
    flex-direction: column;
    padding: 20px;
  }
  .room-text h1 {
    font-size: 1.5rem;
  }
  .amenities {
    columns: 1; /* single column for mobile */
  }
}

body {
  font-family: Arial, sans-serif;
  margin:0;
  padding:0;
}

.room-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
  background: #f5f0e6;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.room-text { flex: 1; }
.room-image { flex: 1; max-width: 400px; cursor: pointer; }
.room-image img { width: 100%; border-radius: 12px; }

/* Modal */
.gallery-modal {
  display: none; /* ✅ hidden by default */
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.8);
  z-index: 3000;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.gallery-slide {
  text-align: center; /* ✅ centers caption and counter */
}

.gallery-slide img {
  max-width: 90%;
  max-height: 80vh;
  margin: 0 auto;       /* ✅ centers the image horizontally */
  display: block;       /* ✅ ensures margin:auto works */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.caption {
  color: white;
  text-align: center;
  margin-top: 10px;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 2rem;
  color: white;
  padding: 16px;
  user-select: none;
}

.prev { left: 20px; }
.next { right: 20px; }

.close {
  position: absolute;
  top:20px; right:30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Fade effect */
.fade {
  animation-name: fade;
  animation-duration: 0.6s; /* speed of fade */
}

@keyframes fade {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

/* ✅ Mobile adjustments */
@media (max-width: 768px) {
  .room-box {
    flex-direction: column;   /* stack text above image */
    align-items: center;      /* center content horizontally */
    text-align: left;         /* keep text flush left */
  }

  .room-text {
    width: 100%;
    margin-bottom: 20px;
  }

  .room-image {
    width: 100%;
    max-width: 100%;          /* image fills screen width */
  }

  .room-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  /* Modal images scale down nicely */
  .gallery-slide img {
    max-width: 95%;           /* fit smaller screens */
    max-height: 60vh;         /* avoid covering entire screen */
  }

  /* Arrows closer to edges on mobile */
  .prev, .next {
    font-size: 1.5rem;
    padding: 10px;
  }

  /* Caption text smaller */
  .caption {
    font-size: 0.9rem;
    padding: 0 10px;
  }
}

/* ✅ Mobile adjustments */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;   /* stack text above image */
    text-align: center;
    padding: 20px;
  }

  .hero-text {
    width: 100%;
    margin-bottom: 20px;
  }

  .hero-image {
    width: 100%;
    max-width: 100%;
  }

  .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  nav ul {
    flex-direction: column;   /* stack nav links */
    gap: 10px;
  }

  .cta {
    display: block;
    width: 100%;              /* full-width buttons */
    margin: 10px 0;
  }
}
.rooms-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  background: url("DB1.jpg") center center / cover no-repeat; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-overlay {
  background: rgba(0,0,0,0.4);
  padding: 20px 40px;
  border-radius: 8px;
  text-align: center;
}

.hero-overlay h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-overlay p {
  color: #f5f0e6;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #c49b66;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background: #a67c52;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .rooms-hero {
    height: 40vh;
    background-position: center; /* ✅ ensures image is centered */
  }
  .hero-overlay h1 {
    font-size: 1.8rem;
  }
  .hero-overlay p {
    font-size: 1rem;
  }
}

/* Initial hidden state */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* When visible */
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-hero {
  position: relative;
  width: 100%;
  height: 100vh; /* ✅ full screen height */
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* ✅ fills screen */
  object-position: center; /* ✅ keeps image centered */
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.4);
  padding: 20px 40px;
  border-radius: 8px;
  text-align: center;
}

.hero-overlay h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-overlay p {
  color: #f5f0e6;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #c49b66;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background: #a67c52;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 2rem;
  }
  .hero-overlay p {
    font-size: 1rem;
  }
}
.rooms-heros {
  height: 100vh; /* full screen */
  background: url('DBP.jpg') center/cover no-repeat;
  position: relative;
}

.rooms-overlays {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(0,0,0,0.4); /* semi-transparent overlay */
  padding: 20px 40px;
  border-radius: 8px;
  color: #fff;
}

.rooms-overlays h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.rooms-overlays p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.rooms-overlays .cta {
  background: #c49b66;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.rooms-overlays .cta:hover {
  background: #a67c52;
}