:root {
  --primary: #c1502e;
  --secondary: #7c8b4a;
  --accent: #e8a33d;
  --dark: #17100c;
  --dark2: #241811;
  --cream: #f7efe1;
  --text: #2b1d14;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

h1, h2, h3, .signature { font-family: 'Playfair Display', serif; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.eyebrow {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: inline-block;
}

/* Decorative triangle pattern strip */
.pattern-strip {
  height: 14px;
  background:
    linear-gradient(135deg, var(--primary) 25%, transparent 25%) 0 0,
    linear-gradient(-135deg, var(--secondary) 25%, transparent 25%) 0 0,
    linear-gradient(45deg, var(--accent) 25%, transparent 25%) 0 0;
  background-size: 24px 14px;
  background-repeat: repeat-x;
  background-color: var(--cream);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.02rem;
  transition: 0.3s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 0.3px;
}

.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 10px 25px rgba(193,80,46,0.35); }
.btn-primary:hover { background: #a5401f; transform: translateY(-3px); box-shadow: 0 14px 30px rgba(193,80,46,0.45); }

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

.btn-outline-light { border: 2px solid var(--white); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--dark); transform: translateY(-3px); }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(23, 16, 12, 0.9);
  backdrop-filter: blur(10px);
  transition: 0.35s;
  padding: 6px 0;
}

.navbar.scrolled { padding: 0; box-shadow: 0 6px 25px rgba(0,0,0,0.3); }

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  font-family: 'Playfair Display', serif;
}

.nav-logo img {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  padding: 2px;
  background: var(--dark);
}

.nav-links { display: flex; gap: 34px; }

.nav-links a {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding-bottom: 6px;
}

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

.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }
.nav-links a.active, .nav-links a:hover { color: var(--accent); }

.nav-cta { font-size: 0.9rem; padding: 12px 24px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 28px; height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider { position: absolute; inset: 0; }

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s ease-in-out, transform 8s ease;
}

.hero-slide.active { opacity: 1; transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15,9,6,0.92) 15%, rgba(15,9,6,0.55) 60%, rgba(15,9,6,0.35) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
  padding: 0 32px;
  margin: 0 auto;
  width: 100%;
  color: var(--white);
}

.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  line-height: 1.1;
  margin: 16px 0 22px;
  font-weight: 700;
  letter-spacing: -1px;
}

.hero-content h1 span { color: var(--accent); }

.hero-text { font-size: 1.2rem; opacity: 0.92; margin-bottom: 36px; max-width: 520px; line-height: 1.6; }

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

.hero-dots {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 12px; z-index: 2;
}

.hero-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: 0.3s;
}

.hero-dot.active { background: var(--accent); width: 32px; border-radius: 6px; }

/* STATUS BADGE */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--white);
}

.status-badge::before {
  content: '';
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #4caf50;
  animation: pulse-dot 1.5s infinite;
}

.status-badge.closed::before { background: #e05252; animation: none; }

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(76,175,80,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(76,175,80,0); }
  100% { box-shadow: 0 0 0 0 rgba(76,175,80,0); }
}

/* TRUST BAR */
.trust-bar {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  background: var(--cream);
  padding: 50px 24px;
}

.trust-item { display: flex; align-items: center; gap: 16px; max-width: 240px; }

.trust-item i {
  font-size: 1.9rem; color: var(--white);
  background: var(--primary);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.trust-item h4 { font-size: 1.05rem; margin-bottom: 3px; font-weight: 700; }
.trust-item p { font-size: 0.85rem; opacity: 0.7; }

/* SOCIAL PROOF STRIP */
.social-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  background: var(--white);
  padding: 40px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.proof-item { text-align: center; }
.proof-item i { font-size: 1.6rem; color: var(--primary); margin-bottom: 8px; display: block; }
.proof-item strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--text); }
.proof-item span { font-size: 0.82rem; opacity: 0.65; }

/* SECTION HEAD */
.section-head { text-align: center; max-width: 620px; margin: 0 auto 56px; padding: 0 24px; }
.section-head h2 { font-size: clamp(2.2rem, 5vw, 3rem); margin-bottom: 10px; font-weight: 700; }
.subtext { opacity: 0.7; font-size: 1.05rem; }

/* MENU / DISHES */
.menu-section { background: var(--dark); color: var(--white); padding: 110px 24px; }
.menu-section .eyebrow { color: var(--accent); }

.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
}

.dish-card {
  background: var(--dark2);
  border-radius: 18px;
  overflow: hidden;
  transition: 0.35s;
  border: 1px solid rgba(255,255,255,0.06);
}

.dish-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.5); border-color: var(--accent); }

.dish-card img { height: 210px; width: 100%; object-fit: cover; transition: 0.4s; }
.dish-card:hover img { transform: scale(1.06); }

.dish-info { padding: 22px; }
.dish-info h3 { font-size: 1.2rem; margin-bottom: 14px; font-weight: 600; }

.dish-bottom { display: flex; justify-content: space-between; align-items: center; }
.price { color: var(--accent); font-weight: 800; font-size: 1.2rem; }

.dish-bottom a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary);
  border-radius: 50%;
  color: var(--white);
  transition: 0.3s;
}

.dish-bottom a:hover { background: var(--accent); transform: rotate(45deg); }

/* ABOUT */
.about-section {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 64px; padding: 110px 24px;
  max-width: 1240px; margin: 0 auto;
}

.about-image { flex: 1; min-width: 300px; position: relative; }
.about-image img { border-radius: 24px; box-shadow: 0 25px 50px rgba(0,0,0,0.2); }
.about-image::before {
  content: '';
  position: absolute; inset: -14px;
  border: 3px solid var(--accent);
  border-radius: 24px;
  z-index: -1;
}

.about-content { flex: 1; min-width: 300px; }
.about-content h2 { font-size: clamp(2rem, 5vw, 2.7rem); margin-bottom: 20px; font-weight: 700; }
.about-content p { opacity: 0.85; line-height: 1.8; margin-bottom: 16px; font-size: 1.05rem; }
.signature { font-style: italic; color: var(--primary); font-size: 1.3rem; }

.about-points { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 28px; }
.about-points div { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 600; }
.about-points i { color: var(--white); background: var(--secondary); width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* GALLERY */
.gallery-section { background: var(--cream); padding: 110px 24px; }

.gallery-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  height: 250px; width: 100%;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.gallery-grid img:hover { transform: scale(1.04) rotate(-1deg); box-shadow: 0 20px 35px rgba(0,0,0,0.2); }

/* LIGHTBOX */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center; justify-content: center;
}

.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: 12px; }

.lightbox-close {
  position: absolute; top: 28px; right: 36px;
  font-size: 2.6rem; color: var(--white); cursor: pointer;
  transition: 0.3s;
}
.lightbox-close:hover { color: var(--accent); transform: rotate(90deg); }

/* CTA BANNER */
.cta-banner {
  position: relative;
  background: url('../images/choma-beef-platter.jpg') center/cover fixed;
  padding: 120px 24px;
  text-align: center;
  color: var(--white);
}

.cta-overlay { position: absolute; inset: 0; background: rgba(15,9,6,0.85); }
.cta-content { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(2.2rem, 5vw, 3rem); margin-bottom: 14px; font-weight: 700; }
.cta-content p { opacity: 0.88; margin-bottom: 34px; font-size: 1.1rem; }
.cta-buttons { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }

/* FOOTER */
.footer { background: var(--dark); color: var(--white); padding: 70px 24px 24px; }

.footer-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img { width: 60px; margin-bottom: 12px; border-radius: 50%; border: 2px solid var(--accent); padding: 2px; }
.footer-brand p { opacity: 0.7; font-size: 0.9rem; }

.footer-col h4 { margin-bottom: 16px; color: var(--accent); font-size: 1.05rem; }
.footer-col p { opacity: 0.85; font-size: 0.92rem; margin-bottom: 12px; display: flex; gap: 10px; align-items: flex-start; }

.footer-socials { display: flex; gap: 14px; margin-bottom: 16px; }
.footer-socials a {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: 0.3s;
}
.footer-socials a:hover { background: var(--primary); transform: translateY(-4px); }

.footer-bottom { text-align: center; padding-top: 24px; font-size: 0.85rem; opacity: 0.6; }

/* FLOATING WHATSAPP BUTTON */
.wa-float {
  position: fixed;
  bottom: 30px; left: 30px;
  width: 60px; height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
  z-index: 950;
  animation: wa-pulse 2s infinite;
}

.wa-float:hover { transform: scale(1.1); }

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* STICKY MOBILE ORDER BAR */
.mobile-order-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 940;
  background: var(--dark);
  padding: 12px 16px;
  gap: 12px;
  box-shadow: 0 -8px 25px rgba(0,0,0,0.3);
}

.mob-btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}

.mob-call { background: rgba(255,255,255,0.12); }
.mob-order { background: #25D366; }

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 50px; height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.3s;
  z-index: 900;
  box-shadow: 0 10px 25px rgba(193,80,46,0.4);
}

.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); }

/* ANIMATIONS */
.fade-in-up { opacity: 0; transform: translateY(35px); transition: 0.9s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* MOBILE */
@media (max-width: 860px) {
  .nav-links {
    position: fixed; top: 0; right: -100%;
    background: var(--dark);
    flex-direction: column;
    width: 260px; height: 100vh;
    padding: 100px 32px 32px;
    gap: 28px;
    transition: 0.35s;
  }
  .nav-links.open { right: 0; box-shadow: -10px 0 30px rgba(0,0,0,0.4); }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .about-section { flex-direction: column; gap: 40px; }
  .cta-banner { background-attachment: scroll; }
  .mobile-order-bar { display: flex; }
  .wa-float { bottom: 90px; left: 20px; width: 54px; height: 54px; font-size: 1.6rem; }
  body { padding-bottom: 70px; }
}