<!-- Custom CSS -->
<style>
:root {
  --hotel-red: #D62828;
  --hotel-gold: #FFD43B;
  --hotel-blue: #48CAE4;
  --hotel-offwhite: #FAFAFA;
  --hotel-dark: #000;
  --hotel-lightgray: #f8f9fa;
  --hotel-softgold: #fdf6e3;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #FAFAFA;
  scroll-behavior: smooth;
  color: #000;
}

/* Navbar */
.navbar {
  background-color: #fff;
  transition: all 0.3s ease;
}
.navbar .nav-link {
  color: #000;
  font-weight: 500;
  position: relative;
}
.navbar .nav-link::after {
  content: '';
  width: 0;
  height: 2px;
  background-color: #D62828;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s;
}
.navbar .nav-link:hover::after {
  width: 100%;
}
.navbar .btn-book {
  background-color: #FFD43B !important;
  color: #000;
  font-weight: 600;
  border-radius: 25px;
  padding: 8px 20px;
  transition: transform 0.3s;
}
.navbar .btn-book:hover {
  transform: scale(1.05);
}

/* Hero Section */
.hero {
  height: 550px;
  background: url('../img/banner2.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero::after {
  content: '';
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.35);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}
.hero p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.hero .btn-cta {
  background-color: #FFD43B;
  color: #000;
  font-weight: 600;
  border-radius: 25px;
  padding: 12px 30px;
  transition: transform 0.3s;
}
.hero .btn-cta:hover {
  transform: scale(1.05);
}

/* Booking Widget */
.booking-widget {
  background-color: #fff;
  max-width: 900px;
  margin: -80px auto 60px auto;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-top: 4px solid #FFD43B !important;
}

/* Section Styling */
section {
  padding: 40px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Alternate Backgrounds */
#rooms { background-color: #fff; }
#restaurant { background-color: #fdf6e3; }
#banquet { background-color: #fff; }
#nearby { background-color: #f8f9fa; }
#contact { background-color: #fff; }

/* Section Titles */
section h2 {
  position: relative;
  display: inline-block;
  font-weight: 700;
  margin-bottom: 50px;
}
section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #FFD43B;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Service / Room Cards */
.service-card {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}
.service-card .btn-book, .service-card .btn-outline-secondary {
  font-weight: 600;
}

/* Badges on Cards */
.service-card span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 15px;
  background-color: #FFD43B;
  color: #000;
  font-weight: 700;
  border-radius: 0 0 10px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Restaurant Images */
#restaurant .row > div img {
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}
#restaurant .row > div img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* Banquet Images */
#banquet img {
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}
#banquet img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* Nearby Attractions */
#nearby i {
  color: #D62828;
  margin-bottom: 10px;
}

/* Buttons */
.btn-book {
  background-color: #FFD43B !important;
  color: #000;
  border-radius: 25px;
  padding: 8px 20px;
  transition: transform 0.3s;
}
.btn-book:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: #D62828;
  color: #fff;
  padding: 50px 0;
  text-align: center;
}
footer a {
  color: #FFD43B;
  text-decoration: none;
  margin: 0 8px;
}

/* Floating WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 1000;
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .booking-widget {
    margin: -50px 20px 60px 20px;
  }
}
/* Custom CSS for Rooms Highlight */

.service-card {
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}
.bg-gold {
  background-color: #FFD43B;
}

.restaurant-hero {
  height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)),
              url('../img/restaurant/banner.jpg') center/cover no-repeat;
}
/* Custom CSS for Resturent  */
.btn-book {
  background-color: #D62828;
  color: #fff;
  border-radius: 25px;
  padding: 10px 25px;
  transition: 0.3s ease;
}
.btn-book:hover {
  background-color: #FFD43B;
  color: #000;
}

.timing-card {
  transition: 0.3s ease;
}
.timing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Custom CSS for banquet-hall */
.banquet-hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)),
                url('../img/banquet/banner.jpg') center/cover no-repeat;
  }
  .btn-book {
    background-color: #D62828;
    color: #fff;
    border-radius: 25px;
    padding: 10px 25px;
    transition: 0.3s;
  }
  .btn-book:hover {
    background-color: #FFD43B;
    color: #000;
  }
  .highlight-card {
    transition: 0.3s ease;
  }
  .highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  }

/* ---------- GALLERY HERO ---------- */
  .gallery-hero {
    background: linear-gradient(to bottom right, rgba(0,0,0,0.4), rgba(214,40,40,0.7)),
                url('../img/gallery/hero.jpg') center/cover no-repeat;
    min-height: 55vh;
  }
  .gallery-hero h1, .gallery-hero p {
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  }

  /* ---------- GALLERY GRID ---------- */
  .gallery-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
  }
  .gallery-card img {
    transition: transform 0.6s ease, filter 0.4s ease;
    border-radius: 15px;
  }
  .gallery-card:hover img {
    transform: scale(1.1);
    filter: brightness(70%);
  }
  .gallery-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(214,40,40,0.6));
    opacity: 0;
    text-align: center;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .gallery-card:hover .gallery-hover {
    opacity: 1;
    transform: scale(1.05);
  }
  .gallery-hover h5 {
    letter-spacing: 1px;
  }

  /* ---------- SECTION HEADING ---------- */
  #gallery h2 {
    color: #D62828;
    font-weight: 700;
  }
  #gallery p {
    max-width: 700px;
    margin: auto;
    color: #555;
  }
/* Room gallery styling */
/* Main gallery */
.room-gallery {
  position: relative;
  text-align: center;
}

.main-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

/* Thumbnails */
.gallery-thumb {
  width: 90px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.8;
  transition: transform 0.3s, opacity 0.3s, box-shadow 0.3s;
}
.gallery-thumb:hover {
  transform: scale(1.1);
  opacity: 1;
}
.gallery-thumb.active {
  border: 3px solid var(--hotel-gold);
  opacity: 1;
}

/* Arrows */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  z-index: 5;
}
.gallery-arrow:hover {
  background-color: rgba(0,0,0,0.8);
}
.gallery-arrow.left { left: 10px; }
.gallery-arrow.right { right: 10px; }

/* Mobile adjustments */
@media (max-width: 768px) {
  .gallery-thumb {
    width: 70px;
    height: 55px;
  }
  .gallery-arrow {
    font-size: 1.2rem;
    padding: 6px 10px;
  }
}

</style>