:root {
  --white: #ffffff;
  --almond: #fdfbf7;
  --terracotta: #b91c1c;
  --accent-gold: #f59e0b;
  --glass-bg: rgba(255, 255, 255, 0.9);
}

body {
  font-family: "Mukta", sans-serif;
  background-color: var(--almond);
  margin: 0;
  overflow-x: hidden;
}

/* --- PROFESSIONAL ANIMATED HEADER --- */
.top-header {
  background: linear-gradient(135deg, #b91c1c 0%, #8b0000 100%);
  padding: 20px 0;
  color: var(--white);
  position: relative;
  z-index: 1001;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-bottom: 5px solid var(--accent-gold);
}

.header-logo {
  height: 85px;
  border-radius: 50%;
  border: 3px solid var(--accent-gold);
  transition: 0.5s ease;
}
.header-logo:hover {
  transform: scale(1.1) rotate(360deg);
}

.header-tagline {
  font-size: 19px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  margin-bottom: 5px;
}

.hotel-title {
  font-family: "Poppins", sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--accent-gold);
  letter-spacing: 2px;
  margin: 0;
  line-height: 1;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
  animation: pulseTitle 2s infinite alternate;
}

@keyframes pulseTitle {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.04);
  }
}

/* --- MODERN GLASS NAVBAR --- */
.navbar {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-link {
  font-weight: 800;
  color: #333 !important;
  font-size: 16px;
  padding: 10px 25px !important;
  margin: 0 5px;
  border-radius: 50px;
  transition: 0.4s;
  position: relative;
}

.nav-link:hover {
  color: var(--terracotta) !important;
  background: rgba(185, 28, 28, 0.08);
  transform: translateY(-2px);
}

.nav-link.active {
  background: var(--terracotta);
  color: var(--white) !important;
  box-shadow: 0 5px 15px rgba(185, 28, 28, 0.3);
}

/* --- FAST AUTO SLIDER WITH GLASS EFFECT --- */
.carousel-item {
  height: 480px;
}
.carousel-item img {
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}
.carousel-caption {
  background: rgba(139, 0, 0, 0.45) !important;
  backdrop-filter: blur(12px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(180%) !important;
  border-radius: 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  padding: 30px !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
  bottom: 20%;
  max-width: 500px;
  margin: 0 auto;
}

.fw-black {
  font-weight: 900 !important;
}

.tracking-wide {
  letter-spacing: 1px;
}

/* --- SECTION TITLES --- */
.section-title {
  font-weight: 900;
  color: var(--terracotta);
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}
.section-title::after {
  content: "";
  width: 70px;
  height: 5px;
  background: var(--accent-gold);
  display: block;
  margin: 12px auto;
  border-radius: 50px;
}

/* --- PREMIUM MENU CARDS & HOVER --- */
.img-hover-container {
  border-radius: 25px 25px 0 0;
}
.img-hover-container img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.menu-card:hover .img-hover-container img {
  transform: scale(1.08);
}

.card-badge-price {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-gold);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.menu-card {
  border: 2px solid transparent !important;
  border-radius: 25px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.menu-card:hover {
  border-color: var(--accent-gold) !important;
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(185, 28, 28, 0.12);
}
.card-body h5 {
  font-weight: 800;
  text-align: center;
  color: #333;
  margin: 0;
}

/* --- PREMIUM COMPACT FOOTER --- */
.custom-footer {
  background: linear-gradient(
    rgba(185, 28, 28, 0.88),
    rgba(139, 0, 0, 0.88)
  );
  backdrop-filter: blur(8px);
  color: #ffdada;
  padding: 30px 0 20px;
  border-top: 5px solid var(--accent-gold);
  margin-top: 40px;
}
.footer-brand {
  font-size: 24px;
  color: var(--accent-gold);
  font-weight: 900;
  line-height: 1;
}

.x-small {
  font-size: 0.85rem;
}

.footer-link-hover {
  transition: 0.3s ease;
  display: inline-block;
}
.footer-link-hover:hover {
  color: var(--accent-gold) !important;
  opacity: 1 !important;
  transform: translateX(3px);
}

/* --- BRAND BUTTON HOVER --- */
.btn-brand-hover {
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #b91c1c 0%, #8b0000 100%);
  border: none;
}
.btn-brand-hover:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(185, 28, 28, 0.4) !important;
  background: linear-gradient(135deg, #8b0000 0%, #b91c1c 100%);
}

/* --- FLOATING WHATSAPP --- */
.wa-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  z-index: 1000;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: 0.3s;
}
.wa-float:hover {
  transform: scale(1.1) rotate(15deg);
}
/* --- MODERN GLASS NAVBAR --- */
.navbar {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-link {
  font-weight: 800;
  color: #333 !important;
  font-size: 16px;
  padding: 10px 25px !important;
  margin: 0 5px;
  border-radius: 50px;
  transition: all 0.3s ease; /* ट्रान्सिशन स्मूथ केले */
  position: relative;
  display: inline-block;
}

/* 👑 इतर लिंक्सवर माऊस नेल्यावर (Hover) बॅकग्राउंड रंग येण्यासाठी */
.nav-link:hover {
  color: var(--white) !important; /* मजकूर पांढरा होईल */
  background: var(--terracotta) !important; /* बॅकग्राउंड लाल (Terracotta) होईल */
  box-shadow: 0 5px 15px rgba(185, 28, 28, 0.3);
  transform: translateY(-2px);
}

/* एक्टिव्ह लिंक (उदा. होम) साठी नेहमीचा फिक्स लाल रंग */
.nav-link.active {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  box-shadow: 0 5px 15px rgba(185, 28, 28, 0.3);
}