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;
}

.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);
}


.notice-btn {
  position: fixed;
  top: 6px;
  left: 5px; /* opposite of Book Now */
  background: #c49b66;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

.notice-btn:hover {
  background: #a67c52;
}

.notice-box {
  position: fixed;
  top: 55px;       /* just below the button */
  left: 5px;
  background: #c49b66; /* light red background */
  color: #000000;
  padding: 10px 15px;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  max-width: 250px;
  display: none;   /* hidden by default */
  z-index: 1000;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s ease; /* smooth slide animation */
}

.notice-box.show {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.close-btn {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Header */
.gallery-header {
  text-align: center;
  margin: 60px 0 20px;
}
.gallery-header h1 {
  font-size: 2.5rem;
}
.gallery-header p {
  font-size: 1.2rem;
  color: #555;
}

/* Thumbnail strip */
.thumbnail-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;

}

.thumbnail-strip img {
  width: 100%;
  height: 150px;
  object-fit: cover;


}

.thumbnail-strip img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.featured-row {
  display: grid;
  grid-template-columns: 2fr 1fr; /* big image takes 2/3, small stack 1/3 */
  gap: 10px;
  margin-bottom: 20px;
}

.big-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.small-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.small-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}

.thumbnail-grid img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
}

/* Modal */
.modal {
  display: none; /* must be none by default */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.modal-content img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 8px;
}

.modal-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* centers everything horizontally */
  justify-content: center;
}

.counter {
  color: #fff;
  margin-top: 10px;
  font-size: 1rem;
  text-align: center; /* ensures text itself is centered */
  width: 100%;        /* makes sure it spans full width */
}

/* Controls */
.close, .prev, .next {
  position: absolute;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
}

.close { top: 20px; right: 25px; }
.prev { left: 20px; top: 50%; transform: translateY(-50%); }
.next { right: 20px; top: 50%; transform: translateY(-50%); }

.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 */
.infomodal {
  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;
}


.infomodal-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;
}

.infomodal-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;
}

.footer {
  display: flex;
  justify-content: space-between;
  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 */
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .thumbnail-strip img {
    height: 35px; /* even smaller thumbnails */
  }
  .modal-content img {
    max-width: 95vw;
    max-height: 70vh;
  }
}