/*Global*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: "Inter", sans-serif;
}

.main {
    padding: 50px;
}


a.link {
    text-decoration: none;
    color: initial;
}

a.link:hover {
    text-decoration: underline solid;
}

.links>span {
    color: #6b6b6b;
    font-size: 11px;
}

/*Header*/
header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: fit-content;
    width: 100%;
    padding: 16px 50px;
    background: linear-gradient(to left, rgba(125, 211, 252, 1), rgba(129, 140, 248, 1));
}

header .nav {
    display: flex;
    flex-direction: row;
    gap: 16px;
    font-weight: 400;
    font-size: 14px;
    padding: 0 16px;
    height: fit-content;
}

/*footer*/
footer {
    background-color: rgba(255, 255, 255, 1);
    padding: 20px 0;
}

footer p {
    color: #6b6b6b;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    width: 100%;
    text-align: center;
}


/*HOME*/
#musics-wrapper .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
    padding: 40px 0;

}

/* Carte */
#musics-wrapper .music {
    width: 320px;
    min-height: 150px;
    /* Hauteur similaire */
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: "Inter", sans-serif;
}

/* Titre */
#musics-wrapper .music h2 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 600;
}

/* Artiste + album */
#musics-wrapper .music p {
    margin: 0 0 12px 0;
    color: #555;
    font-size: 14px;
}

/* Durée */
.music .duration {
    color: #6b6b6b;
    font-size: 14px;
    margin-bottom: 16px;
}

/* Section des liens */
.music .links {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

/* Lien bleu */
.music a {
    color: #007bff;
    text-decoration: none;
}

.music a:hover {
    text-decoration: underline;
}

.image.featured img {
    display: none;
}

/*MUSIC PAGE*/
#box-music {
    padding: 40px 10%;
}