
:root {
    --bg-color: #0D0D0D;    
    --neon-pink: #FF00BF;     
    --text-white: #FFFFFF;    
    --card-bg: #1a1a1a;       
    --font-main: 'Montserrat', sans-serif;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-neon {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 0, 191, 0.5);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-weight: 900;
}


.header {
    background-color: rgba(13, 13, 13, 0.95);
    padding: 1rem 5%;
    position: sticky; 
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--neon-pink);
    font-family: 'cursive';
    text-shadow: 0 0 15px var(--neon-pink);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-white);
    font-weight: 700;
    font-size: 0.9rem;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--neon-pink);
}

.hamburger { display: none; color: var(--neon-pink); font-size: 1.5rem; cursor: pointer; }


.hero {
    height: 80vh;
    background: url('https://placehold.co/1920x1080/000000/333333?text=Video+Background+Placeholder') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Capa oscura */
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

/* BOTONES [cite: 47-49] */
.btn {
    padding: 12px 30px;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid var(--neon-pink);
    margin: 0 10px;
    display: inline-block;
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
}

.btn-outline:hover {
    background: var(--neon-pink);
    box-shadow: 0 0 20px var(--neon-pink);
}

/* FAVORITOS & MENÚ CARDS [cite: 58-59, 89-96] */
section { padding: 4rem 0; }

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid #333;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-pink);
}

.card-info { padding: 1.5rem; }

.card-info h3 { margin-bottom: 0.5rem; }
.card-info p { color: #aaa; font-size: 0.9rem; margin-bottom: 1rem; }
.card-info .price {
    color: var(--neon-pink);
    font-weight: bold;
    font-size: 1.2rem;
    display: block;
    text-align: right;
}

/* SECCIÓN ABOUT [cite: 64-66] */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 { font-size: 2rem; margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1rem; color: #ccc; }

/* SECCIÓN MENÚ DETALLADO [cite: 84-86] */
.menu-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--neon-pink);
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: bold;
    transition: 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--neon-pink);
    box-shadow: 0 0 15px var(--neon-pink);
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.menu-item {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #222;
}

.menu-item img {
    border-radius: 8px;
    margin-right: 1.5rem;
    width: 100px; height: 100px; object-fit: cover;
}

.menu-details { flex: 1; }

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.menu-header h3 { font-size: 1.1rem; }
.menu-header .price { color: var(--neon-pink); font-weight: bold; }
.menu-desc { font-size: 0.85rem; color: #bbb; }

/* GALERÍA [cite: 103] */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.3s;
    opacity: 0.8;
}

.gallery-grid img:hover { opacity: 1; transform: scale(1.02); }

/* CONTACTO & MAPA [cite: 125-133] */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info p { margin-bottom: 1rem; font-size: 1.1rem; }

/* Truco para mapa oscuro con CSS  */
.contact-map iframe {
    filter: invert(90%) hue-rotate(180deg);
    border-radius: 10px;
}

.delivery-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-delivery {
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
}

/* FOOTER [cite: 27-32] */
footer {
    background: #000;
    padding: 3rem 0;
    border-top: 2px solid var(--neon-pink);
    margin-top: 3rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.social-icons {
    margin-top: 1rem;
    font-size: 1.5rem;
}

.social-icons i {
    color: var(--neon-pink);
    margin: 0 10px;
    cursor: pointer;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #666;
}

/* RESPONSIVE [cite: 26, 88] */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Ocultar menú en móvil para este demo */
    .hamburger { display: block; } /* Mostrar icono hamburguesa */
    
    .hero h1 { font-size: 2.5rem; }
    
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-item { flex-direction: column; text-align: center; }
    .menu-item img { margin: 0 0 1rem 0; }
    .menu-header { flex-direction: column; gap: 0.5rem; }
}