:root {
    --bg-dark: #050505;
    --bg-card: #111111;
    --accent: #ff3300;
    --accent-hover: #cc2900;
    --text-pure: #ffffff;
    --text-muted: #888888;
    
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Reset & Normalize */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Custom Cursor Strategy */
}

html, body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-dark);
    color: var(--text-pure);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Classes */
.text-accent { color: var(--accent); }
.overflow-hidden { overflow: hidden; }
.section-padding { padding: 8rem 0; }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Custom Cursor */
.custom-cursor, .custom-cursor-follower {
    position: fixed;
    top: 0; left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}
.custom-cursor {
    width: 8px; height: 8px;
    background-color: var(--accent);
}
.custom-cursor-follower {
    width: 30px; height: 30px;
    border: 1px solid rgba(255, 51, 0, 0.5);
    transition: transform 0.15s ease-out, width 0.2s, height 0.2s, background-color 0.2s;
}
.custom-cursor-follower.hover-active {
    width: 60px; height: 60px;
    background: rgba(255, 51, 0, 0.1);
    border-color: var(--accent);
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: background-color 0.3s, backdrop-filter 0.3s, transform 0.4s;
}
.header.scrolled {
    background-color: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header.hidden {
    transform: translateY(-100%);
}
.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-pure);
    text-decoration: none;
    letter-spacing: 1px;
}
.logo span { color: var(--accent); }

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-pure);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 100%; left: 0;
    color: var(--accent);
    transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}
.nav-link:hover { color: transparent; }
.nav-link:hover::before { transform: translateY(-100%); }

.btn-primary {
    background-color: var(--accent);
    color: var(--text-pure);
    padding: 0.8rem 1.8rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.3s;
    display: inline-block;
    border: none;
}
.btn-primary:hover {
    background-color: var(--text-pure);
    color: var(--bg-dark);
    transform: translateY(-2px);
}
.btn-primary.large {
    padding: 1.2rem 3rem;
    font-size: 1.5rem;
}

/* Mobile Menu */
.burger-menu {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    z-index: 101;
}
.burger-menu .line {
    width: 35px; height: 3px;
    background-color: var(--text-pure);
    transition: var(--transition-smooth);
}
.mobile-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background-color: var(--bg-dark);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open {
    transform: translateY(0);
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.mobile-link {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--text-pure);
    text-decoration: none;
}
.mobile-socials {
    margin-top: 4rem;
    display: flex;
    gap: 2rem;
}
.mobile-socials a { color: var(--text-muted); text-decoration: none;}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-image-wrapper {
    position: absolute;
    top: -10%; left: -10%;
    width: 120%; height: 120%;
    z-index: -2;
}
.hero-image {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-dark) 0%, rgba(5,5,5,0.6) 50%, rgba(5,5,5,0.9) 100%);
    z-index: -1;
}
.hero-content {
    max-width: 1000px;
    padding: 0 5%;
    z-index: 2;
    margin-top: 5rem;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.9;
    text-transform: uppercase;
    margin: 0;
}
.outline-text {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.8);
}
.glitch-wrapper {
    position: relative;
    display: inline-block;
}
.glitch {
    position: relative;
    color: var(--text-pure);
}
.hero-subtitle {
    font-size: 1.25rem;
    color: #dedede;
    margin: 2rem auto 3rem;
    max-width: 700px;
    line-height: 1.6;
}
.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.btn-secondary {
    color: var(--text-pure);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    border-bottom: 1px solid var(--text-pure);
    padding-bottom: 5px;
    transition: color 0.3s, border-color 0.3s;
}
.btn-secondary:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.scroll-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}
.scroll-line {
    width: 2px; height: 60px;
    background: rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 50%;
    background: var(--accent);
    animation: scrollDrop 2s infinite cubic-bezier(0.65, 0, 0.35, 1);
}
@keyframes scrollDrop {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

/* About Section */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.section-badge {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}
.about .section-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}
.prose p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.parallax-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}
.visual-wrapper {
    position: absolute;
    top: -15%; left: 0;
    width: 100%; height: 130%;
}
.visual-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* Marquee Section */
.marquee-section {
    padding: 3rem 0;
    background-color: var(--accent);
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}
.marquee-track {
    display: inline-flex;
    animation: marqueeMove 20s linear infinite;
}
.marquee-track span {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--bg-dark);
    padding: 0 2rem;
}
@keyframes marqueeMove {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-33.33%); }
}

/* Menu Grid Prod */
.menu-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-inline: auto;
}
.menu-header .section-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8vw, 6rem);
}
.menu-intro {
    font-size: 1.25rem;
    color: var(--text-muted);
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}
.menu-card {
    background-color: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-smooth);
    border: 1px solid rgba(255,255,255,0.02);
}
.menu-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,51,0,0.3);
}
.card-image-box {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}
.card-image-box img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.menu-card:hover .card-image-box img {
    transform: scale(1.08);
}
.card-overlay {
    position: absolute;
    top: 20px; right: 20px;
}
.price-tag {
    background: var(--accent);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    padding: 5px 15px;
    border-radius: 4px;
}
.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.card-content h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}
.card-content .desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}
.add-btn {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: all 0.3s;
}
.add-btn:hover {
    background: var(--accent);
    color: var(--text-pure);
}

/* Order Section */
.order-section {
    padding: 10rem 5%;
    text-align: center;
    background: linear-gradient(0deg, #111 0%, var(--bg-dark) 100%);
}
.huge-text {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 8rem);
    margin-bottom: 4rem;
}
.delivery-options {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.delivery-card {
    background: rgba(255,255,255,0.03);
    padding: 3rem;
    border-radius: 8px;
    max-width: 400px;
    text-decoration: none;
    color: var(--text-pure);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-smooth);
}
.delivery-card:hover {
    background: var(--accent);
    transform: translateY(-5px);
}
.d-icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.delivery-card h4 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 0.5rem;}
.delivery-card p { color: rgba(255,255,255,0.7); }

/* Footer */
.footer {
    background-color: #000;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
.footer-brand p { margin-top: 1rem; color: var(--text-muted); line-height: 1.8;}
.footer h4 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 1rem;}
.footer-links, .footer-social { display: flex; flex-direction: column; gap: 0.8rem;}
.footer a { color: var(--text-muted); text-decoration: none; transition: color 0.3s;}
.footer a:hover { color: var(--accent); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}
.legal { display: flex; gap: 1rem;}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .desktop-nav { display: none; }
    .burger-menu { display: flex; }
    .split-grid { grid-template-columns: 1fr; gap: 4rem;}
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 650px) {
    .hero-actions { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center;}
}
