/* ==========================================================================
   Parampara Catering - Modern Indian & Odia Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --maroon-primary: #5C0D12;
  --maroon-dark: #3A0609;
  --maroon-light: #7E151C;
  --gold-accent: #D4AF37;
  --gold-hover: #F2C94C;
  --gold-light: #FBF4DE;
  --saffron-terracotta: #D9531E;
  --cream-bg: #FFFDF7;
  --white: #FFFFFF;
  --dark-text: #231B19;
  --body-text: #4F4542;
  --muted-text: #7C706B;
  --border-color: #EBDCB8;
  --shadow-sm: 0 4px 12px rgba(92, 13, 18, 0.06);
  --shadow-md: 0 8px 24px rgba(92, 13, 18, 0.1);
  --shadow-lg: 0 16px 40px rgba(92, 13, 18, 0.14);
  --gold-glow: 0 0 20px rgba(212, 175, 55, 0.35);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--cream-bg);
  color: var(--body-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Cinzel', serif;
  color: var(--maroon-primary);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  width: 100%;
  padding: 0 30px;
}

/* Cultural Jhoti / Pattern Accents */
.jhoti-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 25px 0;
}

.jhoti-divider::before,
.jhoti-divider::after {
  content: '';
  height: 2px;
  flex: 1;
  max-width: 120px;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

.jhoti-icon {
  color: var(--gold-accent);
  font-size: 1.4rem;
}

/* Top Announcement Bar */
.top-bar {
  background-color: var(--maroon-dark);
  color: var(--gold-light);
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-info a {
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-info a:hover {
  color: var(--gold-hover);
}

.top-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}

.top-social a:hover {
  background: var(--gold-accent);
  color: var(--maroon-dark);
  transform: translateY(-2px);
}

/* Sticky Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 247, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(92, 13, 18, 0.08);
  border-bottom: 2px solid var(--border-color);
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.header-logo-img {
  height: 62px;
  max-height: 65px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(92, 13, 18, 0.1);
  transition: transform 0.3s ease;
}

.header-logo-img:hover {
  transform: scale(1.02);
}

.mobile-only-btn {
  display: none;
}

.desktop-only-btn {
  display: inline-flex;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 500;
  color: var(--dark-text);
  position: relative;
  padding: 6px 0;
  font-size: 1.02rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: var(--gold-accent);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--maroon-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-cta-header {
  background: linear-gradient(135deg, var(--maroon-primary), var(--maroon-light));
  color: var(--gold-light);
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--gold-accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.btn-cta-header:hover {
  background: linear-gradient(135deg, var(--maroon-light), var(--maroon-dark));
  color: var(--white);
  box-shadow: var(--gold-glow);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--maroon-primary);
  cursor: pointer;
  padding: 5px;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(58, 6, 9, 0.88), rgba(92, 13, 18, 0.78)), url('../../images/banner.png') center/cover no-repeat;
  min-height: 82vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  border-bottom: 5px solid var(--gold-accent);
}

.hero-overlay-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 50px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid var(--gold-accent);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
}

.hero-title {
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-title span {
  color: var(--gold-accent);
  display: block;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 35px;
  font-weight: 300;
  max-width: 680px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary-gold {
  background: linear-gradient(135deg, var(--gold-accent), var(--gold-hover));
  color: var(--maroon-dark);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 35px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  border: 1px solid #FFF;
}

.btn-primary-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, var(--gold-hover), #FFE58F);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 35px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  backdrop-filter: blur(6px);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--maroon-primary);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* Feature Highlights Bar */
.highlights-bar {
  background: var(--white);
  margin-top: -50px;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  border: 1px solid var(--border-color);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px;
}

.highlight-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 2px solid var(--gold-accent);
  color: var(--maroon-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.highlight-text h4 {
  font-size: 1.1rem;
  margin-bottom: 3px;
  color: var(--maroon-primary);
}

.highlight-text p {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.4;
}

/* Section Common Styling */
.section-padding {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
}

.section-subtitle {
  color: var(--saffron-terracotta);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--maroon-primary);
  margin-bottom: 12px;
}

.section-desc {
  color: var(--muted-text);
  font-size: 1.05rem;
}

/* Cards & Grid Styling */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.custom-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.custom-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-accent);
}

.card-img-wrapper {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.custom-card:hover .card-img-wrapper img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--maroon-primary);
  color: var(--gold-light);
  padding: 4px 14px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--gold-accent);
}

.card-body {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--maroon-primary);
}

.card-text {
  color: var(--muted-text);
  font-size: 0.96rem;
  margin-bottom: 20px;
  flex: 1;
}

.card-footer-action {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px dashed var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.link-gold {
  color: var(--maroon-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.link-gold:hover {
  color: var(--saffron-terracotta);
}

/* Odia Heritage Banner Section */
.heritage-banner {
  background: linear-gradient(135deg, var(--maroon-primary), var(--maroon-dark));
  color: var(--white);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--gold-accent);
  border-bottom: 2px solid var(--gold-accent);
}

.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.heritage-text h2 {
  color: var(--gold-accent);
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.heritage-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gold-light);
  margin-bottom: 25px;
}

.heritage-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.heritage-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
}

.heritage-list i {
  color: var(--gold-accent);
  font-size: 1.2rem;
}

.heritage-img-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid var(--gold-accent);
  box-shadow: var(--shadow-lg);
}

.heritage-img-box img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Founders Section */
.founders-section {
  background-color: var(--cream-bg);
}

.founder-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
  transition: var(--transition);
}

.founder-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-accent);
  box-shadow: var(--shadow-md);
}

.founder-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  overflow: hidden;
  border: 4px solid var(--gold-accent);
  box-shadow: var(--shadow-sm);
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-name {
  font-size: 1.3rem;
  color: var(--maroon-primary);
  margin-bottom: 4px;
}

.founder-role {
  color: var(--saffron-terracotta);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.founder-bio {
  color: var(--muted-text);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
}

/* Filter Tabs (Menu & Gallery) */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--white);
  border: 1.5px solid var(--border-color);
  color: var(--dark-text);
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--maroon-primary);
  color: var(--gold-light);
  border-color: var(--maroon-primary);
  box-shadow: var(--shadow-sm);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 250px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58, 6, 9, 0.9), rgba(58, 6, 9, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--white);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  font-size: 1.15rem;
  color: var(--gold-accent);
  margin-bottom: 4px;
}

.gallery-cat {
  font-size: 0.85rem;
  color: var(--gold-light);
}

.video-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  background: rgba(212, 175, 55, 0.9);
  color: var(--maroon-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
  transition: transform 0.3s ease;
}

.gallery-item:hover .video-play-badge {
  transform: translate(-50%, -50%) scale(1.15);
}

/* Reviews / Testimonials Section */
.reviews-section {
  background: linear-gradient(180deg, #FBF6E8 0%, var(--cream-bg) 100%);
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
  margin-bottom: 25px;
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 3rem;
  color: rgba(212, 175, 55, 0.2);
}

.rating-stars {
  color: #F2C94C;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.review-text {
  font-size: 1rem;
  color: var(--body-text);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--maroon-primary);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.reviewer-info h5 {
  font-size: 1.05rem;
  color: var(--maroon-primary);
  margin-bottom: 2px;
}

.reviewer-info span {
  font-size: 0.82rem;
  color: var(--muted-text);
}

/* Modal Popup (Review & Video Lightbox) */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 650px;
  padding: 35px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--gold-accent);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-backdrop.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: var(--cream-bg);
  border: 1px solid var(--border-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--maroon-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--maroon-primary);
  color: var(--white);
}

.modal-title {
  font-size: 1.7rem;
  color: var(--maroon-primary);
  margin-bottom: 8px;
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--dark-text);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.98rem;
  background: var(--cream-bg);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--maroon-primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(92, 13, 18, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.btn-submit-form {
  width: 100%;
  background: linear-gradient(135deg, var(--maroon-primary), var(--maroon-dark));
  color: var(--gold-light);
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1.05rem;
  border: 1px solid var(--gold-accent);
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit-form:hover {
  background: linear-gradient(135deg, var(--maroon-light), var(--maroon-primary));
  box-shadow: var(--shadow-md);
}

/* Contact Page Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 1px solid var(--gold-accent);
  color: var(--maroon-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-details h4 {
  font-size: 1.1rem;
  color: var(--maroon-primary);
  margin-bottom: 4px;
}

.info-details p, .info-details a {
  color: var(--muted-text);
  font-size: 0.98rem;
  line-height: 1.5;
}

.info-details a:hover {
  color: var(--maroon-primary);
}

.map-container {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--gold-accent);
  box-shadow: var(--shadow-md);
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  display: block;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #FFF;
}

/* Footer Styling */
.site-footer {
  background: var(--maroon-dark);
  color: var(--gold-light);
  padding-top: 70px;
  border-top: 4px solid var(--gold-accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-about img {
  height: 55px;
  margin-bottom: 18px;
  border-radius: 6px;
}

.footer-about p {
  color: rgba(251, 244, 222, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 22px;
}

.footer-title {
  color: var(--gold-accent);
  font-size: 1.25rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--gold-accent);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(251, 244, 222, 0.8);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--gold-hover);
  transform: translateX(4px);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(251, 244, 222, 0.7);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

/* Page Banner (Header for internal pages) */
.page-banner {
  background: linear-gradient(135deg, rgba(58, 6, 9, 0.9), rgba(92, 13, 18, 0.85)), url('../../images/banner.png') center/cover no-repeat;
  padding: 70px 0;
  text-align: center;
  color: var(--white);
  border-bottom: 3px solid var(--gold-accent);
}

.page-banner h1 {
  font-size: 3rem;
  color: var(--gold-accent);
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gold-light);
}

.breadcrumb a:hover {
  color: var(--gold-accent);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .mobile-only-btn {
    display: block !important;
  }

  .desktop-only-btn {
    display: none !important;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--maroon-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 40px 30px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 25px rgba(0,0,0,0.5);
    z-index: 1001;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    color: var(--gold-light);
    font-size: 1.1rem;
    width: 100%;
  }

  .mobile-toggle {
    display: block;
  }

  .heritage-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title {
    font-size: 2.6rem;
  }
}

/* Divine Style Menu Variants Layout */
.menu-nav-sticky {
  position: sticky;
  top: 75px;
  z-index: 900;
  background: rgba(255, 253, 247, 0.98);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  border-bottom: 2px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(92, 13, 18, 0.05);
}

.variant-nav-pills {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 5px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.variant-nav-pills::-webkit-scrollbar {
  height: 4px;
}

.variant-nav-pills::-webkit-scrollbar-thumb {
  background: var(--gold-accent);
  border-radius: 4px;
}

.variant-pill-link {
  white-space: nowrap;
  background: var(--white);
  border: 1.5px solid var(--border-color);
  color: var(--dark-text);
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.variant-pill-link:hover,
.variant-pill-link.active {
  background: var(--maroon-primary);
  color: var(--gold-light);
  border-color: var(--maroon-primary);
  box-shadow: var(--shadow-sm);
}

.variant-block {
  margin-bottom: 60px;
  scroll-margin-top: 150px;
}

.variant-card-split {
  display: grid;
  grid-template-columns: 4.5fr 7.5fr;
  gap: 30px;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.variant-photo-side {
  position: relative;
  min-height: 420px;
}

.variant-photo-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.variant-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58, 6, 9, 0.9), rgba(58, 6, 9, 0.2));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: var(--white);
}

.variant-photo-overlay h3 {
  color: var(--gold-accent);
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.variant-photo-overlay span {
  font-size: 0.9rem;
  color: var(--gold-light);
}

.variant-list-side {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.variant-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-color);
}

.variant-list-header h3 {
  font-size: 1.45rem;
  color: var(--maroon-primary);
}

.menu-scroll-box {
  max-height: 380px;
  overflow-y: auto;
  padding-right: 15px;
}

.menu-scroll-box::-webkit-scrollbar {
  width: 5px;
}

.menu-scroll-box::-webkit-scrollbar-track {
  background: var(--cream-bg);
  border-radius: 4px;
}

.menu-scroll-box::-webkit-scrollbar-thumb {
  background: var(--gold-accent);
  border-radius: 4px;
}

.menu-item-row {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border-color);
}

.menu-item-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.menu-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.menu-item-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--maroon-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tag-veg {
  width: 14px;
  height: 14px;
  border: 1.5px solid #2E7D32;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1px;
}

.tag-veg::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #2E7D32;
  border-radius: 50%;
}

.tag-nonveg {
  width: 14px;
  height: 14px;
  border: 1.5px solid #C62828;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1px;
}

.tag-nonveg::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #C62828;
  border-radius: 50%;
}

.menu-item-desc {
  font-size: 0.92rem;
  color: var(--muted-text);
  line-height: 1.45;
}

@media (max-width: 992px) {
  .variant-card-split {
    grid-template-columns: 1fr;
  }

  .variant-photo-side {
    height: 260px;
    min-height: 260px;
  }
}
