/* ============================================================
   THAKUR SWEETHOUSE — style.css
   Indian Festive Premium Theme System
   ============================================================ */

/* ── 1. DESIGN SYSTEM VARIABLES ─────────────────────────── */
:root {
  /* Warm Indian Festive Colors */
  --clr-maroon: #7c1a22;       /* Festive Deep Maroon */
  --clr-maroon-dark: #4a0d12;
  --clr-saffron: #f57c00;      /* Rich Saffron Orange */
  --clr-gold: #d4af37;         /* Warm Metallic Gold */
  --clr-gold-light: #f3e5ab;   /* Light Cream Gold */
  --clr-cream: #faf6eb;        /* Soft Traditional Cream BG */
  --clr-white: #ffffff;
  --clr-dark: #2c1a11;         /* Warm Deep Charcoal Brown */
  --clr-dark-light: #523a2a;
  --clr-shadow: rgba(74, 13, 18, 0.1);
  --clr-shadow-large: rgba(44, 26, 17, 0.15);
  
  /* Fonts */
  --font-title: 'Cinzel', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  
  /* Layout */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── 2. GLOBAL STYLES & RESET ───────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-cream);
  color: var(--clr-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

.text-white {
  color: var(--clr-white) !important;
}

.text-gold {
  color: var(--clr-gold) !important;
}

.text-center {
  text-center: center !important;
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.w-full {
  width: 100%;
}

.max-w-xl {
  max-width: 36rem;
}

.mt-12 {
  margin-top: 3rem;
}

/* ── 3. BUTTONS & UI COMPONENTS ──────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 99px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--clr-saffron);
  color: var(--clr-white);
  box-shadow: 0 4px 15px rgba(245, 124, 0, 0.3);
}

.btn-primary:hover {
  background-color: var(--clr-maroon);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 26, 34, 0.4);
}

.btn-secondary {
  background-color: var(--clr-maroon);
  color: var(--clr-white);
  box-shadow: 0 4px 15px rgba(124, 26, 34, 0.2);
}

.btn-secondary:hover {
  background-color: var(--clr-saffron);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 124, 0, 0.35);
}

.btn-outline {
  border-color: var(--clr-white);
  color: var(--clr-white);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--clr-white);
  color: var(--clr-maroon);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--clr-white);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  gap: 8px;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(18, 140, 126, 0.45);
}

.whatsapp-icon {
  fill: currentColor;
  stroke: none;
}

/* Section Headers */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--clr-saffron);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 700;
  color: var(--clr-maroon-dark);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 42px;
  }
}

.decor-line {
  width: 80px;
  height: 3px;
  background-color: var(--clr-gold);
  margin: 16px 0 24px 0;
  position: relative;
}

.decor-line::after {
  content: '✨';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--clr-cream);
  padding: 0 4px;
  font-size: 10px;
}

.why-us .decor-line::after {
  background-color: var(--clr-maroon-dark);
}

/* ── 4. NAVIGATION BAR ──────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(250, 246, 235, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px var(--shadow);
  padding: 8px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 900;
  color: var(--clr-maroon);
  letter-spacing: 0.05em;
  line-height: 1;
}

.logo-sub {
  font-size: 11px;
  font-weight: 700;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  margin-top: 2px;
}

.nav-links {
  display: none;
  gap: 8px;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-dark-light);
  padding: 8px 16px;
  border-radius: 99px;
}

.nav-link:hover {
  color: var(--clr-maroon);
  background-color: var(--clr-gold-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--clr-maroon);
  transition: var(--transition);
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--clr-cream);
  z-index: 99;
  padding: 100px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: -10px 0 30px var(--clr-shadow-large);
  transition: var(--transition);
}

.mobile-nav.open {
  right: 0;
}

.mobile-link {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-maroon);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding-bottom: 8px;
}

.mobile-link:hover {
  color: var(--clr-saffron);
}

/* ── 5. HERO SECTION ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 24px 80px 24px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--clr-maroon-dark) 0%, #300609 100%);
  color: var(--clr-white);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  z-index: 2;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gold);
  background-color: rgba(212, 175, 55, 0.1);
  padding: 6px 16px;
  border-radius: 99px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 24px;
  animation: pulse 3s infinite;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 54px;
  }
}

.hero-title .highlight {
  color: var(--clr-saffron);
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 600px;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 18px;
  }
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.delivery-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.d-badge {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 4px 12px;
  border-radius: 99px;
  color: var(--clr-white);
  font-weight: 500;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-glow-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  background-color: var(--clr-saffron);
  opacity: 0.15;
  filter: blur(80px);
  border-radius: 50%;
  z-index: 1;
}

.hero-img {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 4px solid rgba(212, 175, 55, 0.3);
  max-width: 100%;
  animation: float 6s ease-in-out infinite;
}

.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--clr-cream);
  clip-path: ellipse(60% 100% at 50% 100%);
  z-index: 3;
}

/* ── 6. ABOUT SECTION ───────────────────────────────────── */
.about {
  padding: 100px 24px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-container {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.about-image-side {
  position: relative;
}

.about-img {
  border-radius: var(--radius-md);
  box-shadow: 0 15px 30px var(--clr-shadow);
  border: 1px solid rgba(212, 175, 55, 0.15);
  width: 100%;
}

.experience-card {
  position: absolute;
  bottom: -24px;
  right: -12px;
  background-color: var(--clr-maroon);
  color: var(--clr-white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 20px rgba(124, 26, 34, 0.3);
  text-align: center;
  border: 2px solid var(--clr-gold);
}

.experience-card h3 {
  font-family: var(--font-title);
  font-size: 32px;
  line-height: 1;
  color: var(--clr-gold);
  margin-bottom: 4px;
}

.experience-card p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.about-content-side {
  display: flex;
  flex-direction: column;
}

.about-para {
  font-size: 16px;
  color: var(--clr-dark-light);
  margin-bottom: 20px;
}

.signature {
  margin-top: 16px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 16px;
}

.owner-name {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-maroon);
}

.owner-title {
  font-size: 13px;
  color: var(--clr-gold);
  font-weight: 600;
}

/* ── 7. WHY CHOOSE US ───────────────────────────────────── */
.why-us {
  background-color: var(--clr-maroon-dark);
  padding: 100px 24px;
  color: var(--clr-white);
  position: relative;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(245, 124, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.why-us-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 36px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-align: left;
}

.why-card:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: var(--font-title);
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--clr-gold-light);
}

.why-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ── 8. FEATURED SPECIALTIES ────────────────────────────── */
.featured {
  padding: 100px 24px;
}

.featured-container {
  max-width: 1200px;
  margin: 0 auto;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .featured-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background-color: var(--clr-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.15);
  overflow: hidden;
  box-shadow: 0 10px 20px var(--clr-shadow);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px var(--clr-shadow-large);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 12px;
  border-radius: 99px;
  color: var(--clr-white);
}

.badge-bestseller {
  background-color: var(--clr-maroon);
}

.badge-fresh {
  background-color: #2e7d32;
}

.badge-fav {
  background-color: var(--clr-saffron);
}

.product-img-wrapper {
  overflow: hidden;
  height: 200px;
}

.product-img {
  width: 100%;
  height: 100%;
  object-cover: cover;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-img {
  transform: scale(1.06);
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3 {
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--clr-dark);
  margin-bottom: 8px;
}

.product-info p {
  font-size: 14px;
  color: var(--clr-dark-light);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding-top: 16px;
}

.product-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-maroon);
}

.product-price small {
  font-size: 12px;
  color: var(--clr-dark-light);
  font-weight: 400;
}

.btn-card-order {
  background-color: var(--clr-saffron);
  color: var(--clr-white);
  padding: 8px 20px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}

.btn-card-order:hover {
  background-color: var(--clr-maroon);
}

/* ── 9. FESTIVE GIFTING ─────────────────────────────────── */
.gifting {
  background: linear-gradient(135deg, #4a0d12 0%, #2b0306 100%);
  padding: 100px 24px;
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
}

.gifting-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 30%, rgba(245, 124, 0, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.gifting-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .gifting-container {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.gifting-para {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.gifting-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.gif-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.gif-icon {
  font-size: 24px;
  background-color: rgba(212, 175, 55, 0.1);
  padding: 10px;
  border-radius: 50%;
  line-height: 1;
}

.gif-feat h4 {
  font-family: var(--font-title);
  color: var(--clr-gold-light);
  font-size: 16px;
  margin-bottom: 4px;
}

.gif-feat p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.gifting-image-side {
  display: flex;
  justify-content: center;
}

.gift-box-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 420px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.gift-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  opacity: 0.85;
}

.gift-info-tag {
  padding: 24px;
  text-align: center;
}

.gift-info-tag h5 {
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--clr-gold-light);
  margin-bottom: 4px;
}

.gift-info-tag p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ── 10. MENU SECTION ───────────────────────────────────── */
.menu-section {
  padding: 100px 24px;
  background-color: var(--clr-white);
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
}

.menu-desc {
  font-size: 16px;
  color: var(--clr-dark-light);
  margin-top: 12px;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 40px 0;
}

.menu-tab {
  background-color: var(--clr-cream);
  color: var(--clr-dark-light);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 99px;
  cursor: pointer;
  transition: var(--transition);
}

.menu-tab:hover, .menu-tab.active {
  background-color: var(--clr-maroon);
  color: var(--clr-white);
  border-color: var(--clr-maroon);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-item-card {
  background-color: var(--clr-cream);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.menu-item-card:hover {
  transform: translateY(-3px);
  border-color: var(--clr-saffron);
  box-shadow: 0 8px 20px var(--clr-shadow);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.menu-item-header h4 {
  font-family: var(--font-title);
  font-size: 16px;
  color: var(--clr-maroon-dark);
}

.menu-item-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-maroon);
  white-space: nowrap;
}

.menu-item-price small {
  font-size: 11px;
  font-weight: 400;
  color: var(--clr-dark-light);
}

.menu-item-desc {
  font-size: 13px;
  color: var(--clr-dark-light);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.menu-item-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-saffron);
  background-color: rgba(245, 124, 0, 0.08);
  padding: 4px 10px;
  border-radius: 99px;
}

/* ── 11. REVIEWS SECTION ────────────────────────────────── */
.reviews {
  padding: 100px 24px;
  background-color: var(--clr-cream);
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background-color: var(--clr-white);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 20px var(--clr-shadow);
  display: flex;
  flex-direction: column;
  position: relative;
}

.review-card::before {
  content: '“';
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 64px;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(212, 175, 55, 0.12);
}

.review-stars {
  color: var(--clr-gold);
  font-size: 14px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 15px;
  color: var(--clr-dark-light);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
  flex-grow: 1;
}

.reviewer-info h4 {
  font-family: var(--font-title);
  font-size: 15px;
  color: var(--clr-maroon);
}

.reviewer-meta {
  font-size: 12px;
  color: var(--clr-gold);
  font-weight: 500;
}

/* ── 12. GALLERY SECTION ────────────────────────────────── */
.gallery {
  padding: 100px 24px;
  background-color: var(--clr-white);
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 4px 12px var(--clr-shadow);
}

@media (min-width: 768px) {
  .gallery-item {
    height: 260px;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.gallery-hover {
  position: absolute;
  inset: 0;
  background-color: rgba(74, 13, 18, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-hover span {
  color: var(--clr-gold-light);
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  border-bottom: 2px solid var(--clr-gold);
  padding-bottom: 4px;
}

/* ── 13. LOCATION & CONTACT ─────────────────────────────── */
.contact {
  padding: 100px 24px;
  background-color: var(--clr-cream);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .contact-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-info-panel {
  background-color: var(--clr-white);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 20px var(--clr-shadow);
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 36px 0;
}

.contact-details-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.det-icon {
  font-size: 20px;
  background-color: var(--clr-cream);
  padding: 12px;
  border-radius: 50%;
  line-height: 1;
}

.contact-details-list h4 {
  font-family: var(--font-title);
  color: var(--clr-maroon);
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-details-list p {
  font-size: 15px;
  color: var(--clr-dark-light);
}

.contact-map-panel {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 20px var(--clr-shadow);
  border: 2px solid var(--clr-gold);
  height: 400px;
}

.map-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #eee;
}

.map-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: var(--clr-dark);
}

/* ── 14. FOOTER ─────────────────────────────────────────── */
.footer {
  background-color: var(--clr-dark);
  color: var(--clr-white);
  padding: 80px 24px 24px 24px;
  border-top: 4px solid var(--clr-gold);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  max-width: 320px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  background-color: rgba(255, 255, 255, 0.05);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
}

.social-icons a:hover {
  background-color: var(--clr-gold);
}

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-title);
  color: var(--clr-gold-light);
  font-size: 16px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

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

.footer-contact p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}

.footer-phone {
  font-size: 18px !important;
  font-weight: 700;
  color: var(--clr-gold-light) !important;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ── 15. ANIMATIONS ─────────────────────────────────────── */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { opacity: 0.95; }
  50% { opacity: 0.6; }
  100% { opacity: 0.95; }
}

/* ── 16. HERITAGE VIDEO & PLAYER STYLES ──────────────────── */
.video-player-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  aspect-ratio: 16 / 9;
  background-color: #000;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.video-player-wrapper:hover {
  transform: scale(1.01);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.3);
}

.video-player-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(124, 26, 34, 0.85);
  border: 2px solid var(--clr-gold);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  z-index: 10;
}

.video-overlay-btn:hover {
  background: var(--clr-saffron);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 30px rgba(245, 124, 0, 0.6);
  color: var(--clr-white);
}

.video-overlay-btn svg {
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.video-overlay-btn:hover svg {
  transform: scale(1.1);
}

/* Playing state overrides */
.video-player-wrapper.playing .video-overlay-btn {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* Special constraints for video placed in About Section grid */
.about-video-wrapper {
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 30px var(--clr-shadow);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

