
 :root {
  --primary:      #9B111E;   /* Crimson red */
  --primary-dark: #6D0B0E;   /* Dark maroon */
  --secondary:    #FFB300;   /* Rich amber gold */
  --accent:       #ffa200;   /* Pure metallic gold */
  --accent-dark:  #CC9A00;   /* Deep antique gold */
  --light:        #FFF3E0;   /* Pale champagne */
  --dark:         #3B0A0A;   /* Deep wine red */
  --text:         #4A1C1C;   /* Dark mahogany */
  --text-light:   #8C4B4B;   /* Soft rosewood */
  --white:        #ffffff;   /* Pure white */
  --accentt-dark:  #DCC48E;   /* Pale gold */
}


body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.7;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* ====================
   HEADER & NAVIGATION
   ==================== */
.top-header {
  background: var(--dark);
  color: #fff;
  font-size: 0.9rem;
  padding: 8px 0;
  position: relative;
  z-index: 1020;
}

.top-header a { 
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.top-header a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.top-header .header-contact span + span {
  margin-left: 1.5rem;
}

.top-header i {
  color: var(--accent);
  margin-right: 5px;
}

.navbar {
  background:var(--primary) !important;
  transition: all 0.4s ease;
  padding: 15px 0;
  backdrop-filter: blur(5px);
}

.navbar.scrolled {
  background: var(--primary) !important;
  padding: 8px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.navbar-brand img {
  transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
  height: 35px;
}

.nav-link {
  font-weight: 500;
  padding: 8px 15px !important;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--accent);
  bottom: 0;
  left: 15px;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 30px);
}

.dropdown-menu {
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  display: block;
  visibility: hidden;
  transform: translateY(10px);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 8px 20px;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(90,177,187,0.1);
  color: var(--primary);
  padding-left: 25px;
}

/* ====================
   BUTTONS
   ==================== */
.btn-accent {
  background-color: var(--accent);
  border-color: var(--accent);
  color: white;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 50px;
  padding: 12px 28px;
}

.btn-accent::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-dark);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 50px;
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,126,51,0.4);
}

.btn-accent:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-outline-accent {
  border-color: var(--accent);
  color: var(--accent);
  transition: all 0.3s ease;
  border-radius: 50px;
  padding: 12px 28px;
}

.btn-outline-accent:hover {
  background-color: var(--accent);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255,126,51,0.2);
}

/* ====================
   HERO SLIDER
   ==================== */
.hero-slider .carousel-item {
  height: 90vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-attachment: fixed;
}

.hero-slider .carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-slider .carousel-caption {
  bottom: 46%;
  text-align: center;
  right: 10%;
  left: 10%;
  transform: translateY(50%);
}

.hero-slider h1 {
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease;
}

.hero-slider p {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

.hero-slider .btn {
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

.hero-slider.carousel {
  transition: transform 0.7s ease-in-out;
}

.hero-slider.carousel-fade .carousel-item {
  transition: opacity 0.7s ease-in-out;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--accent);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

/* ====================
   QUICK BOOKING
   ==================== */
.quick-booking {
  margin-top: -80px;
  position: relative;
  z-index: 10;
}

.quick-booking .card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(5px);
}

.booking-form .form-control,
.booking-form .form-select {
  height: 50px;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.9);
  transition: all 0.3s ease;
  border-radius: 8px;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.25rem rgba(255,126,51,0.25);
  transform: translateY(-2px);
}

/* ====================
   SECTION HEADERS
   ==================== */
.section-header {
  margin-bottom: 3rem;
  position: relative;
}

.section-header h2 {
  color: var(--primary);
  position: relative;
  padding-bottom: 1rem;
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--accent), var(--primary));
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ====================
   FACILITIES
   ==================== */
.facility-card,
.event-card,
.pricing-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  background: white;
  position: relative;
  z-index: 0;
}

.facility-card::before,
.event-card::before,
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.facility-card:hover::before,
.event-card:hover::before,
.pricing-card:hover::before {
  opacity: 1;
}

.facility-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-bottom: 3px solid transparent;
}

.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-bottom-color: var(--accent);
}

.facility-card i {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  transition: all 0.3s ease;
}

.facility-card:hover i {
  transform: scale(1.2);
  color: var(--primary);
}

.facility-card h5 {
  margin-bottom: 1rem;
  color: var(--primary);
  font-weight: 600;
}

/* ====================
   GALLERY
   ==================== */
.gallery-grid {
  margin: 0 -5px;
}

.gallery-grid [class*="col-"] {
  padding: 5px;
  transition: all 0.3s ease;
}

.gallery-grid img {
  object-fit: cover;
  height: 250px;
  width: 100%;
  border-radius: 10px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-grid img:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  z-index: 10;
}

/* ====================
   TESTIMONIALS
   ==================== */
.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slider .carousel-item {
  padding: 3rem;
  background: rgba(255,255,255,0.95);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-slider .fa-quote-left {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.testimonial-slider p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-slider p::before,
.testimonial-slider p::after {
  content: '"';
  color: var(--accent);
  font-size: 1.5rem;
  opacity: 0.5;
}

.testimonial-slider h6 {
  color: var(--primary);
  font-weight: 600;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(42,93,103,0.3);
  border: none;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background-color: var(--accent);
  transform: scale(1.2);
}

/* ====================
   EVENTS
   ==================== */
.event-card {
  overflow: hidden;
  height: 100%;
}

.event-card img {
  transition: all 0.5s ease;
  height: 250px;
  object-fit: cover;
}

.event-card:hover img {
  transform: scale(1.1);
}

.event-card .card-body {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.event-card:hover .card-body {
  background: var(--primary-dark);
}

.event-card h5 {
  margin: 0;
  font-weight: 600;
}

/* ====================
   PRICING
   ==================== */
.pricing-card {
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
  height: 100%;
}

.pricing-card .card-body {
  padding: 2.5rem 2rem;
}

.pricing-card h5 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card .price {
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 700;
  margin: 1.5rem 0;
  position: relative;
}

.pricing-card .price::before,
.pricing-card .price::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background: var(--accent);
  top: 50%;
  transform: translateY(-50%);
}

.pricing-card .price::before {
  left: -60px;
}

.pricing-card .price::after {
  right: -60px;
}

.pricing-card .price span {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: normal;
}

.pricing-card ul {
  margin: 2rem 0;
  padding: 0;
}

.pricing-card ul li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.pricing-card ul li:hover {
  padding-left: 10px;
  color: var(--primary);
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

.pricing-card .btn {
  width: 80%;
  margin: 0 auto;
}

.pricing-card.popular {
  border: 2px solid var(--accent);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255,126,51,0.2);
}

.pricing-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: 15px;
  right: -35px;
  background: var(--accent);
  color: white;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(255,126,51,0.3);
}

/* ====================
   CONTACT
   ==================== */
.contact-form {
  background: rgba(255,255,255,0.95);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent), var(--primary));
}

.contact-form .form-control {
  padding: 12px 15px;
  border: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.contact-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.25rem rgba(255,126,51,0.25);
  transform: translateY(-2px);
}

.contact-info p {
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 35px;
}

.contact-info i {
  width: 30px;
  color: var(--primary);
  position:relative;
  left: 7px;
  top: 0;
  font-size: 1.2rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--primary);
  margin-right: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.1);
}

.social-links a:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255,126,51,0.3);
}

/* ====================
   VIDEO CAROUSEL
   ==================== */
.video-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background: #fff;
}

.video-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.video-slide.active {
  opacity: 1;
  z-index: 1;
}

.video-slide video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.video-caption {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 10px;
  font-size: 1.2rem;
  font-weight: bold;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.3);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}

.carousel-control:hover {
  background: rgba(255,255,255,0.7);
  color: #333;
  transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
  left: 15px;
}

.carousel-control.next {
  right: 15px;
}

.video-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: white;
  transform: scale(1.2);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background-color: rgb(255 255 255 / 25%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  cursor: pointer;
}

.video-play-btn:hover {
  background-color: rgba(255,255,255,1);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn i {
  color: var(--primary);
  font-size: 32px;
  margin-left: 8px;
}

/* ====================
   MAP
   ==================== */
.map {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(110%);
}

/* ====================
   FOOTER
   ==================== */
footer {
  background: linear-gradient(to bottom, var(--dark), #1a1a1a);
  color: white;
  padding: 4rem 0 1rem;
  position: relative;
}

footer h5, footer h6 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

footer h5::after, footer h6::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--primary));
}

footer ul {
  padding: 0;
  list-style: none;
}

footer ul li {
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

footer ul li:hover {
  transform: translateX(5px);
}

footer ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer ul li a:hover {
  color: var(--accent);
}

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer-social-links a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

/* ====================
   WHATSAPP FLOAT BUTTON
   ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 5px 20px rgba(37,211,102,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite, float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

/* ====================
   ANIMATIONS
   ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37,211,102,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* ====================
   RESPONSIVE ADJUSTMENTS
   ==================== */
@media (max-width: 1199px) {
  .hero-slider h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 991px) {
  .hero-slider h1 {
    font-size: 3rem;
  }
  .section-header h2 {
    font-size: 2.4rem;
  }
  .quick-booking {
    margin-top: 0;
  }
  .pricing-card .price::before,
  .pricing-card .price::after {
    width: 30px;
  }
  .pricing-card .price::before {
    left: -40px;
  }
  .pricing-card .price::after {
    right: -40px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: 70vh;
    min-height: 500px;
  }
  .hero-slider h1 {
    font-size: 2.5rem;
  }
  .hero-slider .lead {
    font-size: 1.1rem;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .navbar {
    padding: 10px 0;
  }
  .nav-link {
    padding: 10px 0 !important;
  }
  .nav-link::after {
    display: none;
  }
  .contact-form {
    padding: 2rem;
  }
  .pricing-card .price::before,
  .pricing-card .price::after {
    display: none;
  }
}

@media (max-width: 575px) {
  .hero-slider h1 {
    font-size: 2rem;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
  .top-header {
    font-size: 0.8rem;
    text-align: center;
  }
  .top-header .header-contact span + span {
    margin-left: 1rem;
  }
  .top-header .header-social {
    margin-top: 10px;
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* ────────────────────────────────────────────────────────────── */
/* 1. Section Fade‐In on Scroll                                    */
/* ────────────────────────────────────────────────────────────── */
.section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  background-color:var(--accentt-dark) ;
}
.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ────────────────────────────────────────────────────────────── */
/* 2. Decorative Section Separators                                */
/* ────────────────────────────────────────────────────────────── */
.section-header {
  position: relative;
}
.section-header::before,
.section-header::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--primary));
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.section-header::after {
  width: 40px;
  bottom: -16px;
}

/* ────────────────────────────────────────────────────────────── */
/* 3. Button Glow & Pulse Effect                                   */
/* ────────────────────────────────────────────────────────────── */
.btn-accent {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-accent:hover {
  box-shadow: 0 0 15px rgba(255, 179, 0, 0.6), 0 0 30px rgba(155, 17, 30, 0.6);
  transform: translateY(-2px);
}
.btn-accent::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
  z-index: -1;
}
.btn-accent:hover::before {
  transform: scale(1);
}

/* Make the outline buttons match */
.btn-outline-accent:hover {
  box-shadow: 0 0 12px rgba(255, 179, 0, 0.4);
}

/* ────────────────────────────────────────────────────────────── */
/* 4. Hero Slider Text Shadow & Overlay                             */
/* ────────────────────────────────────────────────────────────── */
.hero-slider .carousel-item::before {
  /* strengthen the dark overlay */
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
}
.hero-slider h1,
.hero-slider p {
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7);
}

/* ────────────────────────────────────────────────────────────── */
/* 5. Facility / Event / Pricing Card Hover Zoom                     */
/* ────────────────────────────────────────────────────────────── */
.facility-card,
.event-card,
.pricing-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.facility-card:hover,
.event-card:hover,
.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ────────────────────────────────────────────────────────────── */
/* 6. Gallery Image Hover Tilt                                       */
/* ────────────────────────────────────────────────────────────── */
.gallery-grid img {
  transition: transform 0.4s ease, filter 0.4s ease;
}
.gallery-grid img:hover {
  transform: scale(1.08) rotate(1.5deg);
  filter: brightness(1.1);
}

/* ────────────────────────────────────────────────────────────── */
/* 7. Scroll‐to‐Top Button                                           */
/* ────────────────────────────────────────────────────────────── */
#scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 1100;
  transition: transform 0.3s ease, background 0.3s ease;
}
#scrollToTop:hover {
  transform: scale(1.1);
  background: var(--accent-dark);
}

/* ────────────────────────────────────────────────────────────── */
/* 8. Footer Link Underline on Hover                                 */
/* ────────────────────────────────────────────────────────────── */
footer ul li a {
  position: relative;
  transition: color 0.3s ease;
}
footer ul li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.4s ease;
}
footer ul li a:hover {
  color: var(--accent);
}
footer ul li a:hover::after {
  width: 100%;
}

/* ────────────────────────────────────────────────────────────── */
/* 9. Contact Form Floating Labels (Improved)                        */
/* ────────────────────────────────────────────────────────────── */
.contact-form .form-control,
.contact-form .form-select,
.contact-form textarea {
  position: relative;
  padding-top: 1.25rem;
  border-radius: 8px;
}
.contact-form .form-control::placeholder,
.contact-form textarea::placeholder {
  font-size: 0.9rem;
  color: var(--text-light);
}
.contact-form .form-select:focus,
.contact-form .form-control:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(155, 17, 30, 0.2);
}

/* ────────────────────────────────────────────────────────────── */
/* 10. Smooth Section Anchors                                        */
/* ────────────────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}

/* ────────────────────────────────────────────────────────────── */
/* 11. Put all sections under the “.section” class for fade‐in      */
/* ────────────────────────────────────────────────────────────── */
/* Example (just demonstrating—you don’t need to duplicate these):  */
/* <section id="about" class="py-5 section"> ... </section>         */
/* <section id="facilities" class="py-5 bg-light section"> ... </section> */
/* …and so on for #gallery, #events, #pricing, #contact, etc.       */
    /* Mobile Offcanvas width control */
    @media (max-width: 991px) {
        .offcanvas-start {
            width: 60% !important;
        }
    }
    .offcanvas{
        background-color: var(--accentt-dark);
    }