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

body{
    font-family:'Montserrat',sans-serif;
    background:#000;
    color:#fff;
    overflow-x:hidden;
}

/* MENU */

nav{
    position:fixed;
    top:0;
    width:100%;
    background:rgba(0,0,0,.9);
    z-index:1000;
    padding:15px 0;
}

nav ul{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    list-style:none;
}

nav a{
    color:white;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:120px 20px 60px;
}

.hero-content{
    max-width:900px;
    margin:auto;
}

.hero-content img{
    width:220px;
    max-width:80%;
    display:block;
    margin:0 auto 25px;
}

.hero-content h1{
    font-family:'Cinzel',serif;
    font-size:4rem;
    color:#d4a017;
    margin-bottom:15px;
}

.hero-content h2{
    font-size:2rem;
    margin-bottom:20px;
}

.hero-content p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    font-size:1.1rem;
}

/* BOTONES */

.btn-gold{
    display:inline-block;
    margin-top:30px;
    padding:15px 35px;
    background:#d4a017;
    color:black;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
}

.btn-whatsapp{
    display:inline-block;
    background:#25d366;
    padding:18px 30px;
    border-radius:50px;
    text-decoration:none;
    color:white;
    font-weight:bold;
}

/* SECCIONES */

.section{
    padding:80px 20px;
    text-align:center;
}

.section h2{
    color:#d4a017;
    margin-bottom:30px;
    font-size:2.2rem;
}

/* EVENTOS */

.event-card{
    max-width:350px;
    margin:auto;
    border:1px solid #d4a017;
    border-radius:20px;
    padding:30px;
}

/* GALERIA */

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    max-width:1200px;
    margin:auto;
}

.gallery img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:15px;
    cursor:pointer;
}

/* MUSICA */

.music-links{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.music-btn{
    padding:15px 25px;
    border-radius:10px;
    text-decoration:none;
    color:white;
    font-weight:bold;
    background:#d4a017;
}

.music-btn:hover{
    transform:scale(1.05);
}

/* REDES */

.socials{
    display:flex;
    justify-content:center;
    gap:30px;
}

.socials a{
    font-size:3rem;
    color:#d4a017;
}

/* FOOTER */

footer{
    padding:50px 20px;
    text-align:center;
    border-top:1px solid #333;
}

footer img{
    width:120px;
    margin-bottom:15px;
}

/* LIGHTBOX */

#lightbox{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.95);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

#lightbox img{
    max-width:90%;
    max-height:90%;
}

#lightbox span{
    position:absolute;
    top:20px;
    right:30px;
    font-size:50px;
    cursor:pointer;
}

/* WHATSAPP */

.floating-whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    width:70px;
    height:70px;
    border-radius:50%;
    background:#25d366;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:2rem;
    color:white;
    text-decoration:none;
    z-index:999;
}

/* ANIMACION */

.reveal{
    opacity:1;
    transform:none;
}

/* MOVIL */

@media(max-width:768px){

    nav ul{
        justify-content:flex-start;
        overflow-x:auto;
        white-space:nowrap;
        padding:0 15px;
    }

    .hero-content img{
        width:140px;
    }

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

    .hero-content h2{
        font-size:1.3rem;
    }

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

    .section h2{
        font-size:1.8rem;
    }

    .gallery{
        grid-template-columns:1fr;
    }
}
/* INTEGRANTES */

#integrantes .members{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    max-width:1400px;
    margin:40px auto;
}

#integrantes .member-card{
    background:#111;
    border:2px solid #d4af37;
    border-radius:15px;
    padding:20px;
    text-align:center;
}

#integrantes .member-card img{
    width:180px;
    height:180px;
    object-fit:cover;
    border-radius:50%;
    border:4px solid #d4af37;
}

@media(max-width:900px){
    #integrantes .members{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    #integrantes .members{
        grid-template-columns:1fr;
    }
}

.btn-dossier{
    display:inline-block;
    background:#c62828;
    color:#fff;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.btn-dossier:hover{
    background:#9e1f1f;
    transform:translateY(-2px);
}
