/* --- GENERAL --- */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #f8f3e6;
    color: #2b2b2b;
    overflow-x: hidden;
}

/* --- ANIMACIONES AL SCROLL --- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

section:not(.hero) {
    animation: fadeUp 0.9s ease forwards;
    opacity: 0;
}

/* --- ANIMACIÓN DE LA BARRA FIJA --- */
@keyframes topbarGlow {
    from { border-bottom-color: rgba(247,196,0,0.4); }
    to   { border-bottom-color: rgba(247,196,0,1); }
}

/* --- TOPBAR --- */
.topbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #7a0c0c, #b11a1a);
    backdrop-filter: blur(8px);

    border-bottom: 4px solid #f7c400;
    animation: topbarGlow 2s ease-in-out infinite alternate;

    box-shadow: 0 4px 20px rgba(0,0,0,0.25);

    z-index: 999;
}

.topbar-content {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.topbar-logo {
    width: 110px;
    transition: transform 0.3s ease;
}

.topbar-title {
    font-size: 2rem;
    font-weight: 800;
    color: #f7c400;
    letter-spacing: 2px;
    transition: letter-spacing 0.3s ease;
}

.topbar:hover {
    box-shadow: 0 4px 25px rgba(247,196,0,0.6);
}

.topbar:hover .topbar-content {
    transform: scale(1.08);
    filter: brightness(1.2);
}

.topbar:hover .topbar-logo {
    transform: rotate(-5deg) scale(1.15);
}

.topbar:hover .topbar-title {
    letter-spacing: 4px;
}

/* --- HERO --- */
.hero {
    padding-top: 130px;
    height: 320px;
    position: relative;

    background: linear-gradient(135deg, #b11a1a 20%, #f7c400 80%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Líneas decorativas */
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.9);
    left: 0;
}

.hero::before { top: 0; }
.hero::after { bottom: 0; }

/* Contenido del hero */
.hero-content {
    position: relative;
    z-index: 2;

    padding: 20px 40px;

    border-top: 3px solid #fff;
    border-bottom: 3px solid #fff;

    color: #fff;
}

.hero-content h2 {
    font-size: 2.8rem;
    margin: 0;
    font-weight: 900;
}

.hero-content p {
    font-size: 1.3rem;
    margin-top: 10px;
    font-weight: 300;
}

/* --- NUEVO MENÚ CON 13 IMÁGENES --- */
.menu-images {
    padding: 50px 20px;
    text-align: center;
    background: #f8f3e6;
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 5px;
    color: #b11a1a;
    font-weight: 900;
}

.menu-subtitle {
    font-size: 1.2rem;
    color: #7a0c0c;
    margin-bottom: 30px;
}

.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: center;
    margin-top: 40px;
}

.menu-item {
    width: 40%; /* REDUCIDO A LA MITAD */
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

/* --- HORARIOS --- */
.info {
    padding: 25px 20px;
    background: linear-gradient(135deg, #7a0c0c, #b11a1a);
    text-align: center;
    color: #fff;
}

.info .section-title {
    color: #f7c400;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.info-box {
    display: flex;
    justify-content: center;
}

.info-item {
    background: rgba(255,255,255,0.08);
    padding: 15px;
    border-radius: 10px;
    width: 240px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border-left: 5px solid #f7c400;
    color: #fff;
}

/* --- UBICACIÓN --- */
.ubicacion {
    padding: 40px 20px;
    text-align: center;
    background: #f8f3e6;
}

.ubicacion-img-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.ubicacion-img {
    width: 85%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    display: block;
}

.ubicacion-frase {
    margin-top: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #7a0c0c;
    letter-spacing: 0.5px;
}

/* --- RESPONSIVE --- */
@media (max-width: 600px) {

    .topbar {
        height: 110px;
    }

    .topbar-logo {
        width: 55px;
    }

    .topbar-title {
        font-size: 1.6rem;
    }

    .hero {
        padding-top: 110px;
        height: 240px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .menu-item {
        width: 95%; /* En móvil siguen grandes */
    }

    .ubicacion-img {
        width: 95%;
    }
}
/* Subtítulos de ubicación */
.ubicacion-subtitle {
    margin-top: 25px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #b11a1a;
}

/* Mapas */
.map-container {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.map-container iframe {
    width: 85%;
    height: 300px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* Botón Google Maps */
.map-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #b11a1a;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.map-button:hover {
    background: #7a0c0c;
    transform: scale(1.05);
}
