/* ===== FLAVOUR'S CAFE - MAIN STYLESHEET ===== */

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

:root {
  --orange:       #E8852A;
  --orange-light: #F5A455;
  --orange-dark:  #C06A10;
  --cream:        #FFF8EE;
  --cream2:       #FFF0D6;
  --warm-white:   #FFFBF5;
  --brown:        #5C3317;
  --brown-light:  #8B5E3C;
  --gold:         #D4A84B;
  --text-dark:    #2E1A0E;
  --text-mid:     #6B4226;
  --text-light:   #A0785A;
  --green:        #4A7C59;
  --red-dot:      #D94F3D;
  --shadow-warm:  rgba(232, 133, 42, 0.15);
  --shadow-dark:  rgba(46, 26, 14, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* ============================
   SCROLLBAR
   ============================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 10px; }

/* ============================
   NAV
   ============================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(255, 248, 238, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px var(--shadow-warm);
  padding: 12px 80px;
}
.nav-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--brown);
  text-decoration: none;
}
.nav-logo span { color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  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(--orange);
  border-radius: 2px;
  transition: width 0.35s ease;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }
.nav-btn {
  background: var(--orange);
  color: #fff;
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(232, 133, 42, 0.35);
}
.nav-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 133, 42, 0.45);
}

/* ============================
   HERO — IMAGE BACKGROUND
   ============================ */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

/* Fixed background image — full cover */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('cafe.png') center center / cover no-repeat;
  z-index: 0;
}

/* Overlay completely off */
.hero-overlay { display: none; }

/* Wave completely off */
.hero-wave { display: none; }

/* ---- Floating food elements ---- */
.hero-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.float-el {
  position: absolute;
  font-size: 2.6rem;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.18));
  pointer-events: none;
  z-index: 2;
}
.float-el.el-1  { top: 8%;  left: 4%;   font-size: 2.8rem; animation: floatA 4.2s ease-in-out infinite; }
.float-el.el-2  { top: 10%; right: 6%;  font-size: 2.6rem; animation: floatB 5s   ease-in-out infinite 0.6s; }
.float-el.el-3  { top: 38%; left: 2%;   font-size: 2.4rem; animation: floatA 4.8s ease-in-out infinite 1.1s; }
.float-el.el-4  { top: 33%; right: 3%;  font-size: 2.5rem; animation: floatB 4s   ease-in-out infinite 0.3s; }
.float-el.el-5  { top: 60%; left: 5%;   font-size: 2.6rem; animation: floatA 5.5s ease-in-out infinite 0.8s; }
.float-el.el-6  { top: 5%;  left: 44%;  font-size: 1.8rem; animation: floatB 3.8s ease-in-out infinite 1.4s; }
.float-el.el-7  { top: 55%; right: 4%;  font-size: 2.8rem; animation: floatA 4.5s ease-in-out infinite 0.5s; }
.float-el.el-8  { top: 75%; left: 3%;   font-size: 2.2rem; animation: floatB 5.2s ease-in-out infinite 1.2s; }
.float-el.el-9  { top: 20%; left: 13%;  font-size: 2rem;   animation: floatA 4s   ease-in-out infinite 0.9s; }
.float-el.el-10 { top: 18%; right: 13%; font-size: 2rem;   animation: floatB 4.6s ease-in-out infinite 0.2s; }
.float-el.el-11 { top: 72%; right: 6%;  font-size: 2.2rem; animation: floatA 5s   ease-in-out infinite 1.5s; }
.float-el.el-12 { top: 46%; left: 10%;  font-size: 2rem;   animation: floatB 3.6s ease-in-out infinite 0.7s; }
.float-el.el-13 { top: 48%; right: 10%; font-size: 2rem;   animation: floatA 4.9s ease-in-out infinite 1.0s; }
.float-el.el-14 { top: 82%; left: 18%;  font-size: 1.8rem; animation: floatB 5.4s ease-in-out infinite 0.4s; }
.float-el.el-15 { top: 80%; right: 18%; font-size: 1.8rem; animation: floatA 4.3s ease-in-out infinite 1.3s; }

@keyframes floatA {
  0%,100% { transform: translateY(0)    rotate(-6deg); }
  50%     { transform: translateY(-18px) rotate(6deg);  }
}
@keyframes floatB {
  0%,100% { transform: translateY(0)    rotate(6deg); }
  50%     { transform: translateY(-14px) rotate(-6deg); }
}

/* ---- Order Now button area ---- */
.hero-btn-wrap {
  position: relative;
  z-index: 4;
  text-align: center;
  padding-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

/* Smaller Order Now button */
.hero-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #FF9A3C 0%, #E8852A 50%, #C06A10 100%);
  color: #fff;
  padding: 12px 32px;
  border-radius: 60px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 0 rgba(160, 80, 0, 0.45),
    0 8px 22px rgba(232,133,42,0.38);
  transition: all 0.25s cubic-bezier(0.23,1,0.32,1);
}
/* Sheen sweep on hover */
.hero-order-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.hero-order-btn:hover::before { left: 130%; }
.hero-order-btn:hover {
  transform: translateY(-4px);
  box-shadow:
    0 10px 0 rgba(160,80,0,0.4),
    0 18px 40px rgba(232,133,42,0.55);
}
.hero-order-btn:active {
  transform: translateY(2px);
  box-shadow:
    0 3px 0 rgba(160,80,0,0.5),
    0 6px 20px rgba(232,133,42,0.4);
}
.btn-icon  { font-size: 1.1rem; }
.btn-arrow {
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: transform 0.3s ease;
}
.hero-order-btn:hover .btn-arrow { transform: translateX(5px); }

.hero-tagline {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 600;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
  padding: 7px 24px;
  border-radius: 50px;
  border: 1px solid rgba(232,133,42,0.18);
}

/* Wave */
.hero-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  z-index: 3;
}


/* ============================
   MARQUEE
   ============================ */
.marquee-section {
  background: var(--orange);
  padding: 12px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 28px;
  font-weight: 600;
}
.marquee-track .m-dot {
  color: rgba(255,255,255,0.5);
  padding: 0;
  font-size: 0.9rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================
   CATEGORY CIRCLES
   ============================ */
.categories {
  padding: 80px 80px 60px;
  max-width: 1300px;
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: 50px;
}
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--brown);
}
.cat-circles {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.cat-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cat-circle-img {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--cream2);
  border: 3px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px var(--shadow-warm);
  position: relative;
  overflow: hidden;
}
.cat-circle-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.5), transparent 60%);
  border-radius: 50%;
}
.cat-circle.active .cat-circle-img,
.cat-circle:hover .cat-circle-img {
  border-color: var(--orange);
  background: rgba(232, 133, 42, 0.1);
  box-shadow: 0 8px 30px rgba(232,133,42,0.3);
  transform: translateY(-6px);
}
.stars {
  display: flex;
  gap: 2px;
  justify-content: center;
}
.stars span {
  color: var(--gold);
  font-size: 0.7rem;
}
.cat-circle-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
}
.cat-circle-sub {
  font-size: 0.65rem;
  color: var(--text-light);
  text-align: center;
}

/* ============================
   MENU SECTION
   ============================ */
.menu-section {
  padding: 60px 0 100px;
  background: var(--warm-white);
}
.menu-section .section-head { padding: 0 80px; }
.menu-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 40px 50px;
}
.menu-tab {
  padding: 10px 26px;
  border-radius: 50px;
  border: 1.5px solid rgba(232,133,42,0.25);
  background: transparent;
  color: var(--text-mid);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.menu-tab:hover,
.menu-tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232,133,42,0.35);
}
.menu-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 80px;
}
.menu-category { display: none; }
.menu-category.active {
  display: block;
  animation: fadeUp 0.5s ease;
}
.cat-heading {
  font-family: 'Dancing Script', cursive;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--brown);
  text-align: center;
  margin-bottom: 40px;
}
.cat-heading span { color: var(--orange); }

/* Card image top — real photos */
.card-img-top {
  padding: 0 !important;
  overflow: hidden;
}
.card-img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.23,1,0.32,1);
}
.menu-card:hover .card-img-top img {
  transform: scale(1.08);
}

/* Menu Cards Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.menu-card {
  background: var(--cream);
  border: 1.5px solid rgba(212, 168, 75, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
  position: relative;
  box-shadow: 0 4px 20px var(--shadow-dark);
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(232,133,42,0.18);
  border-color: rgba(232,133,42,0.3);
}
.card-top {
  background: linear-gradient(135deg, var(--cream2), rgba(255,240,214,0.5));
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.card-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6), transparent 60%);
}
.card-emoji {
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}
.menu-card:hover .card-emoji { transform: scale(1.15) rotate(5deg); }
.card-badge {
  position: absolute;
  top: 12px; right: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge-veg { background: rgba(74,124,89,0.15); color: var(--green); border: 1px solid rgba(74,124,89,0.3); }
.badge-spicy { background: rgba(217,79,61,0.12); color: var(--red-dot); border: 1px solid rgba(217,79,61,0.25); }
.badge-special { background: rgba(212,168,75,0.15); color: #9A7020; border: 1px solid rgba(212,168,75,0.35); }

.card-body { padding: 20px 22px 22px; }
.card-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}
.card-desc {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
}
.card-price::before { content: '₹'; font-size: 0.85rem; vertical-align: super; }
.card-btn {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}
.card-btn:hover {
  background: var(--orange-dark);
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(232,133,42,0.4);
}
.card-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}
.card-stars span { color: var(--gold); font-size: 0.72rem; }

/* Special card */
.menu-card.special {
  border-color: rgba(232,133,42,0.35);
  background: linear-gradient(135deg, #fff8ee, #fff3e0);
}
.menu-card.special .card-top {
  background: linear-gradient(135deg, rgba(232,133,42,0.15), rgba(212,168,75,0.1));
}

/* ============================
   PARALLAX BANNER
   ============================ */
.parallax-banner {
  position: relative;
  padding: 120px 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.parallax-bg {
  position: absolute;
  inset: -80px;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(232, 133, 42, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 50%, rgba(212, 168, 75, 0.25) 0%, transparent 50%),
    #2E1A0E;
  will-change: transform;
}
.parallax-float {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pf {
  position: absolute;
  font-size: 3rem;
  opacity: 0.1;
  animation: floatA 6s ease-in-out infinite;
}
.parallax-content {
  position: relative;
  z-index: 2;
}
.parallax-content .section-tag { color: var(--gold); }
.parallax-content h2 {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  margin: 8px 0 20px;
  line-height: 1.1;
}
.parallax-content h2 em { color: var(--orange-light); font-style: italic; }
.parallax-content p {
  font-size: 1rem;
  color: rgba(255,248,238,0.65);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

/* ---- Attractive View Full Menu Button ---- */
.parallax-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  position: relative;
  padding: 17px 42px 17px 28px;
  border-radius: 60px;
  border: 2px solid rgba(245, 164, 85, 0.6);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
/* Orange fill slides in on hover */
.parallax-menu-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FF9A3C, #E8852A);
  border-radius: 60px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 0;
}
.parallax-menu-btn:hover::before { transform: scaleX(1); }
.parallax-menu-btn:hover {
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(232, 133, 42, 0.55);
  transform: translateY(-3px);
}
.pmb-icon {
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}
.parallax-menu-btn:hover .pmb-icon { transform: rotate(-10deg) scale(1.2); }
.pmb-text {
  position: relative;
  z-index: 1;
}
.pmb-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.35s ease;
  flex-shrink: 0;
}
.parallax-menu-btn:hover .pmb-arrow {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(5px);
}

/* ============================
   WHY US / FEATURES
   ============================ */
.features {
  padding: 100px 80px;
  max-width: 1300px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.feature-card {
  background: var(--cream);
  border: 1.5px solid rgba(212,168,75,0.15);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,133,42,0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232,133,42,0.35);
  box-shadow: 0 20px 50px rgba(232,133,42,0.12);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.4s ease;
}
.feature-card:hover .feature-icon { transform: scale(1.15) rotate(5deg); }
.feature-num {
  font-family: 'Dancing Script', cursive;
  font-size: 3rem;
  color: rgba(232,133,42,0.12);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
  font-weight: 700;
}
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================
   ABOUT STRIP
   ============================ */
.about-strip {
  background: var(--cream2);
  border-top: 1px solid rgba(212,168,75,0.2);
  border-bottom: 1px solid rgba(212,168,75,0.2);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-box {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow-dark);
  transition: transform 0.3s;
}
.stat-box:hover { transform: translateY(-4px); }
.stat-num {
  font-family: 'Dancing Script', cursive;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 6px;
}
.about-text .section-tag { display: block; }
.about-text p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-top: 16px;
}

/* ============================
   FOOTER
   ============================ */
footer {
  background: var(--brown);
  padding: 80px 80px 40px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--orange), var(--gold), var(--orange));
}
.footer-wave {
  position: absolute;
  top: -2px; left: 0; right: 0;
  color: var(--warm-white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 14px;
}
.footer-logo span { color: var(--orange-light); }
.footer-desc {
  font-size: 0.82rem;
  line-height: 1.9;
  color: rgba(255,248,238,0.5);
  max-width: 240px;
}
.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.82rem;
  color: rgba(255,248,238,0.5);
  transition: color 0.3s;
  cursor: default;
}
.footer-col ul li:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(255,248,238,0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,248,238,0.25);
  letter-spacing: 0.5px;
}
.footer-bottom p span { color: var(--orange-light); }

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.23,1,0.32,1), transform 0.8s cubic-bezier(0.23,1,0.32,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  nav, nav.scrolled { padding: 16px 40px; }
  .hero-inner { padding: 120px 40px 80px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .features { padding: 80px 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-strip { padding: 60px 40px; gap: 40px; }
  .categories { padding: 60px 40px 40px; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .nav-links { display: none; }
  .menu-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .about-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .menu-wrapper, .menu-section .section-head { padding-left: 24px; padding-right: 24px; }
}