:root {
    --neon-yellow: #ffeb3b; 
    --neon-yellow-glow: rgba(255, 235, 59, 0.7);
    --neon-blue: #00bcd4; 
    --neon-blue-glow: rgba(0, 188, 212, 0.7);
    --bg-dark: #0a0a0c;
    --bg-card: #141417;
    --text-main: #ffffff;
    --text-muted: #888888;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================================
   HEADER / HERO SOBRIO CON LOGO NEÓN
   ========================================= */
.hero {
    height: 45vh; /* Ajustado para dar espacio al logo */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('img/logo.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 800px;
}

/* Estilo Logo p.png */
.logo-header {
    display: flex;
    justify-content: center;
    margin-top: -90px;
    margin-bottom: -90px;
}

.neon-logo {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 0 5px #fff) 
            drop-shadow(0 0 10px var(--neon-yellow)) 
            drop-shadow(0 0 20px var(--neon-yellow));
    animation: neon-pulse 2s infinite alternate;
}

@keyframes neon-pulse {
    from {
        filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px var(--neon-yellow)) drop-shadow(0 0 20px var(--neon-yellow));
        transform: scale(1);
    }
    to {
        filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 5px var(--neon-yellow)) drop-shadow(0 0 10px var(--neon-yellow));
        transform: scale(0.97);
    }
}

.info-container { margin-bottom: 20px; }

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}

.info-item i {
    color: var(--neon-yellow);
    font-size: 1.1rem;
    text-shadow: 0 0 10px var(--neon-yellow-glow);
}

.social-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 15px;
}

.social-container a {
    color: #fff;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-container a:hover {
    color: var(--neon-blue);
    transform: translateY(-3px);
    text-shadow: 0 0 10px var(--neon-blue-glow);
}

/* =========================================
   NAV NAVEGACIÓN CENTRADA
   ========================================= */
.categories {
    position: sticky;
    top: 0;
    background-color: rgba(10, 10, 12, 0.98);
    backdrop-filter: blur(12px);
    padding: 15px 0;
    display: flex;
    justify-content: center;
    overflow-x: auto;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.categories::-webkit-scrollbar { display: none; }

.categories a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 10px 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.categories a:hover {
    color: var(--neon-yellow);
    transform: scale(1.2);
    text-shadow: 0 0 10px var(--neon-yellow-glow);
}

.categories a.active {
    color: var(--neon-blue);
    transform: scale(1.15);
    text-shadow: 0 0 15px var(--neon-blue-glow);
}

/* =========================================
   CONTENEDOR DE MENÚ Y CARDS
   ========================================= */
.menu-container { max-width: 1200px; margin: 0 auto; padding: 20px 20px 120px; }

.section-tag {
    font-size: 1.5rem;
    font-weight: 900;
    border-left: 5px solid var(--neon-yellow);
    padding-left: 15px;
    margin-bottom: 5px;
}

.horario-nota {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0 0 25px 15px;
    font-style: italic;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.menu-item {
    background: var(--bg-card);
    border-radius: 12px;
    display: flex;
    border: 1px solid rgba(0, 188, 212, 0.1);
    transition: 0.3s;
}

.menu-item:hover { border-color: var(--neon-blue); box-shadow: 0 0 15px rgba(0, 188, 212, 0.1); }
.menu-item.featured { border-color: rgba(255, 235, 59, 0.15); }
.menu-item.featured:hover { border-color: var(--neon-yellow); }

.item-info { flex: 1; padding: 15px; display: flex; flex-direction: column; }
.item-header h3 { font-size: 1rem; color: #fff; margin-bottom: 4px; }

.tag-portion {
    font-size: 0.6rem;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid;
}

.menu-item .tag-portion { color: var(--neon-blue); border-color: var(--neon-blue); }
.menu-item.featured .tag-portion { color: var(--neon-yellow); border-color: var(--neon-yellow); }

.item-info p { font-size: 0.8rem; color: #bbb; margin: 8px 0; flex-grow: 1; line-height: 1.4; }

.price-container { margin-top: auto; padding-top: 10px; }
.price { font-size: 1.15rem; font-weight: 900; }
.menu-item .price { color: var(--neon-blue); }
.menu-item.featured .price { color: var(--neon-yellow); }
.price-tax { font-size: 0.65rem; color: #555; display: block; margin-top: 2px; }

.item-img { width: 100px; background-size: cover; background-position: center; border-radius: 0 12px 12px 0; }

.footer-cta { text-align: center; padding: 30px; position: fixed; bottom: 0; left: 0; width: 100%; background: linear-gradient(transparent, #000 80%); z-index: 100; }

.order-btn {
    background: transparent;
    border: 2px solid var(--neon-yellow);
    color: var(--neon-yellow);
    padding: 15px 40px;
    font-weight: 900;
    border-radius: 50px;
    box-shadow: 0 0 20px var(--neon-yellow-glow);
    cursor: pointer;
}

@media (max-width: 768px) {
    .categories { justify-content: flex-start; padding-left: 15px; }
    .hero { height: 40vh; }
}