/* ===== FAVOUR FOOD PALACE — STYLESHEET ===== */

:root {
  --ink: #1B1F1C;
  --panel: #23281F;
  --parchment: #F2E9D8;
  --brick: #A63D2F;
  --brick-dark: #872F23;
  --olive: #5C6B47;
  --muted: #A8A08E;
  --font-display: 'Bitter', serif;
  --font-body: 'Work Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--ink); color: var(--parchment); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.section-heading { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; line-height: 1.15; color: var(--parchment); }
.section-sub { color: var(--muted); margin-top: 10px; font-size: 1rem; }
.standard-eyebrow { color: var(--brick); font-weight: 600; letter-spacing: 1.5px; font-size: 0.85rem; margin-bottom: 10px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px; border-radius: 4px; font-weight: 600; font-size: 0.95rem; border: 2px solid transparent; cursor: pointer; transition: transform 0.2s ease, background 0.2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-brick { background: var(--brick); color: var(--parchment); }
.btn-brick:hover { background: var(--brick-dark); }
.btn-outline { border-color: rgba(242,233,216,0.35); color: var(--parchment); }
.btn-outline:hover { border-color: var(--parchment); }
.btn-outline-dark { background: var(--olive); color: var(--parchment); }
.btn-dark { background: var(--ink); color: var(--parchment); }

/* Brand */
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 42px; height: 42px; border: 2px solid var(--brick); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--brick); flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--parchment); }
.brand-sub { font-size: 0.62rem; letter-spacing: 2px; color: var(--muted); font-weight: 500; text-transform: uppercase; }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(27,31,28,0.92); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(166,61,47,0.2); transition: box-shadow 0.3s ease; }
.nav-container { max-width: 1280px; margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-links { display: flex; gap: 30px; font-weight: 500; font-size: 0.92rem; }
.nav-links a { position: relative; padding-bottom: 4px; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--brick); }
.nav-links a.active::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--brick); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; z-index: 1100; }
.hamburger span { width: 24px; height: 2px; background: var(--brick); transition: 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Hero */
.hero { position: relative; min-height: 90vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-blend { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(27,31,28,0.35) 0%, rgba(27,31,28,0.92) 80%, rgba(27,31,28,1) 100%), linear-gradient(90deg, rgba(27,31,28,0.5) 0%, rgba(166,61,47,0.18) 100%); }

.hero-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; width: 100%; padding: 150px 24px 90px; opacity: 0; transform: translateY(24px); animation: heroIn 0.9s ease forwards 0.15s; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

.hero-eyebrow { color: var(--brick); font-weight: 600; letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 16px; }
.hero-headline { font-family: var(--font-display); font-weight: 700; font-size: 3.6rem; line-height: 1.12; max-width: 760px; color: var(--parchment); }
.hero-desc { color: var(--muted); max-width: 520px; margin: 24px 0 32px; line-height: 1.7; font-size: 1.02rem; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.slider-dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3; }
.slider-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(242,233,216,0.4); cursor: pointer; transition: 0.3s; }
.slider-dots .dot.active { background: var(--brick); width: 24px; border-radius: 6px; }

/* THE FAVOUR STANDARD — post-hero */
.standard { background: var(--parchment); color: var(--ink); padding: 90px 24px; }
.standard-inner { max-width: 1280px; margin: 0 auto; }
.standard-heading { margin-bottom: 50px; max-width: 600px; }
.standard .section-heading { color: var(--ink); }
.standard-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.standard-item { border-top: 3px solid var(--brick); padding-top: 22px; }
.standard-num { font-family: var(--font-display); font-size: 0.95rem; color: var(--brick); font-weight: 700; }
.standard-item h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin: 10px 0 12px; color: var(--ink); }
.standard-item p { color: #4A4436; line-height: 1.65; font-size: 0.98rem; }

/* Signature dishes */
.dishes { padding: 90px 24px 60px; max-width: 1280px; margin: 0 auto; }
.dishes-header { margin-bottom: 40px; }
.dishes-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.dish-card { background: var(--panel); border: 1px solid rgba(242,233,216,0.08); overflow: hidden; transition: transform 0.25s ease; }
.dish-card:hover { transform: translateY(-6px); }
.dish-card img { width: 100%; height: 150px; object-fit: cover; }
.dish-body { padding: 16px; }
.dish-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--parchment); }
.dish-body p { font-size: 0.8rem; color: var(--muted); margin: 6px 0 14px; }
.dish-footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-family: var(--font-display); font-weight: 700; color: var(--brick); font-size: 1.05rem; }
.order-pill { background: #25D366; color: #fff; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: transform 0.2s ease; }
.order-pill:hover { transform: scale(1.12); }

/* About */
.about { display: grid; grid-template-columns: 1fr 1fr; max-width: 1280px; margin: 60px auto 0; gap: 60px; align-items: center; padding: 40px 24px; }
.about-media img { width: 100%; height: 460px; object-fit: cover; }
.about-content p { color: var(--muted); margin: 18px 0 26px; line-height: 1.75; font-size: 1.02rem; max-width: 480px; }
.about-list { margin-bottom: 32px; display: flex; flex-direction: column; gap: 16px; }
.about-list li { display: flex; align-items: center; gap: 14px; font-size: 0.98rem; color: var(--parchment); }
.about-list i { color: var(--brick); font-size: 1.1rem; width: 22px; }

/* Menu */
.menu-section { background: var(--panel); padding: 90px 24px; margin-top: 80px; }
.menu-header { max-width: 1280px; margin: 0 auto 36px; }
.menu-filters { max-width: 1280px; margin: 0 auto 44px; display: flex; flex-wrap: wrap; gap: 12px; }
.filter-btn { background: transparent; border: 1.5px solid rgba(166,61,47,0.4); color: var(--parchment); padding: 9px 22px; border-radius: 4px; font-weight: 600; font-size: 0.86rem; cursor: pointer; transition: 0.2s ease; }
.filter-btn:hover { border-color: var(--brick); }
.filter-btn.active { background: var(--brick); color: var(--parchment); border-color: var(--brick); }

.menu-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.menu-item { background: var(--ink); border: 1px solid rgba(242,233,216,0.08); overflow: hidden; transition: transform 0.25s ease; }
.menu-item.hidden { display: none; }
.menu-item:hover { transform: translateY(-6px); }
.menu-item img { width: 100%; height: 190px; object-fit: cover; }
.menu-item-body { padding: 20px; }
.menu-item-body h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.menu-item-body p { color: var(--muted); font-size: 0.85rem; line-height: 1.5; margin-bottom: 18px; min-height: 40px; }
.menu-item-footer { display: flex; align-items: center; justify-content: space-between; }
.menu-order { background: var(--brick); color: var(--parchment); padding: 8px 18px; border-radius: 4px; font-size: 0.82rem; font-weight: 600; transition: background 0.2s ease; }
.menu-order:hover { background: var(--brick-dark); }

/* CTA band */
.cta-band { background: var(--brick); padding: 60px 24px; }
.cta-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 28px; }
.cta-eyebrow { font-family: var(--font-display); font-weight: 700; color: var(--parchment); opacity: 0.8; font-size: 0.95rem; }
.cta-inner h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; color: var(--parchment); max-width: 560px; }

/* Gallery */
.gallery { max-width: 1280px; margin: 0 auto; padding: 90px 24px; }
.gallery-header { margin-bottom: 40px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 16px; }
.gallery-tall { grid-row: span 2; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(27,31,28,0.96); z-index: 2000; align-items: center; justify-content: center; padding: 40px; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; }
.lightbox-close { position: absolute; top: 24px; right: 32px; font-size: 2.2rem; color: var(--parchment); cursor: pointer; }

/* Footer */
.footer { background: #151915; padding: 60px 24px 26px; }
.footer-top { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 30px; padding-bottom: 32px; border-bottom: 1px solid rgba(242,233,216,0.08); }
.footer-info { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-item i { color: var(--brick); font-size: 1.1rem; margin-top: 3px; }
.footer-item strong { display: block; font-size: 0.92rem; }
.footer-item span { font-size: 0.8rem; color: var(--muted); }

.footer-bottom { max-width: 1280px; margin: 26px auto 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 0.78rem; color: var(--muted); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: var(--brick); color: var(--parchment); display: flex; align-items: center; justify-content: center; transition: transform 0.2s ease; }
.footer-social a:hover { transform: translateY(-3px); }

.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.7rem; box-shadow: 0 6px 20px rgba(0,0,0,0.4); z-index: 900; }

/* Responsive */
@media (max-width: 1024px) {
  .dishes-row { grid-template-columns: repeat(3, 1fr); }
  .standard-grid { grid-template-columns: 1fr; gap: 32px; }
  .about { grid-template-columns: 1fr; }
  .about-media img { height: 320px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .gallery-tall { grid-row: span 1; }
  .hero-headline { font-size: 2.9rem; }
}

@media (max-width: 768px) {
  .nav-links { position: fixed; top: 0; right: -100%; height: 100vh; width: 72%; background: var(--ink); flex-direction: column; justify-content: center; align-items: center; gap: 28px; transition: right 0.35s ease; z-index: 1050; }
  .nav-links.active { right: 0; }
  .hamburger { display: flex; }
  .hero-content { padding: 130px 20px 70px; }
  .hero-headline { font-size: 2.3rem; }
  .hero-desc { font-size: 0.95rem; }
  .standard { padding: 60px 24px; }
  .dishes-row { grid-template-columns: repeat(2, 1fr); }
  .section-heading { font-size: 1.9rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .dishes-row { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2rem; }
  .menu-filters { gap: 8px; }
  .filter-btn { padding: 7px 16px; font-size: 0.78rem; }
}