*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html{
    scroll-behavior:smooth;
}


body{

    background:#080808;
    color:white;
    font-family:'Poppins', sans-serif;
    line-height:1.6;

}


/* ======================
   MENU
====================== */


header{

    position:fixed;
    top:0;
    width:100%;
    z-index:1000;

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

    padding:20px 8%;

    background:rgba(0,0,0,0.85);
    backdrop-filter:blur(10px);

    border-bottom:1px solid rgba(212,175,55,.3);

}



.logo{

    font-family:'Cinzel',serif;
    font-size:25px;
    font-weight:bold;

    color:#d4af37;

}



nav a{

    color:white;
    text-decoration:none;

    margin-left:25px;

    font-size:15px;

    transition:.3s;

}


nav a:hover{

    color:#d4af37;

}






/* ======================
 HERO
====================== */


.hero{

    height:100vh;

    background-image:url("../assets/img/portada.jpg");

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

    display:flex;

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

    position:relative;

}




.overlay{

    position:absolute;

    width:100%;
    height:100%;

    background:

    linear-gradient(
    rgba(0,0,0,.75),
    rgba(0,0,0,.9)
    );

}





.hero-content{

    position:relative;

    text-align:center;

    max-width:900px;

    padding:20px;

}



.hero h1{

    font-family:'Cinzel',serif;

    font-size:70px;

    color:#d4af37;

    letter-spacing:3px;

}



.hero h2{

    font-size:35px;

    margin-top:15px;

}



.hero p{

    font-size:20px;

    margin:20px 0;

    color:#ddd;

}






.buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}




.btn{

    padding:15px 35px;

    border-radius:40px;

    background:#d4af37;

    color:black;

    font-weight:bold;

    text-decoration:none;

    transition:.3s;

}



.btn:hover{

    transform:scale(1.05);

}



.second{

    background:transparent;

    border:2px solid #d4af37;

    color:#d4af37;

}





/* ======================
 SECCIONES
====================== */


.section,
.events,
.videos,
.contact{

    padding:90px 10%;

    text-align:center;

}



.section h2,
.events h2,
.videos h2,
.contact h2{

    font-family:'Cinzel',serif;

    color:#d4af37;

    font-size:40px;

    margin-bottom:30px;

}




.section p{

    max-width:900px;

    margin:auto;

    color:#ddd;

    font-size:18px;

}







/* ======================
 EVENTOS
====================== */


.cards{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

}



.cards div{

    background:#111;

    padding:35px;

    width:280px;

    border-radius:15px;

    border:1px solid rgba(212,175,55,.3);

    transition:.3s;

}



.cards div:hover{

    transform:translateY(-10px);

    border-color:#d4af37;

}



.cards h3{

    color:#d4af37;

    margin:15px 0;

}







/* ======================
 GALERIA
====================== */


.gallery{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}



.gallery img{

    width:100%;

    height:350px;

    object-fit:cover;

    border-radius:15px;

    transition:.4s;

}



.gallery img:hover{

    transform:scale(1.05);

}








/* ======================
 VIDEOS
====================== */


.video-box iframe{

    width:80%;

    height:500px;

    border:none;

    border-radius:20px;

}








/* ======================
 CONTACTO
====================== */


.whatsapp,
.email{

    display:block;

    width:300px;

    margin:20px auto;

    padding:18px;

    border-radius:40px;

    text-decoration:none;

    font-weight:bold;

}



.whatsapp{

    background:#25D366;

    color:white;

}



.email{

    background:#d4af37;

    color:black;

}








/* ======================
 FOOTER
====================== */


footer{

    background:#000;

    text-align:center;

    padding:40px;

    border-top:1px solid rgba(212,175,55,.3);

}



.social a{

    color:#d4af37;

    text-decoration:none;

    margin:10px;

}







/* ======================
 RESPONSIVE MOVIL
====================== */


@media(max-width:768px){


header{

    flex-direction:column;

}



nav{

    margin-top:15px;

}



nav a{

    margin:8px;

    font-size:13px;

}



.hero h1{

    font-size:40px;

}



.hero h2{

    font-size:25px;

}



.buttons{

    flex-direction:column;

}



.gallery{

    grid-template-columns:1fr;

}



.video-box iframe{

    width:100%;

    height:300px;

}



.section h2,
.events h2,
.videos h2,
.contact h2{

    font-size:30px;

}



}
