* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --primary-black: #0a0a0a;
    --primary-red: #d90429;
    --primary-white: #ffffff;
    --accent-grey: #1a1a1a;
    --text-muted: #a0a0a0;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    background-color: var(--primary-black);
    color: var(--primary-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-black);
}

::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 10px;
    border: 2px solid var(--primary-black);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo img {
    height: 60px;
}

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

.nav-links a {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

.order-btn {
    background: var(--primary-red);
    color: var(--primary-white);
    padding: 12px 35px;
    border-radius: 100px; /* Modern pill shape */
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
    border: 2px solid var(--primary-red);
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.order-btn:hover::before {
    left: 100%;
}

.order-btn:hover {
    background: transparent;
    color: var(--primary-red);
    box-shadow: 0 0 20px rgba(217, 4, 41, 0.4);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    height: 85vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    background: radial-gradient(circle at center, #1a0505 0%, #0a0a0a 70%);
    overflow: hidden;
    padding-top: 140px; /* Offset to keep logo well below the fixed navigation bar */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 2;
}

.hero-logo, .hero h1, .hero p, .hero-btns {
    position: relative;
    z-index: 3;
}

.hero-logo {
    width: 280px; /* Resized slightly to look cleaner and fit better */
    max-width: 80%;
    filter: drop-shadow(0 0 30px rgba(217, 4, 41, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); } /* Float downwards to prevent clipping into navbar */
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 5rem); /* Resized slightly for better fluid scaling */
    margin-top: 20px;
    margin-bottom: 10px;
    background: linear-gradient(to bottom, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.hero p {
    font-size: 1.3rem; /* Resized slightly */
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

/* Menu Section */
.section {
    padding: 100px 10%;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-red);
    margin: 15px auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.menu-item {
    background: var(--accent-grey);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.menu-img {
    height: 250px;
    background: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #444;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.menu-item:hover .menu-img img {
    transform: scale(1.05);
}

.menu-content {
    padding: 25px;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.menu-price {
    display: none;
    color: var(--primary-red);
    font-weight: 800;
    font-size: 1.5rem;
}

.menu-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Info Section */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.info-card {
    background: var(--accent-grey);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--primary-red);
    height: 100%;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h4 {
    color: var(--primary-red);
    margin-bottom: 5px;
}

.info-item p {
    font-size: 1.1rem;
}

.info-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    filter: grayscale(1) invert(0.9) contrast(1.2);
    border: none;
}

/* Google Search Panel */
.google-panel {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.google-panel:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.google-panel h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.google-panel p {
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.google-btn-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.google-search-btn {
    background: #4285F4;
    border-color: #4285F4;
}

.google-search-btn:hover {
    color: #4285F4;
    background: transparent;
}

.google-directions-btn {
    background: #34A853;
    border-color: #34A853;
}

.google-directions-btn:hover {
    color: #34A853;
    background: transparent;
}

.google-address-divider {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.google-address-divider p {
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--primary-white);
}

/* Reveal Animations */
.js-enabled .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.js-enabled .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Order Page Specifics */
.order-hero {
    padding: 150px 10% 50px;
    text-align: center;
    background: linear-gradient(to bottom, #1a0505, #0a0a0a);
}

.order-type-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.type-btn {
    background: var(--accent-grey);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.type-btn:hover, .type-btn.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

/* About Page Specifics */
.about-hero {
    padding: 180px 10% 80px;
    background: url('../images/logo_v2.png') no-repeat center right;
    background-size: contain;
    background-blend-mode: overlay;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: #0d0d0d;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

footer {
    padding: 50px 10%;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
    font-size: 1.5rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 30px;
}

/* Promos Section */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.promo-card {
    background: var(--accent-grey);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(217, 4, 41, 0.15);
}

.promo-video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    overflow: hidden;
    cursor: pointer;
}

.promo-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: var(--transition);
    z-index: 2;
}

.promo-card:hover .video-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-red);
    border: none;
    color: var(--primary-white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(217, 4, 41, 0.5);
    opacity: 0.9;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(217, 4, 41, 0.8);
    opacity: 1;
}

.mute-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary-white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    z-index: 3;
}

.mute-btn:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.promo-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-info p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Delivery Section Styles */
.delivery-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.delivery-img-container {
    flex: 1 1 450px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.delivery-img-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition);
}

.delivery-img-container:hover {
    transform: scale(1.02);
    border-color: #FF3008;
    box-shadow: 0 20px 40px rgba(255, 48, 8, 0.15);
}

.delivery-img-container:hover img {
    transform: scale(1.03);
}

.delivery-text {
    flex: 1 1 450px;
}

/* Delivery Platform Badges */
.delivery-platforms {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.delivery-badge {
    padding: 12px 25px;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    cursor: pointer;
}

.doordash-badge {
    background: #FF3008;
    color: white;
    border-color: #FF3008;
    box-shadow: 0 10px 20px rgba(255, 48, 8, 0.15);
}

.doordash-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 48, 8, 0.3);
}

.ubereats-badge {
    background: #06C167;
    color: white;
    border-color: #06C167;
    box-shadow: 0 10px 20px rgba(6, 193, 103, 0.15);
}

.ubereats-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(6, 193, 103, 0.3);
}

.grubhub-badge {
    background: #F63440;
    color: white;
    border-color: #F63440;
    box-shadow: 0 10px 20px rgba(246, 52, 64, 0.15);
}

.grubhub-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(246, 52, 64, 0.3);
}

@media (max-width: 992px) {
    .delivery-container {
        flex-direction: column;
        text-align: center;
    }
    .delivery-platforms {
        justify-content: center;
    }
}

/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-white);
    border-radius: 10px;
    transition: var(--transition);
}

/* Active Hamburger Animation */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--primary-red);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--primary-red);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    padding: 40px 20px;
    text-align: center;
}

.mobile-menu-links a {
    color: var(--primary-white);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
    color: var(--primary-red);
}

.mobile-order-btn {
    margin-top: 15px;
    font-size: 1.2rem !important;
    padding: 15px 40px;
}

/* Body Scroll Lock */
body.menu-open {
    overflow: hidden;
}

/* About Preview Layout Styles */
#about-preview .info-grid {
    align-items: center;
}

#about-preview .info-image img {
    max-height: 70%;
    transition: var(--transition);
}

#about-preview:hover .info-image img {
    transform: scale(1.05) rotate(2deg);
}

@media (max-width: 992px) {
    #about-preview .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    #about-preview .info-image {
        height: 350px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    nav { 
        padding: 15px 20px; 
    }
    nav > .order-btn { 
        display: none; 
    }
    .nav-links { 
        display: none; 
    }
    .menu-toggle { 
        display: flex; 
    }
    .hero h1 { 
        font-size: 2.5rem; 
    }
    .info-grid { 
        grid-template-columns: 1fr; 
    }
}
