/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500&display=swap');

/* ===== VARIABLES ===== */
:root {
  --neon-red: #ff3c1f;
  --neon-yellow: #ffd700;
  --neon-green: #39ff14;
  --neon-orange: #ff6b00;
  --dark: #0d0a08;
  --dark-2: #1a1208;
  --dark-3: #221a0e;
  --cream: #f5ead8;
  --warm-white: #fdf8f0;
  --text-muted: #9e8a70;
  --border: rgba(255, 215, 0, 0.15);

  --glow-red: 0 0 10px #ff3c1f, 0 0 30px #ff3c1f66, 0 0 60px #ff3c1f33;
  --glow-yellow: 0 0 10px #ffd700, 0 0 30px #ffd70066, 0 0 60px #ffd70033;
  --glow-green: 0 0 10px #39ff14, 0 0 30px #39ff1466, 0 0 60px #39ff1433;
  --glow-orange: 0 0 10px #ff6b00, 0 0 30px #ff6b0066;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== NOISE TEXTURE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.05em; line-height: 1.1; }
.serif { font-family: 'Playfair Display', serif; }

/* ===== NEON TEXT EFFECTS ===== */
.neon-red { color: var(--neon-red); text-shadow: var(--glow-red); }
.neon-yellow { color: var(--neon-yellow); text-shadow: var(--glow-yellow); }
.neon-green { color: var(--neon-green); text-shadow: var(--glow-green); }
.neon-orange { color: var(--neon-orange); text-shadow: var(--glow-orange); }

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 3rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(13,10,8,0.98), rgba(13,10,8,0.85));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255,107,0,0.5));
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  transition: color 0.2s, text-shadow 0.2s;
  position: relative;
}

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

.nav-links a:hover { color: var(--neon-yellow); text-shadow: var(--glow-yellow); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--neon-orange); text-shadow: var(--glow-orange); }
.nav-links a.active::after { width: 100%; background: var(--neon-orange); box-shadow: var(--glow-orange); }

.nav-cta {
  background: var(--neon-red) !important;
  color: white !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 2px;
  text-shadow: none !important;
  box-shadow: var(--glow-red);
  transition: box-shadow 0.2s, transform 0.2s !important;
}

.nav-cta:hover { transform: scale(1.05); box-shadow: 0 0 20px #ff3c1f, 0 0 50px #ff3c1f99 !important; }
.nav-cta::after { display: none !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,60,31,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(57,255,20,0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 60% 80%, rgba(255,215,0,0.08) 0%, transparent 40%),
    var(--dark);
  z-index: 0;
}

/* Animated lines */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 60px,
    rgba(255,215,0,0.03) 60px,
    rgba(255,215,0,0.03) 61px
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}

.hero-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  color: var(--neon-green);
  text-shadow: var(--glow-green);
  margin-bottom: 1rem;
  display: block;
  animation: fadeSlideUp 0.8s ease forwards;
}

.hero h1 {
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.9;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.8s 0.15s ease both;
}

.hero h1 .line1 { display: block; color: var(--neon-yellow); text-shadow: var(--glow-yellow); }
.hero h1 .line2 { display: block; color: var(--cream); }
.hero h1 .line3 { display: block; color: var(--neon-red); text-shadow: var(--glow-red); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  animation: fadeSlideUp 0.8s 0.3s ease both;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.45s ease both;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 2px;
}

.btn-primary {
  background: var(--neon-red);
  color: white;
  box-shadow: var(--glow-red);
}

.btn-primary:hover {
  background: #ff5a40;
  box-shadow: 0 0 20px #ff3c1f, 0 0 60px #ff3c1f66;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--neon-yellow);
  border: 1px solid var(--neon-yellow);
  box-shadow: 0 0 8px rgba(255,215,0,0.2);
}

.btn-outline:hover {
  background: rgba(255,215,0,0.1);
  box-shadow: var(--glow-yellow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-ghost:hover {
  border-color: var(--neon-orange);
  color: var(--neon-orange);
  box-shadow: var(--glow-orange);
}

/* ===== SECTION ===== */
section { padding: 6rem 2rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--neon-green);
  text-shadow: var(--glow-green);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
}

/* ===== DIVIDER ===== */
.neon-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--neon-orange), transparent);
  box-shadow: 0 0 10px var(--neon-orange);
  margin: 4rem 0;
  opacity: 0.5;
}

/* ===== HIGHLIGHTS / FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--neon-red), var(--neon-yellow));
  box-shadow: 0 0 12px var(--neon-orange);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.feature-card:hover { transform: translateY(-6px); border-color: rgba(255,107,0,0.3); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.6rem;
  color: var(--neon-yellow);
  text-shadow: var(--glow-yellow);
  margin-bottom: 0.75rem;
}

.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== MENU PAGE ===== */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(to bottom, var(--dark-2), var(--dark));
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,60,31,0.1) 0%, transparent 70%);
}

.page-hero h1 {
  font-size: clamp(3.5rem, 9vw, 8rem);
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-top: 0.75rem;
}

/* Menu tabs */
.menu-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.menu-tab {
  padding: 0.6rem 1.6rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  transition: all 0.25s;
}

.menu-tab:hover { color: var(--cream); border-color: rgba(255,255,255,0.3); }
.menu-tab.active { color: var(--neon-yellow); border-color: var(--neon-yellow); text-shadow: var(--glow-yellow); box-shadow: 0 0 12px rgba(255,215,0,0.15); }

.menu-category { display: none; }
.menu-category.active { display: block; }

.menu-section-title {
  font-size: 2.5rem;
  color: var(--neon-red);
  text-shadow: var(--glow-red);
  margin-bottom: 0.5rem;
}

.menu-section-desc {
  color: var(--text-muted);
  font-style: italic;
  font-family: 'Playfair Display', serif;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.menu-item {
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.3s;
}

.menu-item:hover { border-color: rgba(255,107,0,0.4); }

.menu-item-info { flex: 1; }

.menu-item-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.menu-item-badges {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
}

.badge-vegan { background: rgba(57,255,20,0.15); color: var(--neon-green); border: 1px solid rgba(57,255,20,0.3); }
.badge-spicy { background: rgba(255,60,31,0.15); color: var(--neon-red); border: 1px solid rgba(255,60,31,0.3); }
.badge-popular { background: rgba(255,215,0,0.15); color: var(--neon-yellow); border: 1px solid rgba(255,215,0,0.3); }
.badge-gf { background: rgba(255,107,0,0.15); color: var(--neon-orange); border: 1px solid rgba(255,107,0,0.3); }

.menu-item-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--neon-orange);
  text-shadow: var(--glow-orange);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== ABOUT PAGE ===== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}

.about-visual {
  position: relative;
}

.about-badge {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.about-badge img {
  width: 80%;
  filter: drop-shadow(0 0 20px rgba(255,107,0,0.4));
}

.about-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,60,31,0.08) 0%, transparent 70%);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

.about-text p:first-of-type {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--cream);
  font-style: italic;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-item {
  padding: 2rem;
  background: var(--dark-2);
  border: 1px solid var(--border);
  text-align: center;
}

.value-item .icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.value-item h4 { font-size: 1.4rem; color: var(--neon-yellow); text-shadow: var(--glow-yellow); margin-bottom: 0.5rem; }
.value-item p { font-size: 0.9rem; color: var(--text-muted); }

/* ===== RESERVATION PAGE ===== */
.reservation-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 { font-size: 3rem; margin-bottom: 2rem; }

.info-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.info-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  background: var(--dark-2);
}

.info-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--neon-orange);
  text-shadow: var(--glow-orange);
  margin-bottom: 0.25rem;
}

.info-value { color: var(--cream); font-size: 0.95rem; }

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1.5rem;
  margin-top: 0.5rem;
}

.hours-day { color: var(--text-muted); font-size: 0.9rem; }
.hours-time { color: var(--cream); font-size: 0.9rem; }

/* Form */
.reservation-form {
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 3rem;
}

.form-title {
  font-size: 2rem;
  color: var(--neon-yellow);
  text-shadow: var(--glow-yellow);
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }

label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

input, select, textarea {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--cream);
  padding: 0.8rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  border-radius: 2px;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--neon-orange);
  box-shadow: 0 0 0 2px rgba(255,107,0,0.15);
}

select option { background: var(--dark-3); }
textarea { resize: vertical; min-height: 100px; }

.form-submit { margin-top: 1.5rem; width: 100%; font-size: 1.1rem; padding: 1rem; }

.success-msg {
  background: rgba(57,255,20,0.08);
  border: 1px solid rgba(57,255,20,0.3);
  color: var(--neon-green);
  padding: 1.25rem;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(57,255,20,0.1);
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo img { height: 50px; filter: drop-shadow(0 0 8px rgba(255,107,0,0.4)); }

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--neon-yellow); text-shadow: var(--glow-yellow); }

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: none; }

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

@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.neon-pulse { animation: pulse-glow 2.5s ease-in-out infinite; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; gap: 1.5rem; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; background: rgba(13,10,8,0.98); padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .about-story { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { margin: 0 auto; }
  .reservation-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
}

@media (max-width: 600px) {
  section { padding: 4rem 1.5rem; }
  .reservation-form { padding: 2rem 1.5rem; }
  .menu-grid { grid-template-columns: 1fr; }
}
