/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.65)
        ),
        url('https://res.cloudinary.com/ditldw1rx/image/upload/v1777492726/WhatsApp_Image_2026-04-29_at_2.20.28_PM_esoccq.jpg');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 40px 20px;
    overflow: hidden;
}

/* CONTENIDO */
.hero-content {
    max-width: 900px;
    text-align: center;
    color: white;
    z-index: 2;
    animation: fadeUp 1s ease;
}

/* TITULO */
.hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 1.1;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    /* margin-top: 10%; */
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* RESALTADO */
.restaurant-brand {
    color: #FFD166;
    position: relative;
}

/* SUBTITULO */
.hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.8;

    max-width: 700px;
    margin: 0 auto 40px;

    color: rgba(255,255,255,0.9);
}

/* BOTON */
.primary-btn {
    background: #FFD166;
    color: #111;

    border: none;
    padding: 16px 42px;

    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;

    border-radius: 50px;

    cursor: pointer;

    transition: all 0.3s ease;

    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.primary-btn:hover {
    transform: translateY(-4px);
    background: white;
}

/* CONTADOR */
.countdown-timer {
    margin-top: 35px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.15);

    backdrop-filter: blur(8px);

    padding: 14px 24px;
    border-radius: 50px;

    font-size: 1rem;
    color: white;
}

/* NUMERO */
#event-countdown {
    color: #FFD166;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ANIMACION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .hero-section {
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .primary-btn {
        width: 100%;
        max-width: 300px;
    }

    .countdown-timer {
        margin-top: 25px;
        font-size: 0.95rem;
    }
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 120px; /* espacio para el logo */
        background-attachment: scroll;
    }

    .hero-bg {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 180px;
    }

    .hero-content {
        margin-top: 0;
        text-align: center;
    }
}
