:root {
  --bg-color: #050505;
  --surface-color: #111111;
  --surface-color-light: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #999999;
  --accent-color: #e60000; /* Strong red accent */
  --border-color: #222222;
  --nav-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Dark scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--surface-color-light) var(--bg-color);
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  /* Subtle texture/noise could be added here */
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
}

/* Logo Animation Container */
.logo-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  pointer-events: none; /* Let clicks pass through except when it's a navbar */
  transition: background-color 0.3s ease;
  background: transparent;
}

/* Removed .logo-wrapper.is-navbar to prevent full-screen background */

.brand-logo {
  width: 80vw;
  max-width: 1200px;
  height: auto;
  transform-origin: center;
  /* The black logo needs a subtle drop shadow to pop from the dark gradient */
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.8));
  will-change: transform;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: var(--nav-height);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 40px;
  z-index: 99; /* Just behind the logo */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.5s ease;
  background: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
}

.navbar.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 200; /* Above nav links */
  position: relative;
}

.hamburger-line {
  width: 30px;
  height: 3px;
  background-color: var(--text-primary);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left center;
}

.hamburger.is-active .hamburger-line:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg);
}

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

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-color);
}

/* Hero Spacer */
.hero {
  height: 120vh; /* Extra height to allow scrolling for the animation */
  position: relative;
  z-index: 10;
  /* Spotlight effect to make the black logo visible on black background initially */
  background: radial-gradient(circle at center, rgba(30,30,30,0.8) 0%, rgba(5,5,5,1) 60%);
}

.scroll-indicator {
  position: absolute;
  bottom: 25vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.5;
  animation: pulse 2s infinite;
}

.scroll-indicator span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.scroll-indicator .arrow {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--accent-color));
}

@keyframes pulse {
  0% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.8; transform: translateX(-50%) translateY(10px); }
  100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
}

/* Main Content */
main {
  position: relative;
  z-index: 20;
  background-color: var(--bg-color);
  /* The top padding ensures content starts after the hero */
  padding-top: 50px; 
}

.section-title {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 80px;
  color: var(--text-primary);
}

/* Menu Section */
.menu-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
}

/* Bold Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-bold {
  opacity: 0;
  transform: translateY(100px) scale(0.95);
  transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Springy bounce */
}

.reveal-bold.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* --- Cinematic Burger Scroll --- */
.burger-scroll-section {
  height: 200vh;
  position: relative;
}

.burger-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 5vw;
}

.burger-image-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  will-change: transform;
}

.burger-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.burger-content {
  position: absolute;
  left: 55%;
  max-width: 500px;
  opacity: 0;
  transform: translateX(50px);
  will-change: transform, opacity;
  background: rgba(5,5,5,0.85);
  padding: 40px;
  border-left: 5px solid var(--accent-color);
  backdrop-filter: blur(10px);
}

.burger-scroll-section.reverse .burger-content {
  left: auto;
  right: 55%;
  border-left: none;
  border-right: 5px solid var(--accent-color);
  transform: translateX(-50px);
}

.burger-name {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1;
  color: var(--text-primary);
  text-transform: uppercase;
}

.burger-desc {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.burger-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-color);
}

/* --- Brutalist Sections --- */
.brutalist-section {
  padding: 150px 20px;
  position: relative;
  border-top: 2px solid var(--surface-color-light);
  overflow: hidden;
}

.brutal-title {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.85;
  margin-bottom: 60px;
  text-align: center;
  letter-spacing: -2px;
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 2px var(--accent-color);
}

/* Brutalist Delivery */
.brutal-delivery-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .brutal-delivery-buttons {
    flex-direction: row;
  }
}

.btn-brutal {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-decoration: none;
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.btn-brutal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: currentColor;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scaleY(0);
  transform-origin: bottom;
}

.btn-brutal:hover::before {
  transform: scaleY(1);
}

.btn-brutal span {
  position: relative;
  z-index: 2;
  mix-blend-mode: difference;
}

.btn-brutal.foodora { background-color: #d70f64; }
.btn-brutal.wolt { background-color: #009de0; }

/* Brutalist Hours */
.brutal-hours-grid {
  max-width: 800px;
  margin: 0 auto;
  border: 4px solid var(--text-primary);
}

.brutal-hour-row {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 2px solid var(--surface-color-light);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brutal-hour-row:last-child {
  border-bottom: none;
}

.brutal-hour-row.closed {
  background: var(--accent-color);
  color: #fff;
}

/* Brutalist Location */
.brutal-location-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30vw;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  z-index: 0;
  pointer-events: none;
}

.brutal-location-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.brutal-location-content h2 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.brutal-social-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 20px 40px;
  border: 4px solid var(--accent-color);
  color: var(--accent-color);
  font-size: 2rem;
  font-weight: 900;
  text-decoration: none;
  transition: all 0.2s ease;
}

.brutal-social-btn:hover {
  background: var(--accent-color);
  color: #fff;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 20px;
  background: var(--bg-color);
  color: var(--border-color);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 105;
    /* Bold circular slide out animation */
    clip-path: circle(0% at 90% 40px);
    transition: clip-path 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .nav-links.nav-active {
    clip-path: circle(150% at 90% 40px);
  }

  .nav-links a {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -1px;
  }

  .burger-content {
    left: 5%;
    right: 5%;
    top: auto;
    bottom: 5vh;
    max-width: 90%;
    padding: 30px;
    text-align: center;
    border: 2px solid var(--accent-color);
  }

  .burger-scroll-section.reverse .burger-content {
    left: 5%;
    right: 5%;
    border: 2px solid var(--accent-color);
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .burger-name {
    font-size: 2.5rem;
  }
  
  .brutal-title {
    font-size: 3rem;
  }
  
  .btn-brutal {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .brand-logo {
    width: 90vw;
  }
}
