:root {
  --bg: #0b0b0b;
  --panel: #101010;
  --muted: #b8b8b8;
  --text: #f3f3f3;
  --accent: #ff8c00;
  --accent-2: #41c95b;
  --accent-3: #ffd27f;
  --border: rgba(255, 255, 255, 0.08);
  --menu-gradient: linear-gradient(135deg, #ff8c00, #ff4500);
}

body {
  color: var(--text);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: "Montserrat";
}

a {
  color: var(--accent);
  text-decoration: none;
}

/* fonts */
.logo {
  font-family: "Kaushan Script";
  font-size: 3.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
}

.nav-links a {
  font-family: Bebas Neue;
  font-size: 2rem;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  transition: color.2s ease, text-shadow .2s ease;
}

.nav-links a:hover {
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent);
}

.social-nav {
  display: flex;
  justify-content: center;
  gap: .8rem;
}

.social-nav a {
  font-size: 2rem;
  color: var(--text);
  margin-left: .5rem;
}

.social-nav a:hover {
  color: var(--accent);
  transform: scale(1.2);
}

/* navbar wrapper */
.navbar {
  background: rgba(10, 10, 10, .96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  transition: all .25s ease;
}

.navbar-wrap {
  position: flex;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, .95);
  padding-block: .35rem;
}

.navbar .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .75rem 1rem;
  gap: 1.5rem;
}

/* bottom links bar */
.navbar-links {
  background: #111;
}

.navbar-links .nav-inner {
  flex-wrap: wrap;
}

/* mobile menu */
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(12, 12, 12, .96);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 6rem 1rem 2rem;
  z-index: 2000;
}

.mobile-drawer a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  display: flex;
  color: var(--text);
  text-decoration: none;
  align-items: center;
  gap: 0.5rem;
}

.mobile-drawer .socials {
  display: flex;
  gap: .75rem;
  margin-top: 2rem;
}

.mobile-drawer .socials a {
  font-size: 1.5rem;
  color: var(--text);
}

.mobile-drawer .socials a:hover {
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent);
}

.mobile-drawer.open {
  display: flex;
}

.drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: 0;
  color: var(--text);
  font-size: 1.75rem;
  cursor: pointer;
}

/* responsive */
@media (max-width: 768px) {
  .nav-links, .social-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
}

/* hero */
.menu-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  padding: 0 1rem;
  margin: 2rem auto;
}

.menu-hero {
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--menu-gradient);
  animation: 600% 600%;
  animation: gradientShift 12s ease infinite;
  padding: 2rem;
}

.menu-hero h1 {
  font-family: "Bebas Neue";
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--accent-3);
  text-shadow: 0 2px 6px rgba(0, 0, 0, .7);
}

.menu-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: left;
  border-left: 6px solid #ff4d00;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  max-width: 800px;
}

.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.menu-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #ff4d00;
}

.menu-card p {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.menu-card .price {
  font-weight: bold;
  font-size: 1.1rem;
  color: #222;
}

@media (max-width: 600px) {
  .menu-card {
    padding: 1rem;
    width: 90%;
  }

  .menu-card h3 {
    font-size: 1.3rem;
  }

  .menu-card p {
    font-size: 0.9rem;
  }
}

/* Categories */
.menu-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem 1rem;
}

.category-btn {
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--border);
  padding: .6rem 1.2rem;
  font-family: "Bebas Neue";
  font-size: 1.2rem;
  letter-spacing: .5px;
  border-radius: 30px;
  cursor: pointer;
  transition: background .3s ease, color .3s ease;
}

.category-btn.active {
  background: var(--accent);
  color: #000;
}

@media (hover: hover) {
  .category-btn:hover {
    background: var(--accent);
    color: #000;
  }
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.menu-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .4);
  transition: transform .3s ease, box-shadow .3s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, .6);
}

.menu-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-card h3 {
  font-family: "Bebas Neue";
  font-size: 1.8rem;
  margin: 1rem;
  color: var(--accent-3);
}

.menu-card p {
  font-size: 1rem;
  color: var(--muted);
  margin: 0 1rem 1rem;
}

.menu-card .price {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--accent-2);
  margin: 0 1rem 1.5rem;
}

/* footer */
.footer {
  background: linear-gradient(135deg, rgba(16, 16, 16, .95), rgba(10, 10, 10, .95));
  color: var(--muted);
  padding: 4rem 1rem 2rem;
  border-top: 1px solid var(--border);
  box-shaow: 0 -4px 15px rgba(0, 0, 0, .5);
  font-family: "Montserrat";
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-col h4 {
  font-family: "Bebas Neue";
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: .5rem;
  transition: color .2s ease, text-shadow .2s ease, transform .2s ease;
}

.footer-col a i {
  font-size: 1.1rem;
  color: var(--accent-3);
  transition: transform .2s ease;
}

.footer-col a:hover {
  color: var(--accent-2);
  text-shadow: 0 0 6px var(--accent-2), 0 0 12px var(--accent-3);
}

.footer-col a:hover i {
  transform: scale(1.2);
}

.footer-copy {
  font-size: .85rem;
  color: var(--muted);
  text-align: center;
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

/* responsive */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    grid-template-columns: 1fr;
  }
  
  .footer-col a {
    justify-content: center;
  }
  
  .footer-col h4 {
    font-size: 1.6rem;
  }
  
  .story-inner {
    grid-template-columns: 1fr;
  }
}
