:root {
    --bg-color: #0D0D0D; 
    --surface-color: #1A1A1A; 
    --text-main: #F5F5F5; 
    --text-muted: #888888;
    --accent-red: #D32F2F; 
    --accent-hover: #B71C1C;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-text: 'Roboto Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { background-color: var(--bg-color); color: var(--text-main); font-family: var(--font-text); -webkit-font-smoothing: antialiased; overflow-x: hidden; text-transform: uppercase; }

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-stopped { overflow: hidden; }

.preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--bg-color); z-index: 9999; display: flex; justify-content: center; align-items: center; border: 10px solid var(--accent-red); }
.preloader-text { font-family: var(--font-heading); font-size: 5rem; color: var(--text-main); letter-spacing: 5px; clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%); }

.container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }
.section-padding { padding: 120px 0; }
.text-center { text-align: center; }
.red-text { color: var(--accent-red); }

.section-title { font-family: var(--font-heading); font-size: 6rem; color: var(--text-main); margin-bottom: 20px; line-height: 0.9; letter-spacing: 2px; }

/* Navbar */
.navbar { position: fixed; top: 0; width: 100%; padding: 25px 50px; display: flex; justify-content: space-between; align-items: center; z-index: 100; mix-blend-mode: difference; }
.logo { font-family: var(--font-heading); font-size: 2.5rem; letter-spacing: 2px; color: var(--text-main); }
.btn-primary { background: var(--text-main); color: var(--bg-color); padding: 10px 20px; font-family: var(--font-heading); font-size: 1.5rem; text-decoration: none; transition: all 0.2s; border: 2px solid var(--text-main); }
.btn-primary:hover { background: var(--accent-red); color: var(--text-main); border-color: var(--accent-red); }

/* Hero */
.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; filter: grayscale(100%) contrast(1.2); opacity: 0.5; }
.hero-noise { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E'); opacity: 0.05; pointer-events: none; z-index: 2; }
.hero-content { position: relative; z-index: 3; text-align: center; width: 100%; padding-top: 10vh; }
.hero-title { font-size: 12vw; font-family: var(--font-heading); line-height: 0.8; margin: 0; color: var(--accent-red); text-shadow: 4px 4px 0px var(--bg-color); }
.hero-sub { font-size: 1.2rem; letter-spacing: 2px; margin-top: 20px; background: var(--text-main); color: var(--bg-color); display: inline-block; padding: 5px 15px; font-weight: bold; }

/* Marquee */
.marquee-wrapper { width: 100%; background: var(--accent-red); padding: 15px 0; overflow: hidden; position: relative; border-top: 2px solid var(--text-main); border-bottom: 2px solid var(--text-main); z-index: 10; }
.marquee { display: flex; white-space: nowrap; font-family: var(--font-heading); font-size: 2rem; color: var(--text-main); letter-spacing: 2px; width: fit-content; animation: marquee 20s linear infinite; }
@keyframes marquee { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-50%, 0, 0); } }

/* Bio Section */
.bio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.bio-text p { font-size: 1.1rem; line-height: 1.6; color: var(--text-muted); border-left: 4px solid var(--accent-red); padding-left: 20px; }
.bio-image { position: relative; }
.bio-image img { width: 100%; height: auto; filter: grayscale(100%); border: 2px solid var(--text-main); transition: filter 0.5s; }
.bio-image:hover img { filter: grayscale(0%); }

/* Menu */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
.menu-col h3 { font-family: var(--font-heading); font-size: 3rem; color: var(--accent-red); margin-bottom: 20px; border-bottom: 2px solid var(--surface-color); padding-bottom: 10px; }
.menu-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--surface-color); font-size: 1rem; color: var(--text-main); }
.menu-item span:last-child { font-weight: bold; }
.menu-item:hover { color: var(--accent-red); }

/* Booking */
.booking-section { background: var(--surface-color); }
.booking-box { max-width: 900px; margin: 0 auto; background: var(--bg-color); border: 2px solid var(--text-main); padding: 60px; position: relative; }
.booking-box::after { content: ''; position: absolute; top: 10px; left: 10px; width: 100%; height: 100%; border: 2px solid var(--accent-red); z-index: -1; }
.booking-header { margin-bottom: 40px; text-align: center; }
.booking-header p { color: var(--text-muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.brutal-form input, .brutal-form select { width: 100%; padding: 15px; background: var(--surface-color); border: 1px solid var(--text-muted); color: var(--text-main); font-family: var(--font-text); font-size: 1rem; outline: none; }
.brutal-form input:focus, .brutal-form select:focus { border-color: var(--accent-red); background: #000; }
.btn-submit { width: 100%; background: var(--accent-red); color: var(--text-main); border: none; padding: 20px; font-family: var(--font-heading); font-size: 2.5rem; cursor: pointer; transition: background 0.2s; margin-top: 10px; }
.btn-submit:hover { background: var(--text-main); color: var(--bg-color); }

.success-msg { display: none; text-align: center; border: 2px solid var(--accent-red); padding: 40px; background: #000; }
.success-msg h3 { font-family: var(--font-heading); font-size: 4rem; color: var(--accent-red); }
.success-msg p { color: var(--text-main); }

/* Footer */
.footer { border-top: 4px solid var(--surface-color); padding: 80px 0 20px; }
.footer-flex { display: flex; justify-content: space-between; gap: 40px; margin-bottom: 60px; }
.footer-brand h2 { font-family: var(--font-heading); font-size: 4rem; color: var(--text-main); margin-bottom: 15px; }
.footer-brand p, .footer-brand a { color: var(--text-muted); text-decoration: none; line-height: 1.8; }
.footer-brand a:hover { color: var(--accent-red); }
.footer-hours h3 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--text-main); margin-bottom: 20px; border-bottom: 2px solid var(--accent-red); padding-bottom: 10px;}
.footer-hours ul { list-style: none; width: 300px; }
.footer-hours li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--surface-color); color: var(--text-muted); }
.footer-copy { color: var(--surface-color); font-size: 0.9rem; margin-top: 40px; }

@media (max-width: 900px) {
    .bio-grid, .menu-grid, .form-row, .footer-flex { grid-template-columns: 1fr; flex-direction: column; }
    .hero-title { font-size: 15vw; }
    .section-title { font-size: 4rem; }
    .booking-box { padding: 30px; }
    .footer-hours ul { width: 100%; }
}