/* ============================= */
/* 🌐 GLOBAL */
/* ============================= */
body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #ffffff;
}

/* ============================= */
/* 🎬 HEADER (bannière vidéo) */
/* ============================= */
header {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    /* colle la section à la vidéo */
}

header video {
    width: 110%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

header h1,
header p {
    position: absolute;
    left: 20px;
    color: #DBDBFF;
    width: 100%;
    z-index: 1;
}

header button {
    position: absolute;
    bottom: 15px;
    right: 10px;
    z-index: 2;
    width: 50px;
    height: 50px;
    background-color: rgba(100, 100, 100, 0.7);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    color: white;
    transition: 0.3s ease;
}

header button:hover {
    background-color: rgba(255, 56, 12, 0.8);
    transform: scale(1.1);
}

header h1 {
    top: 15%;
    font-size: 15rem;
    font-family: 'Kolker Brush', cursive;
    font-weight: 400;
    color: #ff380c;
    margin-left: 25px;
}

header p {
    top: 55%;
    font-size: 1.8rem;
    font-family: "Goudy Bookletter 1911", serif;
    margin-left: 25px;
}

/* ============================= */
/* 👥 SECTION "WHO" */
/* ============================= */
.who {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #1B1616;
    color: #ffffff;
    margin-top: -9px;
    /* colle à la bannière */
    padding: 60px 80px;
    gap: 40px;
    /* espace entre texte et image */
}

/* Bloc de texte à gauche */
.who-text {
    flex: 1;
}

.who-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;

}

.who-text h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    /* espace entre le texte et le trait */
    left: 140px;
    /* alignement avec le texte */
    width: 120px;
    /* longueur du trait */
    height: 2px;
    /* épaisseur du trait */
    background-color: #ff380c;
    /* couleur rouge/orange */
    border-radius: 2px;
    /* coins arrondis */
}

.who-text p {
    font-family: 'Glory', serif;
    font-weight: 300;
    font-size: 1.7rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Image à droite */
.who2 {
    width: 70%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.interet {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    /* fond blanc */
    color: #000000;
    /* texte noir pour contraster */
    padding: 80px 100px;
    gap: 40px;
}

/* Partie gauche : le logo rond */
.interet .logo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.interet .logo img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    /* rend l’image parfaitement circulaire */
    object-fit: cover;
    /* adapte l’image à la forme ronde */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    /* ombre douce */
}

/* Partie droite : le texte */
.interet-text {
    flex: 2;
}

.interet-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 25px;
    position: relative;
}

.interet-text h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: #ff380c;
    border-radius: 2px;
}

.interet-text p {
    font-family: 'Glory', serif;
    font-weight: 300;
    font-size: 1.7rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.discographie {
    background: #1B1616;

    border-bottom-left-radius: 80px 80px;
    border-bottom-right-radius: 80px 80px;
}

.discographie h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    text-align: center;

}
.discrogprahie button {
    background : #f0f0f0;

   
}
.discographie button:hover{
    
}
.discographie .tri {

    background: #f0f0f0;
    color: #000000;
    font-size: 1.4rem;
    border-radius : 50px;

}