:root {
  --primary-red: #c8102e;
  --accent-yellow: #ffcc00;
  --bg-dark: #121212;
  --card: #1f1f1f;
  --text: #ffffff;
  --muted: #a3a3a3;
}

* { box-sizing: border-box; margin:0; padding:0; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
}

/* Navbar - flyer energy */
.navbar {
  background: rgba(18,18,18,0.95) !important;
  border-bottom: 3px solid var(--primary-red);
  transition: all 0.3s;
}
.navbar.scrolled { padding: 0.8rem 0; background: rgba(18,18,18,0.98) !important; }
.navbar-brand { color: var(--accent-yellow) !important; font-size: 1.9rem; font-weight: 700; letter-spacing: 1px; }
.nav-link { color: var(--text); font-weight: 500; }
.nav-link:hover, .nav-link.active { color: var(--accent-yellow) !important; }

/* Hero - pure flyer vibe */
.hero {
  height: 100vh;
  min-height: 620px;
  background: linear-gradient(rgba(200,16,46,0.8), rgba(18,18,18,0.85)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.hero-content h1 { font-size: clamp(2.8rem, 8vw, 5.5rem); font-weight: 700; }
.hero-content .suya-fest { font-size: clamp(3.2rem, 9vw, 6.5rem); color: var(--accent-yellow); text-shadow: 4px 4px 0 #000; letter-spacing: 2px; }

/* Buttons */
.btn-primary {
  background: var(--primary-red);
  color: #fff;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s;
}
.btn-primary:hover { background: #9f0d25; transform: scale(1.05); box-shadow: 0 10px 25px rgba(200,16,46,0.5); }

.btn-accent {
  background: var(--accent-yellow);
  color: #121212;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Sections */
.section { padding: 80px 0; }
.suya-section { background: var(--primary-red); color: #fff; }

.menu-grid, .signature-mains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.menu-item, .signature-item {

  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
}
.menu-item:hover, .signature-item:hover { transform: translateY(-15px); box-shadow: 0 20px 40px rgba(200,16,46,0.3); }

.price { color: var(--accent-yellow); font-size: 1.35rem; font-weight: 700; }

.footer {
  background: #0a0a0a;
  padding: 70px 0 30px;
}
.footer a { color: var(--muted); }
.footer a:hover { color: var(--accent-yellow); }

/* Responsive */
@media (max-width: 768px) {
  .hero { height: 85vh; }
  .menu-grid { grid-template-columns: 1fr; }
}


/* Footer */
        .footer {
            background: #0a0a0a;
            padding-top: 4rem;
            padding-bottom: 3rem;
        }
        .footer h5 { margin-bottom: 1.25rem; }
        @media (max-width: 767.98px) {
            .footer .row > div {
                text-align: left !important;
                margin-bottom: 2.75rem;
                padding-bottom: 2rem;
                border-bottom: 1px solid rgba(255, 204, 0, 0.12);
            }
            .footer .row > div:last-child {
                border-bottom: none;
                margin-bottom: 1rem;
                padding-bottom: 0;
            }
        }