/* hero.css */
.hero-macarena {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: url('../img/macarena_hero_mobile.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

/* Di default, il video non viene mostrato */
.hero-video {
    display: none;
}

/* Contenuto della hero */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.0);
    padding: 30px;
    border-radius: 10px;
    color: #ffffff;
}

/* Stile per il call-to-action dei nuovi utenti */
.hero-cta h2 {
    color: #ffffff;
    font-family: 'Kleader', sans-serif;
    margin-bottom: 5px; /* Riduce lo spazio tra il titolo e il pulsante */
    font-size: 22px; /* Puoi regolare la dimensione se necessario */
}

/* Se necessario, riduci anche il margine superiore del pulsante */
.hero-cta .btn-primary {
    margin-top: 600px; /* Riduce la distanza rispetto all'h2 */
}


/* Logo (se presente) */
.logo {
    width: 200px;
    margin-bottom: 20px;
}

/* Titoli nella hero */
.hero-content h1 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ff0000; /* Oro */
    margin-bottom: 20px;
    letter-spacing: 1px;
}

    /* Bottone CTA */
    .btn-primary {
        position: relative;
        z-index: 3;
        display: inline-block;
        font-family: 'Kleader', sans-serif;
        padding: 5px 15px;
        background-color: #ff0000;
        color: #ffffff;
        font-size: 25px;
        font-weight: bold;
        text-transform: uppercase;
        border: solid #ffffff;
        border-radius: 5px;
        cursor: pointer;
        transition: background 0.3s ease, color 0.3s ease;
        text-decoration: none;
        margin-top: 500px;
    }
    .btn-primary:hover {
        background-color: #ffffff;
        color: #ff0000;
    }
