/* ======================================================
   HERO VIDEO - ADONAY TRAVEL
   ====================================================== */

.hero-video{
    position:relative;
    width:100%;
    height:92vh;
    min-height:650px;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* VIDEO */

.hero-video video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

/* OVERLAY PREMIUM */

.hero-video::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:2;

    background:
    linear-gradient(
        to bottom,
        rgba(0,0,0,.60) 0%,
        rgba(0,0,0,.35) 25%,
        rgba(0,0,0,.30) 50%,
        rgba(0,0,0,.35) 75%,
        rgba(0,0,0,.70) 100%
    );
}

/* CONTENIDO */

.hero-content{
    position:relative;
    z-index:3;

    width:100%;
    max-width:1200px;

    padding:0 30px;

    text-align:center;
    color:#ffffff;

    transform:translateY(-50px);
}

/* TITULO */

.hero-content h1{

    font-size:clamp(3rem, 6vw, 6rem);

    font-weight:800;

    line-height:1.05;

    letter-spacing:-2px;

    color:#ffffff;

    margin-bottom:25px;

    text-shadow:
        0 4px 20px rgba(0,0,0,.40);
}

/* LINEA DECORATIVA */

.hero-line{

    width:80px;

    height:4px;

    background:#c9a86a;

    margin:0 auto 35px auto;

    border-radius:50px;
}

/* SUBTITULO */

.hero-content p{

    max-width:750px;

    margin:0 auto 40px auto;

    font-size:1.4rem;

    line-height:1.6;

    color:rgba(255,255,255,.92);

    text-shadow:
        0 2px 10px rgba(0,0,0,.40);
}

/* BOTONES */

.hero-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;
}

.hero-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    min-width:240px;

    height:58px;

    padding:0 30px;

    border-radius:40px;

    text-decoration:none;

    font-size:1rem;

    font-weight:600;

    transition:all .3s ease;
}

/* BOTON PRINCIPAL */

.hero-btn-primary{

    background:#c9a86a;

    color:#ffffff;

    border:none;

    box-shadow:
        0 10px 30px rgba(201,168,106,.35);
}

.hero-btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:
        0 15px 40px rgba(201,168,106,.50);
}

/* BOTON SECUNDARIO */

.hero-btn-secondary{

    background:transparent;

    color:#ffffff;

    border:2px solid rgba(255,255,255,.85);
}

.hero-btn-secondary:hover{

    background:#ffffff;

    color:#222222;

    transform:translateY(-3px);
}

/* ANIMACION SUAVE */

.hero-content{

    animation:heroFade 1.2s ease;
}

@keyframes heroFade{

    from{
        opacity:0;
        transform:translateY(10px);
    }

    to{
        opacity:1;
        transform:translateY(-50px);
    }
}

/* TABLET */

@media(max-width:768px){

    .hero-video{

        height:85vh;

        min-height:550px;
    }

    .hero-content{

        transform:none;
    }

    .hero-content h1{

        font-size:3rem;

        letter-spacing:-1px;
    }

    .hero-content p{

        font-size:1.1rem;
    }

    .hero-btn{

        min-width:220px;
    }
}

/* MOVIL */

@media(max-width:480px){

    .hero-video{

        height:75vh;

        min-height:500px;
    }

    .hero-content{

        padding:0 20px;
    }

    .hero-content h1{

        font-size:2.2rem;

        line-height:1.15;
    }

    .hero-content p{

        font-size:1rem;

        margin-bottom:30px;
    }

    .hero-buttons{

        flex-direction:column;

        width:100%;
    }

    .hero-btn{

        width:100%;

        max-width:300px;

        min-width:auto;
    }
}