* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    background: #0b0b0b;
    color: #eee;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow-x: hidden;
}

/* ANIMATED BACKGROUND */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 107, 61, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(242, 201, 76, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 78, 80, 0.05) 0%, transparent 60%);
    z-index: -2;
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

.fire-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.fire-particles::before,
.fire-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 15s ease-in-out infinite;
}

.fire-particles::before {
    background: radial-gradient(circle, rgba(255, 107, 61, 0.15) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.fire-particles::after {
    background: radial-gradient(circle, rgba(242, 201, 76, 0.12) 0%, transparent 70%);
    bottom: 20%;
    right: 10%;
    animation-delay: 7s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,.9);
    backdrop-filter: blur(10px);
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 61, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cinzel', serif;
    font-size: 22px;
    z-index: 1001;
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 120, 50, 0.6));
    transition: transform .3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.fire {
    color: #ff6b3d;
    text-shadow: 
        0 0 10px rgba(255,107,61,.6),
        0 0 20px rgba(255,107,61,.3);
    animation: fireGlow 3s ease-in-out infinite;
}

@keyframes fireGlow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255,107,61,.6),
            0 0 20px rgba(255,107,61,.3);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(255,107,61,.8),
            0 0 30px rgba(255,107,61,.4),
            0 0 40px rgba(255,107,61,.2);
    }
}

/* HAMBURGER MENU */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ff6b3d;
    margin: 3px 0;
    transition: all .3s ease;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255, 107, 61, 0.5);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-links {
    display: flex;
    gap: 22px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #ddd;
    font-size: 13px;
    transition: all .3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b3d, #f2c94c);
    transition: width .3s ease;
}

.nav-links a:hover {
    color: #f2c94c;
}

.nav-links a:hover::after {
    width: 100%;
}

/* HERO */
.hero {
    height: 100vh;
    padding-top: 80px;
    background: 
        linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.85)),
        url('https://images.unsplash.com/photo-1544025162-d76694265947') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 61, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    animation: heroGlow 6s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 52px;
    margin: 15px 0;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 18px;
    color: #ccc;
    animation: fadeInUp 1.2s ease-out;
}

.subtitle {
    color: #f2c94c;
    letter-spacing: 3px;
    font-size: 14px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.neon-fire {
    color: #ff6b3d;
    text-shadow: 
        0 0 15px rgba(255,107,61,.8),
        0 0 30px rgba(255,107,61,.5),
        0 0 45px rgba(255,107,61,.3);
    animation: fireFlicker 2s ease-in-out infinite;
}

@keyframes fireFlicker {
    0%, 100% {
        text-shadow: 
            0 0 15px rgba(255,107,61,.8),
            0 0 30px rgba(255,107,61,.5),
            0 0 45px rgba(255,107,61,.3);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(255,107,61,1),
            0 0 40px rgba(255,107,61,.6),
            0 0 60px rgba(255,107,61,.4);
    }
}

/* SECCIONES */
.menu-section {
    padding: 100px 10% 80px;
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 61, 0.3), transparent);
}

.menu-section h2 {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
}

.menu-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff6b3d, transparent);
}

.neon-gold {
    color: #f2c94c;
    text-shadow: 
        0 0 12px rgba(242,201,76,.6),
        0 0 24px rgba(242,201,76,.3);
}

.neon-green {
    color: #6ee7b7;
    text-shadow: 
        0 0 12px rgba(110,231,183,.6),
        0 0 24px rgba(110,231,183,.3);
}

/* GRID */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.item {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(30, 30, 30, 0.8));
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 61, 0.1);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 61, 0.1), transparent);
    transition: left .5s ease;
}

.item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 107, 61, 0.3);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 107, 61, 0.1);
}

.item:hover::before {
    left: 100%;
}

.item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
}

.item-price {
    color: #f2c94c;
    text-shadow: 0 0 8px rgba(242, 201, 76, 0.3);
}

.item p {
    font-size: 13px;
    color: #bbb;
    line-height: 1.6;
}

/* FOOTER */
.footer {
    background: rgba(0, 0, 0, 0.95);
    padding: 50px;
    text-align: center;
    color: #777;
    border-top: 1px solid rgba(255, 107, 61, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(255, 107, 61, 0.1) 0%, transparent 70%);
    filter: blur(30px);
}

.footer p {
    margin: 10px 0;
    transition: color .3s ease;
}

.footer p:hover {
    color: #f2c94c;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 5%;
    }

    .logo {
        gap: 8px;
        font-size: 16px;
    }

    .logo-img {
        height: 32px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right .4s ease;
        border-left: 1px solid rgba(255, 107, 61, 0.2);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
        transition: all .3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: .1s; }
    .nav-links.active li:nth-child(2) { transition-delay: .2s; }
    .nav-links.active li:nth-child(3) { transition-delay: .3s; }
    .nav-links.active li:nth-child(4) { transition-delay: .4s; }
    .nav-links.active li:nth-child(5) { transition-delay: .5s; }
    .nav-links.active li:nth-child(6) { transition-delay: .6s; }
    .nav-links.active li:nth-child(7) { transition-delay: .7s; }

    .nav-links a {
        font-size: 18px;
        padding: 10px 20px;
    }

    .nav-links a::after {
        bottom: 5px;
    }

    .hero h1 {
        font-size: 36px;
        padding: 0 20px;
    }

    .hero p {
        font-size: 16px;
        padding: 0 20px;
    }

    .subtitle {
        font-size: 12px;
    }

    .menu-section {
        padding: 80px 5% 60px;
    }

    .menu-section h2 {
        font-size: 28px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fire-particles::before,
    .fire-particles::after {
        width: 200px;
        height: 200px;
    }

    .hero-glow {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 14px;
    }

    .logo-img {
        height: 28px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .menu-section h2 {
        font-size: 24px;
    }

    .nav-links {
        width: 80%;
    }
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0b0b0b;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff6b3d, #f2c94c);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f2c94c, #ff6b3d);
}