@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Lato:wght@300;400;700&family=Dancing+Script:wght@700&display=swap');

:root {
  --crimson: #6b21a8;
  /* Premium royal purple */
  --crimson-light: #8b5cf6;
  /* Lighter purple for hover states */
  --gold: #b45309;
  /* Darker amber/gold for readability on light bg */
  --gold-light: #d97706;
  --dark: #fffdfa;
  /* Pure warm white background */
  --dark2: #ffffff;
  /* Card/container background */
  --cream: #1e1b18;
  /* Dark charcoal body text color */
  --cream2: #4a443e;
  /* Secondary warm grey text */
  --text: #ffffff;
  /* Text on dark backgrounds */
  --white: #ffffff;
  /* Keep white text white */
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  --radius: 12px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --card-desc-color: var(--cream2);

  --nav-bg: rgba(255, 253, 250, 0.95);
  --hero-bg-gradient: radial-gradient(ellipse at center, #ffffff 0%, #fffdfa 100%);
  --hero-bg-overlay: radial-gradient(circle at 20% 50%, rgba(185, 28, 28, 0.04) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(180, 83, 9, 0.04) 0%, transparent 40%);
  --hero-sub-color: #4a443e;
  --ticker-text: #ffffff;
  --ticker-span-color: #f59e0b;
  --section-sub-color: #4a443e;
  --card-hover-shadow: 0 20px 48px rgba(185, 28, 28, 0.08);
  --card-hover-border: var(--crimson);
  --badge-bg: rgba(185, 28, 28, 0.08);
  --badge-border: var(--crimson);
  --badge-text: var(--crimson);
  --hours-bg: linear-gradient(135deg, var(--crimson) 0%, #7f1d1d 100%);
  --input-bg: #fcfaf7;
  --input-border: rgba(180, 83, 9, 0.25);
  --input-color: #1e1b18;
  --footer-bg: #fffdfa;
  --footer-text: #5c544d;
  --footer-link-color: #4a443e;
  --footer-muted: #8c7e74;
  --border-color: rgba(180, 83, 9, 0.15);
  --toast-bg: #ffffff;
  --toast-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  --nav-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

:root.theme-live {
  --crimson: #7c3aed;
  /* Rich glowing purple */
  --crimson-light: #9333ea;
  /* Lighter glowing purple hover */
  --gold: #d4af37;
  /* Metallic warm gold accent color */
  --gold-light: #f0ca56;
  /* Lighter gold accent */
  --dark: #150f0e;
  /* Rich dark charcoal/wood background */
  --dark2: #211817;
  /* Slightly lighter charcoal container background */
  --cream: #f5ebd7;
  /* Soft warm cream body text color */
  --cream2: #decbb6;
  /* Secondary warm beige text */
  --text: #150f0e;
  /* Background contrast text */
  --white: #fdfaf5;
  /* Off-white color */
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --radius: 12px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --card-desc-color: var(--cream2);

  /* Theme-able properties */
  --nav-bg: rgba(21, 15, 14, 0.92);
  --hero-bg-gradient: radial-gradient(ellipse at center, #351c1a 0%, var(--dark) 70%);
  --hero-bg-overlay: radial-gradient(circle at 20% 50%, rgba(166, 38, 38, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 40%);
  --hero-sub-color: rgba(245, 235, 215, 0.75);
  --ticker-text: var(--cream);
  --ticker-span-color: var(--gold);
  --section-sub-color: rgba(245, 235, 215, 0.65);
  --card-hover-shadow: 0 20px 48px rgba(166, 38, 38, 0.25);
  --card-hover-border: rgba(212, 175, 55, 0.4);
  --badge-bg: rgba(166, 38, 38, 0.2);
  --badge-border: var(--crimson);
  --badge-text: var(--cream);
  --hours-bg: linear-gradient(135deg, var(--crimson) 0%, #2b1212 100%);
  --input-bg: rgba(255, 255, 255, 0.04);
  --input-border: rgba(212, 175, 55, 0.2);
  --input-color: var(--cream);
  --footer-bg: #0d0909;
  --footer-text: rgba(245, 235, 215, 0.5);
  --footer-link-color: rgba(245, 235, 215, 0.6);
  --footer-muted: rgba(245, 235, 215, 0.3);
  --border-color: rgba(212, 175, 55, 0.2);
  --toast-bg: var(--dark2);
  --toast-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --nav-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark2);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 130px;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: var(--nav-shadow);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-main {
  height: 120px;
  width: auto;
  display: block;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
}

.logo-sub {

  top: 105px;
  height: 50px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}


.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

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

.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background: var(--crimson);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 30px;
  border: 2px solid var(--crimson);
  transition: background 0.3s, border-color 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--dark) !important;
}

.nav-cta::after {
  display: none !important;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: left;
  overflow: hidden;
  background: var(--hero-bg-gradient);
  padding: 150px 60px 80px;
  gap: 60px;
}

.hero-logo-image {
  height: 460px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.35));
  flex-shrink: 0;
  animation: fadeSlideUp 0.8s 0.2s both;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--hero-bg-overlay);
  animation: heroBgPulse 8s ease-in-out infinite alternate;
}

@keyframes heroBgPulse {
  from {
    opacity: 0.7;
  }

  to {
    opacity: 1;
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp var(--dur, 6s) var(--delay, 0s) ease-in infinite;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }

  10% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(1.5);
  }
}

.fleur-deco {
  font-size: 3rem;
  color: var(--gold);
  display: block;
  animation: spin-slow 20s linear infinite;
  margin-bottom: 16px;
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

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

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--hero-sub-color);
  max-width: 520px;
  margin: 0 0 40px 0;
  line-height: 1.7;
  opacity: 0;
  animation: fadeSlideUp 1s 0.7s forwards;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 1s 0.9s forwards;
}

.btn-primary {
  background: var(--crimson);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.88rem;
  border: 2px solid var(--crimson);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.btn-primary:hover::before {
  transform: scaleX(1);
}

.btn-primary:hover {
  color: var(--dark);
  border-color: var(--gold);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.88rem;
  border: 2px solid var(--gold);
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245, 230, 190, 0.5);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ===== TICKER ===== */
.ticker {
  background: var(--crimson);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.ticker-inner {
  display: flex;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  padding: 0 40px;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ticker-text);
  font-weight: 700;
}

.ticker-item span {
  color: var(--ticker-span-color);
  margin: 0 16px;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ===== SECTION BASE ===== */
section {
  padding: 100px 40px;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-title em {
  color: var(--gold);
  font-style: italic;
}

.section-sub {
  color: var(--section-sub-color);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 560px;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--crimson));
  margin: 24px 0;
  border-radius: 2px;
}

/* ===== ABOUT ===== */
.about-section {
  background: var(--dark2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--radius);
}

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

.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
  transition: transform 0.4s;
}

.about-image-wrap:hover img {
  transform: rotate(0deg) scale(1.02);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--crimson);
  border: 3px solid var(--gold);
  color: var(--cream);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  text-align: center;
  box-shadow: var(--shadow);
}

.about-badge strong {
  font-size: 1.8rem;
  line-height: 1;
}

.about-badge span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-features {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.feature-chip {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 1px;
}

/* ===== FOOD GRID ===== */
.food-section {
  background: var(--dark);
}

.food-section-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.food-header {
  text-align: center;
  margin-bottom: 60px;
}

.food-header .section-sub {
  margin: 0 auto;
}

.food-header .divider {
  margin: 24px auto;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.food-card {
  background: var(--dark2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
}

.food-card.visible {
  animation: cardReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cardReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.food-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-hover-shadow);
  border-color: var(--card-hover-border);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

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

.card-body {
  padding: 20px;
}

.card-tag {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--card-desc-color);
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.card-badge {
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  color: var(--badge-text);
  font-size: 0.7rem;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
}

/* ===== MENU TABS ===== */
.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
}

.tab-btn {
  background: rgba(180, 83, 9, 0.06);
  border: 1px solid rgba(180, 83, 9, 0.18);
  color: var(--cream2);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Lato', sans-serif;
}

.theme-live .tab-btn {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: rgba(245, 230, 190, 0.7);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--crimson);
  border-color: var(--crimson);
  color: var(--white);
}

/* ===== CATERING CARDS ===== */
.catering-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1300px;
  margin: 0 auto;
}

.cat-card {
  background: var(--dark2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(24px);
}

.cat-card.visible {
  animation: cardReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-hover-shadow);
}

.cat-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.cat-card-body {
  padding: 24px;
}

.cat-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.cat-card-desc {
  font-size: 0.88rem;
  color: var(--card-desc-color);
  line-height: 1.65;
  margin-bottom: 18px;
}

.pricing-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.price-pill {
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.82rem;
  color: var(--badge-text);
}

.price-pill strong {
  color: var(--gold);
}

/* ===== HOURS BANNER ===== */
.hours-banner {
  background: var(--hours-bg);
  padding: 60px 40px;
  text-align: center;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.hours-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.hours-banner p {
  color: var(--hero-sub-color);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--dark2);
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 50px 60px;
}

.contact-info {}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--hero-sub-color);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--input-color);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.contact-form textarea {
  height: 130px;
  resize: vertical;
}

.contact-form select option {
  background: var(--dark2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}

.form-group {
  margin-bottom: 4px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border-color);
  padding: 60px 40px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}

.footer-brand-name {
  font-family: 'Dancing Script', cursive;
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-desc {
  color: var(--footer-text);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-links-title {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--footer-link-color);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--footer-muted);
  font-size: 0.8rem;
}

.footer-fleur {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO FOOD IMAGES ===== */
.hero-food-strip {
  display: flex;
  gap: 20px;
  margin-top: 56px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-food-item {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(212, 175, 55, 0.4);
  transition: transform 0.4s, border-color 0.4s;
  animation: fadeSlideUp 0.8s forwards;
  opacity: 0;
}

.hero-food-item:nth-child(1) {
  animation-delay: 1.1s;
}

.hero-food-item:nth-child(2) {
  animation-delay: 1.25s;
}

.hero-food-item:nth-child(3) {
  animation-delay: 1.4s;
}

.hero-food-item:nth-child(4) {
  animation-delay: 1.55s;
}

.hero-food-item:nth-child(5) {
  animation-delay: 1.7s;
}

.hero-food-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-food-item:hover {
  transform: scale(1.15) rotate(4deg);
  border-color: var(--gold);
}

/* ===== PAGE HERO ===== */
.page-hero {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--hero-bg-gradient);
  border-bottom: 1px solid var(--border-color);
  padding: 180px 40px 80px;
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 900;
  color: var(--cream);
  animation: fadeSlideUp 0.8s 0.2s both;
}

.page-hero-title em {
  color: var(--gold);
  font-style: italic;
}

.page-hero-sub {
  font-size: 1rem;
  color: var(--hero-sub-color);
  margin-top: 14px;
  letter-spacing: 2px;
  animation: fadeSlideUp 0.8s 0.4s both;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 160px 24px 60px;
    gap: 30px;
  }

  .hero-logo-image {
    height: 250px;
  }

  .hero-sub {
    margin: 0 auto 40px;
  }

  .hero-btns {
    justify-content: center;
  }

  nav {
    padding: 0 20px;
  }

  .nav-links {
    gap: 20px;
  }

  section {
    padding: 70px 24px;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {

  .hero-logo-image {
    height: 180px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== CART BADGE ===== */
.cart-btn {
  position: relative;
  background: var(--crimson);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 30px;
  border: 2px solid var(--crimson);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.cart-count {
  background: var(--gold);
  color: var(--dark);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.3s;
}

.cart-count.bump {
  animation: bump 0.35s ease;
}

@keyframes bump {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.5)
  }
}

/* ===== ADD TO CART BUTTON ===== */
.add-to-cart-btn {
  width: 100%;
  background: var(--crimson);
  color: var(--white);
  border: 2px solid var(--crimson);
  border-radius: 8px;
  padding: 11px 16px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.add-to-cart-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.add-to-cart-btn.added {
  background: #2d6a2d;
  border-color: #2d6a2d;
}

.size-select {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--input-color);
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  margin-top: 8px;
  cursor: pointer;
  outline: none;
}

.size-select option {
  background: var(--dark2);
}

/* ===== TOAST NOTIFICATION ===== */
.toast-container {
  position: fixed;
  top: 88px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--toast-bg);
  border: 1px solid var(--gold);
  border-left: 4px solid var(--gold);
  color: var(--cream);
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  box-shadow: var(--toast-shadow);
  animation: toastIn 0.35s ease, toastOut 0.35s ease 2.5s forwards;
  max-width: 320px;
}

.toast .toast-title {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(40px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes toastOut {
  from {
    opacity: 1;
    transform: translateX(0)
  }

  to {
    opacity: 0;
    transform: translateX(40px)
  }
}

/* ===== CART PAGE ===== */
.cart-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 180px 40px 60px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  background: var(--dark2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: border-color 0.3s;
}

.cart-item:hover {
  border-color: var(--card-hover-border);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 4px;
}

.cart-item-size {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cart-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--gold);
  margin-top: 6px;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  color: var(--badge-text);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.qty-btn:hover {
  background: var(--crimson-light);
}

.qty-num {
  color: var(--cream);
  font-weight: 700;
  min-width: 24px;
  text-align: center;
}

.remove-btn {
  background: none;
  border: none;
  color: var(--footer-muted);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px;
  transition: color 0.3s;
  flex-shrink: 0;
}

.remove-btn:hover {
  color: #cc3333;
}

/* ORDER SUMMARY */
.order-summary {
  background: var(--dark2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 90px;
}

.order-summary h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  color: var(--cream2);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.summary-row.total {
  color: var(--cream);
  font-weight: 700;
  font-size: 1.1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  margin-top: 8px;
}

.summary-row.total span:last-child {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
}

.checkout-btn {
  width: 100%;
  margin-top: 20px;
  background: var(--crimson);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.checkout-btn:hover {
  background: var(--crimson-light);
}

.checkout-btn:disabled {
  background: #555;
  cursor: not-allowed;
}

.stripe-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--footer-muted);
  font-size: 0.75rem;
}

.empty-cart {
  text-align: center;
  padding: 80px 40px;
}

.empty-cart .empty-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.empty-cart h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.empty-cart p {
  color: rgba(245, 230, 190, 0.6);
  margin-bottom: 28px;
}

/* SUCCESS PAGE */
.success-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 180px 40px 80px;
  text-align: center;
}

.success-icon {
  font-size: 5rem;
  margin-bottom: 24px;
  animation: popIn 0.5s ease;
}

@keyframes popIn {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

.success-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--cream);
  margin-bottom: 16px;
}

.success-page p {
  color: rgba(245, 230, 190, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.success-details {
  background: var(--dark2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
  text-align: left;
}

.success-details p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.success-details strong {
  color: var(--gold);
}

@media (max-width: 800px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }
}

/* ===== IMAGE LIGHTBOX (CLICK TO ZOOM) ===== */
.image-lightbox {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 5, 0, 0.88);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.8);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--cream);
  font-size: 2.2rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.lightbox-close:hover {
  color: var(--gold);
  transform: scale(1.08) rotate(90deg);
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.15);
}

.lightbox-caption {
  margin-top: 16px;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  opacity: 0.9;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* ===== NAVBAR SEARCH BAR ===== */
.nav-search-container {
  position: relative;
  flex: 1;
  max-width: 380px;
  margin: 0 24px;
}

.nav-search-input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 30px;
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: all 0.3s;
}

.nav-search-input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 14px rgba(216, 132, 214, 0.15);
}

.theme-live .nav-search-input:focus {
  background: #ffffff;
  box-shadow: 0 0 14px rgba(124, 58, 237, 0.1);
}

.nav-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
  font-size: 0.9rem;
}

.nav-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--dark2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.5);
  max-height: 320px;
  overflow-y: auto;
  z-index: 1100;
  display: none;
}

.theme-live .nav-search-dropdown {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}

.nav-search-dropdown.active {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: background 0.3s;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: rgba(216, 132, 214, 0.08);
}

.theme-live .search-result-item:hover {
  background: rgba(124, 58, 237, 0.05);
}

.search-result-img {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.search-result-info {
  flex: 1;
}

.search-result-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--cream);
}

.search-result-price {
  font-size: 0.82rem;
  color: var(--gold);
  margin-top: 2px;
}

.search-result-add {
  background: var(--crimson);
  border: none;
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.3s;
}

.search-result-add:hover {
  background: var(--gold);
  color: var(--dark);
}

.theme-live .search-result-add:hover {
  background: var(--crimson-light);
  color: var(--white);
}

@media (max-width: 650px) {
  nav {
    height: 90px;
    padding: 0 16px;
  }

  .logo-main {
    height: 70px;
  }

  .logo-sub {
    height: 28px;
    top: 62px;
  }

  .nav-search-container {
    display: block;
    margin: 0 12px;
    flex: 1;
    max-width: 180px;
  }

  .nav-search-input {
    padding: 8px 12px 8px 32px;
    font-size: 0.8rem;
  }

  .nav-search-icon {
    left: 12px;
    font-size: 0.8rem;
  }

  .nav-search-dropdown {
    max-height: 240px;
  }

  .nav-links {
    display: flex !important;
    gap: 0;
  }

  .nav-links li:not(:last-child) {
    display: none !important;
  }

  .cart-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
    gap: 4px;
  }
}