*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html{
    scroll-behavior:smooth;
}


body{
    background:#090909;
    color:white;
    font-family:Inter,sans-serif;
    line-height:1.6;
}


a{
    color:white;
    text-decoration:none;
}


section{
    padding:20px 10%;
}


h2{
    font-family:Oswald;
    font-size:1.5rem;
    margin-bottom:10px;
    letter-spacing:2px;
}


/* HERO */

.hero{

    height:auto;
    padding:20px;

    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;

}


.hero:before{

    content:"";

    position:absolute;
    inset:0;

    background:rgba(0,0,0,.55);

}


.hero-content{

    position:relative;
    text-align:center;

}


.hero img{

    width:40vw;
    max-width:300px;

}


/* VIDEO */

.video-section{

    text-align:center;

}


.video-container{

    width:100%;
    max-width:900px;

    margin:20px auto;

    aspect-ratio:16 / 9;

}


.video-container iframe{

    width:100%;
    height:100%;

    border:0;

}


/* BIO */

.bio {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}





/* BOUTONS MUSIQUE */

.music{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}


.music a{

    padding:18px 35px;

    border:2px solid white;

    transition:.3s;

}


.music a:hover{

    background:#d80000;

    border-color:#d80000;

}


/* LOGOS STREAMING */

.streaming-links{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:25px;

}


.streaming-links img{

    width:45px;

    height:45px;

    object-fit:contain;

    transition:transform 0.2s ease;

}


.streaming-links img:hover{

    transform:scale(1.15);

}


/* CONCERTS */

.concerts table{

    width:100%;

    border-collapse:collapse;

}


.concerts td{

    padding:20px;

    border-bottom:1px solid #333;

}


/* GALERIE */

.gallery{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:20px;

}


.gallery img{

    width:100%;

    aspect-ratio:1;

    object-fit:cover;

    transition:.3s;

}


.gallery img:hover{

    transform:scale(1.05);

}


/* FOOTER */

footer{

    padding:80px 10%;

    text-align:center;

    border-top:1px solid #222;

}


.social{

    margin-top:30px;

}


.social a{

    margin:15px;

    font-size:1.1rem;

}

.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Crédit photo */
.photo-credit {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 12px;
    text-align: center;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 95vw;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
}



/* RESPONSIVE */

@media(max-width:900px){


    .hero img{

        width:60vw;

    }


    .bio{

        grid-template-columns:1fr;

    }


    section{

        padding:70px 8%;

    }


    h2{

        font-size:2.2rem;

    }


}