/* Fichier style.css optimisé et nettoyé pour Dao Family Records */

/* Reset de base et configuration globale */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000;
    color: #fff;
    font-family: "Montserrat-Regular", sans-serif;
}

@font-face {
    font-family: "Montserrat-Regular";
    src: url(/fonts/Montserrat/static/Montserrat-Regular.ttf);
}

@font-face {
    font-family: "Montserrat-Bold";
    src: url(/fonts/Montserrat/static/Montserrat-Bold.ttf);
}

/* Titres généraux */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat-Bold", sans-serif;
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    text-transform: uppercase;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #ffffff, #fae4e4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

h2 {
    font-size: 2.5rem;
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, transparent);
}

h3 {
    font-size: 1.8rem;
    letter-spacing: 1px;
}

h4 {
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

h5 {
    font-size: 1.2rem;
    color: #ccc;
}

h6 {
    font-size: 1rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive titres */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    h4 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    h3 {
        font-size: 1.3rem;
    }
    h4 {
        font-size: 1.1rem;
    }
}

/* Navigation personnalisée mobile/tablette */
.navMin1000 {
    display: none;
}

.menuNav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menuNav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0;
    padding: 0;
}

.menuNav li {
    outline: none !important;
    border: none !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    background: none !important;
    box-shadow: none !important;
}

.menuNav a {
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    background: none !important;
    box-shadow: none !important;
}

.menuNav a.active {
    color: #ff0000;
}

.menuNav a.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #ff0000;
    opacity: 0.8;
}

.menuNav i {
    font-size: 1.2em;
    margin-bottom: 0.3em;
    transition: transform 0.3s ease;
}

.menuNav span {
    font-size: 0.8em;
    font-weight: 500;
}

.menuNav li:hover a {
    color: #ff0000;
}

.menuNav li:hover i {
    transform: translateY(-3px);
}

.navTop {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logoNav img {
    height: 8vh;
}

.nameDfrNav {
    text-transform: uppercase;
    width: 49%;
    font-size: 3vw;
    text-align: center;
}

.connexionNavTop {
    width: 49%;
    display: flex;
    justify-content: end;
    align-items: center;
}

.connexionImg {
    width: 7vw;
    margin-right: 2vw;
}

@media screen and (min-width: 1000px) {
    .navMax1000 {
        display: none;
    }

    .navMin1000 {
        display: block;
    }

    .menuNav {
        display: none;
    }
}

/* ------------------------------------End-NavBar-définitive------------------------------------*/

/* ------------------------------------Start-Iframe-définitif------------------------------------*/
.video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}
.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
}
/* ------------------------------------End-Iframe-définitif------------------------------------*/
/* ------------------------------------Start-Wrapper-définitif------------------------------------*/
/* Carousel */
.wrapper {
    max-width: 1200px;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.carousel {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.carousel img {
    height: 340px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.carousel img:first-child {
    margin-left: 0;
}

.carousel.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.carousel.dragging img {
    pointer-events: none;
}

.wrapper i {
    font-size: 1.5rem;
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.wrapper i:first-child {
    left: 10px;
    display: none;
}

.wrapper i:last-child {
    right: 10px;
}

@media screen and (min-width: 700px) {
    .carousel img {
        height: 430px;
    }
}

/* ------------------------------------End-Wrapper-définitif------------------------------------*/

/* ------------------------------------Start-Album-définitif------------------------------------*/
/* Albums Grid */
.featuredReleases {
    padding: 4rem 2rem;
    background-color: #111;
}

.featuredReleases h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
}

.releasesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.releaseCard {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.releaseCard:hover {
    transform: translateY(-10px);
}

.releaseImage {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.releaseImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.releaseCard:hover .releaseImage img {
    transform: scale(1.05);
}

.releaseOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.releaseCard:hover .releaseOverlay {
    opacity: 1;
}

.btnListen {
    background: #1db954;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.btnListen:hover {
    transform: scale(1.05);
}

.releaseInfo {
    padding: 1.5rem;
}

.releaseInfo h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.releaseInfo p {
    color: #ccc;
}

/* ------------------------------------End-Album-définitif------------------------------------*/


/* ------------------------------------Start-Events-Page-définitif------------------------------------*/

/* Styles pour la page Événements */
.mainEvent {
    padding: 1rem;
    margin-top: 2rem;
}

.eventHero {
    text-align: center;
    margin-bottom: 3rem;
}

.eventHero h1 {
    font-family: "Montserrat-Bold";
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #fff;
}

.eventHero p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.featuredEvent {
    margin-bottom: 4rem;
}

.featuredEvent h2 {
    font-family: "Montserrat-Bold";
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.eventContainer {
    max-width: 1600px;
    margin: 0 auto;
}

.eventCard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background-color: #1a1a1a;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); */
    /* transition: transform 0.3s ease; */
    border-radius: 20px;
    overflow: hidden;

}

.eventCard.featured {
    display: grid;
    grid-template: 1fr 1fr;
    padding: 2rem;
    margin-bottom: 3rem;
}

.eventImage {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
}

.eventImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.eventCard:hover .eventImage img {
    transform: scale(1.05);
}

.eventDate {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 85, 0, 0.9);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    color: white;
}

.eventDate .day {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

.eventDate .month {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
}

.eventInfo {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    gap: 1rem;
}

.eventInfo p {
    color: #ccc;
    line-height: 1.6;
}

.eventInfo h3 {
    font-family: "Montserrat-Bold";
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.eventTags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}



.eventDescription {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.eventDetails {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.eventActions {
    display: flex;
    gap: 1rem;
}

.btnEvent {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0.8rem 1.1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btnEvent:not(.btnPrimary) {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.btnEvent.btnPrimary {
    background-color: #ff5500;
    color: white;
}

.btnEvent:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 700px) {
    .eventHero h1 {
        font-size: 3rem;
    }
}



/* ------------------------------------End-Events-Page-définitif------------------------------------*/

/* ------------------------------------Start-Spotify-définitif------------------------------------*/
.spotify {
    display: flex;
    justify-content: center;
}
/* ------------------------------------End-Spotify-définitif------------------------------------*/

/* ------------------------------------Start-Footer-définitif------------------------------------*/
/* Footer Section */
.mainFooter {
    background-color: #111;
    color: #fff;
    padding: 6rem 2rem 3rem;
    margin-top: 6rem;
    position: relative;
    z-index: 1;
}

.footerContent {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footerSection {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footerLogo {
    max-width: 200px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem auto;
}

.footerDescription {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    color: #ccc;
}

.footerSection h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footerSection h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.7rem;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
}

.footerLinks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerLinks li {
    margin-bottom: 1rem;
}

.footerLinks a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.footerLinks a:hover {
    color: #ff0000;
}

.socialLinks {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.socialLink {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.socialLink i {
    font-size: 1.6rem;
    width: 28px;
    text-align: center;
}

.footerBottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.copyright {
    color: #888;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.legalLink {
    color: #ccc;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.legalLink:hover {
    color: #ff0000;
}

@media (max-width: 768px) {
    .mainFooter {
        padding: 4rem 1.5rem 2rem;
        padding-bottom: calc(2rem + 60px);
    }

    .footerContent {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footerSection {
        text-align: center;
        gap: 1.5rem;
    }

    .footerSection h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .socialLinks {
        align-items: center;
    }

    .socialLink {
        justify-content: center;
    }
}

/* ------------------------------------End-Footer-définitif------------------------------------*/

/* ------------------------------------Start-Video-Page-définitif------------------------------------*/
.videoList {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1em;
}
.singleVideo {
    width: calc(90vw / 2);
}
.singleVideo h2 {
    font-size: 2vw;
    font-family: "Montserrat-Bold";
    text-transform: uppercase;
}
/* ------------------------------------End-Video-Page-définitif------------------------------------*/

/* ------------------------------------Start-Artist-définitif------------------------------------*/
.containerArtist {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    /* gap: 0.5em; */
}
.containerArtist h2 {
    /* text-align: center; */
    text-transform: uppercase;
    font-family: "Montserrat-bold";
    font-size: 13vw;
}
.articleArtist {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.articleArtist a {
    width: calc(90vw / 1);
    border: 2px solid #fff;
    /* border-top: #000; */
}
.articleArtist img {
    width: 100%;
    height: 100%;
}
.articleArtist h3 {
    text-transform: uppercase;
    font-family: "Montserrat-bold";
    font-size: 8vw;
}
/* ------------------------------------End-Artist-définitif------------------------------------*/

/* ------------------------------------Start-Artists-Page-définitif------------------------------------*/
/* Artiste Modal Section */
.artistModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
}

.modalContent {
    position: relative;
    background-color: white;
    margin: 2rem auto;
    padding: 2rem;
    max-width: 1000px;
    border-radius: 12px;
}

.closeModal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
}

.artistHeader {
    margin-bottom: 2rem;
}

.artistProfile {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: #000;
}

.artistProfile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.artistTitle h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.social_artist {
    display: flex;
    justify-content:start;
    gap: 2em;
}

.artistBio {
    margin-bottom: 2rem;
}

.artistBio h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.artistBio p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
}

.artistMusic {
    margin-bottom: 2rem;
}

.artistMusic h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.artistGallery {
    margin-bottom: 2rem;
}

.artistGallery h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.galleryGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.galleryItem {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
}

.galleryItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galleryItem:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .modalContent {
        margin: 1rem;
        padding: 1rem;
    }

    .artistProfile {
        flex-direction: column;
        text-align: center;
    }

    .artistProfile img {
        width: 120px;
        height: 120px;
    }
    .social_artist {
        justify-content:center;
    }
}

/* ------------------------------------End-Artists-Page-définitif------------------------------------*/

/* Video Modal Section */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow: hidden;
}

.modalContent {
    position: relative;
    width: 80%;
    max-width: 900px;
    margin: 5% auto;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
}

.modalContent iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

.closeModal {
    position: absolute;
    top: 10px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 768px) {
    .modalContent iframe {
        height: 280px;
    }
    .modalContent {
        width: 95%;
        margin-top: 15%;
    }
}

/* Fin Video Modal Section */

@media screen and (min-width: 700px) {
    .carousel img {
        width: calc(100% / 2);
        height: 430px;
    }
}
@media screen and (min-width: 1000px) {
    .navMax1000 {
        display: none;
    }
    .navMin1000 {
        display: block;
    }
    .containerWrapper {
        display: none;
    }
    .containerEvents {
        display: none;
    }
    .containerArtist {
        display: none;
    }
    header {
        z-index: 100;
        height: 7vh;
        position: sticky;
        top: 0;
        background-color: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .navMin1000 {
        display: flex;
        height: 100%;
        padding: 0 2rem;
    }
    .navbarContainer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
    }
    .navbarLogo {
        display: flex;
        align-items: center;
    }
    .navbarLogo a {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: #fff;
    }
    .navbarLogo img {
        height: 5vh;
        margin-right: 1rem;
    }
    .navbarLogo span {
        font-family: "Montserrat-Bold";
        font-size: 1.2rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .navbarMenu {
        display: flex;
        align-items: center;
    }
    .navbarMenu ul {
        display: flex;
        list-style: none;
        gap: 2rem;
        margin: 0;
        padding: 0;
    }
    .navLink {
        text-decoration: none;
        color: #fff;
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        padding: 0.5rem 0;
        position: relative;
    }
    .navLink i {
        margin-right: 0.5rem;
    }
    .navLink:hover {
        color: #ff0000;
    }
    .navLink::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #ff0000;
        transition: width 0.3s ease;
    }
    .navLink:hover::after {
        width: 100%;
    }
    .navbarSocial {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
    .socialLink {
        color: #fff;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }
    .socialLink:hover {
        color: #ff0000;
        transform: translateY(-3px);
    }
    main {
        margin: 0;
    }
    .wrapperMin {
        width: 100%;
        height: 80vh;
        display: flex;
        justify-content: center;
        /* background-color: rgb(0, 110, 255); */
        padding: 2% 0 2% 0;
    }
    .containerMin {
        /* background-color: rgb(207, 247, 228); */
        /* border: 2px solid rgb(243, 141, 141); */
        width: 90%;
        gap: 2%;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        /* margin: 2% 0 2% 0; */
    }
    .cardWrapper {
        width: 100px;
        /* background-color: rgb(133, 150, 94); */
        border: 2px solid rgb(255, 255, 255);
        /* border-radius: .75rem; */
        border-radius: 2rem;
        display: flex;
        align-items: flex-end;
        transition: 0.6s cubic-bezier(0.28, -0.03, 0, 0.99);
        box-shadow: 0px 0px 30px -5px #ffffffff;
        overflow: hidden;
        margin: 0 10px;
        cursor: pointer;
    }
    .cardWrapper > .titleCardWrapper {
        display: flex;
        flex-wrap: nowrap;

        /* background-color: #ac99ee; */
        /* border: 2px solid #fc7b7b; */
    }
    .cardWrapper > .titleCardWrapper > .iconCardWrapper {
        background-color: #ffffff;
        /* border: 2px solid #f3eeee; */
        width: 70px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 16px;
        box-shadow: 0px 30px 100px 30px #ffffffff;
    }
    .cardWrapper > .titleCardWrapper > .descriptionCardWrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
        height: 100px;
        width: 520px;
        opacity: 0;
        transform: translateY(30px);
        transition-delay: 0.3s;
        transition: all 0.3s ease;
    }
    .descriptionCardWrapper p {
        padding-top: 5px;
        text-shadow: #000;
        text-shadow: rgb(0, 0, 0) 1px 0 10px;
        font-size: 195%;
    }
    .descriptionCardWrapper h2 {
        text-transform: uppercase;
        text-shadow: rgb(0, 0, 0) 1px 0 10px;
        font-size: 195%;
    }
    .radio {
        display: none;
    }
    input:checked + label {
        width: 60%;
    }
    input:checked + label .descriptionCardWrapper {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    .cardWrapper[for="cardWrapper1"] {
        background-image: url("/img/Album_Red_Rave.png");
        background-position: center;
        background-repeat: no-repeat;
    }
    .cardWrapper[for="cardWrapper2"] {
        background-image: url("/img/Imagination_Fernando.png");
        background-position: center;
        background-repeat: no-repeat;
    }
    .cardWrapper[for="cardWrapper3"] {
        background-image: url("/img/DJ_BABE_Event.png");
        background-position: center;
        background-repeat: no-repeat;
    }
    .cardWrapper[for="cardWrapper4"] {
        background-image: url("/img/FeelGood_DJBabe.png");
        background-position: center;
        background-repeat: no-repeat;
    }
    .cardWrapper[for="cardWrapper5"] {
        background-image: url("/img/Red_Night.png");
        background-position: center;
        background-repeat: no-repeat;
    }

    .containerReleases {
        display: flex;
        align-items: center;
        position: relative;
        margin-top: 1.2vh;
    }
    .containerReleases h2 {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        font-size: 6.2vw;
        white-space: nowrap;
        transform: rotate(180deg);
        text-align: center;
        position: absolute;
    }
    .articleReleases {
        padding: 0 8vw 0 8vw;
        display: flex;
        justify-content: space-evenly;
    }
    .articleReleases a {
        width: 20vw;
    }

    
    .containerArtistMin {
        display: flex;
        align-items: center;
        position: relative;
        margin-top: 6vh;
    }
    .artistsMin {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 3em;
    }
    .containerArtistMin h2 {
        /* display: block; */
        text-transform: uppercase;
        font-family: "Montserrat-bold";
        font-size: 13vw;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        font-size: 6.2vw;
        white-space: nowrap;
        transform: rotate(180deg);
        text-align: center;
        position: absolute;
    }
    .artist12 {
        display: flex;
        width: 100%;
        justify-content: space-evenly;
    }
    .artist34 {
        display: flex;
        width: 100%;
        justify-content: space-evenly;
    }
    .articleArtistMin {
        display: flex;
        /* justify-content: center; */
        flex-direction: column;
        /* margin-bottom: 30px; */
    }
    .articleArtistMin a {
        width: 30vw;
        border: 2px solid #fff;
        /* border-top: #000; */
    }
    .articleArtistMin img {
        width: 100%;
        height: 100%;
    }
    .articleArtistMin h3 {
        text-transform: uppercase;
        font-family: "Montserrat-bold";
        font-size: 2vw;
    }

    .profilContainer {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 3vh 0;
    }
    .profilContainer h1 {
        text-transform: uppercase;
        font-family: "Montserrat-bold";
        font-size: 5vw;
    }
    .profilContainer p {
        font-size: 1.5vw;
        font-family: "Montserrat-regular";
    }
    .profilContainer a {
        text-transform: uppercase;
        text-decoration: none;
        color: #000;
        font-size: 1.5vw;
        font-family: "Montserrat-bold";
    }
    .profilContainer button {
        font-size: 1vw;
        font-family: "Montserrat-regular";
    }
}

/* Styles pour la page Albums */
.mainAlbum {
    padding: 2rem;
    margin-top: 2rem;
}

.albumHero {
    text-align: center;
    margin-bottom: 3rem;
}

.albumHero h1 {
    font-family: "Montserrat-Bold";
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #fff;
}

.albumHero p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.featuredAlbums {
    margin-bottom: 4rem;
}

.featuredAlbums h2 {
    font-family: "Montserrat-Bold";
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.albumContainer {
    max-width: 1200px;
    margin: 0 auto;
}

.albumCard.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.albumCard.featured:hover {
    transform: translateY(-5px);
}

.albumCatalog h2 {
    font-family: "Montserrat-Bold";
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.albumGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.albumCard {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.albumCard:hover {
    transform: translateY(-5px);
}

.albumImage {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.albumImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.albumCard:hover .albumImage img {
    transform: scale(1.05);
}

.albumOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.albumCard:hover .albumOverlay {
    opacity: 1;
}

.btnListen {
    background: #1db954;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.btnListen:hover {
    transform: scale(1.05);
}

.albumInfo {
    padding: 1.5rem;
}

.albumInfo h3 {
    font-family: "Montserrat-Bold";
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.artistName,
.releaseDate {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.albumTags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.albumTags .tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #fff;
}

/* Media Queries pour la page Albums */
@media (max-width: 1000px) {
    .albumCard.featured {
        grid-template-columns: 1fr;
    }

    .albumHero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .mainAlbum {
        padding: 1rem;
    }

    .albumHero h1 {
        font-size: 2rem;
    }

    .albumGrid {
        grid-template-columns: 1fr;
    }
}

/* Styles pour la page Vidéos */
.mainVideo {
    padding: 2rem;
    margin-top: 2rem;
}

.videoHero {
    text-align: center;
    margin-bottom: 3rem;
}

.videoHero h1 {
    font-family: "Montserrat-Bold";
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #ffffff;
}

.videoHero p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.featuredVideo {
    margin-bottom: 4rem;
}

.featuredVideo h2 {
    font-family: "Montserrat-Bold";
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.videoContainer {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.videoInfo {
    margin-top: 1.5rem;
}

.videoInfo h3 {
    font-family: "Montserrat-Bold";
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.videoInfo p {
    color: #ccc;
}

.videoGallery h2 {
    font-family: "Montserrat-Bold";
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.videoGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.videoCard {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.videoCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.videoThumbnail {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.videoThumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.videoCard:hover .videoThumbnail img {
    transform: scale(1.05);
}

.playButton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 85, 0, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.videoCard:hover .playButton {
    opacity: 1;
}

.playButton i {
    color: white;
    font-size: 1.2rem;
}

.videoDetails {
    padding: 1.5rem;
}

.videoDetails h3 {
    font-family: "Montserrat-Bold";
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.videoDetails p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.modalContent {
    position: relative;
    width: 80%;
    max-width: 900px;
    margin: 5% auto;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
}

.closeModal {
    position: absolute;
    top: 10px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
}

/* Media Queries pour la page Vidéos */
@media (max-width: 1000px) {
    .videoGrid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .videoHero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .mainVideo {
        padding: 1rem;
    }

    .videoHero h1 {
        font-size: 2rem;
    }

    .videoGrid {
        grid-template-columns: 1fr;
    }

    .modalContent {
        width: 95%;
    }
}



/* Styles pour la page artiste */
.mainArtist {
    padding: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.artistHero {
    text-align: center;
    margin-bottom: 3rem;
}

.artistHero h1 {
    font-family: "Montserrat-Bold";
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #fff;
}

.artistHero p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.artistGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.artistCard {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.artistCard:hover {
    transform: translateY(-5px);
}

.artistImage {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.artistImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artistCard:hover .artistImage img {
    transform: scale(1.05);
}

.artistOverlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.artistInfo h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.artistInfo p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.artistGenre {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Styles pour la modale */
.artistModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
}

.modalContent {
    position: relative;
    background-color: white;
    margin: 2rem auto;
    padding: 2rem;
    max-width: 1000px;
    border-radius: 12px;
}

.closeModal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
}

.artistHeader {
    margin-bottom: 2rem;
}

.artistProfile {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.artistProfile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.artistTitle h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.artistBio {
    margin-bottom: 2rem;
}

.artistBio h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.artistBio p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
}

.artistMusic {
    margin-bottom: 2rem;
}

.artistMusic h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.artistGallery {
    margin-bottom: 2rem;
}

.artistGallery h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.galleryGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.galleryItem {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
}

.galleryItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galleryItem:hover img {
    transform: scale(1.05);
}

/* Media Queries */
@media (max-width: 768px) {
    .mainArtist {
        padding: 1rem;
    }

    .artistHero h1 {
        font-size: 2rem;
    }

    .artistProfile {
        flex-direction: column;
        text-align: center;
    }

    .artistProfile img {
        width: 120px;
        height: 120px;
    }

    .modalContent {
        margin: 1rem;
        padding: 1rem;
    }
}

/* Styles pour la page d'accueil */
.mainHome {
    background-color: #000;
    color: #fff;
}

/* Hero Section */
.heroSection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 4rem 2rem;
    min-height: 80vh;
    align-items: center;
}

.heroContent {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.heroContent h1 {
    font-size: 4rem;
    font-weight: bold;
    margin: 0;
    background: linear-gradient(45deg, #ffffff, #696969);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.heroContent p {
    font-size: 1.5rem;
    color: #ccc;
}

.heroButtons {
    display: flex;
    gap: 1rem;
}

.btnPrimary,
.btnSecondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.btnPrimary {
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    color: white;
}

.btnSecondary {
    background: transparent;
    border: 2px solid #ff0000;
    color: #ff0000;
}

.btnPrimary:hover,
.btnSecondary:hover {
    transform: translateY(-3px);
}

.heroVideo {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
}

.heroVideo iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Featured Releases Section */
.featuredReleases {
    padding: 4rem 2rem;
    background-color: #111;
}

.featuredReleases h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
}

.releasesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.releaseCard {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.releaseCard:hover {
    transform: translateY(-10px);
}

.releaseImage {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.releaseImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.releaseCard:hover .releaseImage img {
    transform: scale(1.05);
}

.releaseOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.releaseCard:hover .releaseOverlay {
    opacity: 1;
}

.btnListen {
    background: #1db954;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.btnListen:hover {
    transform: scale(1.05);
}

.releaseInfo {
    padding: 1.5rem;
}

.releaseInfo h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.releaseInfo p {
    color: #ccc;
}



/* Featured Artists Section */
.featuredArtists {
    padding: 4rem 2rem;
    background-color: #111;
}

.featuredArtists h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
}

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

.artistCard {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.artistCard:hover {
    transform: translateY(-10px);
}

.artistImage {
    width: 100%;
    height: 100%;
}

.artistImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artistCard:hover .artistImage img {
    transform: scale(1.05);
}

.artistOverlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.artistInfo h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.artistInfo p {
    color: #ccc;
}

/* Spotify Section */
.spotifySection {
    padding: 4rem 2rem;
    background-color: #000;
}

.spotifySection h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
}

.spotifyPlayer {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Media Queries */
@media (max-width: 1024px) {
    .heroSection {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }

    .heroContent {
        align-items: center;
    }

    .eventCard {
        grid-template-columns: 1fr;
    }

    .eventImage {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .heroContent h1 {
        font-size: 3rem;
    }

    .heroContent p {
        font-size: 1.2rem;
    }

    .heroButtons {
        flex-direction: column;
    }

    .releasesGrid,
    .artistsGrid {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
.mainFooter {
    background-color: #111;
    color: #fff;
    padding: 6rem 2rem 3rem;
    margin-top: 6rem;
    position: relative;
    z-index: 1;
}

.footerContent {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footerSection {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footerLogo {
    max-width: 200px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem auto;
}

.footerDescription {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    color: #ccc;
}

.footerSection h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footerSection h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.7rem;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
}

.footerLinks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerLinks li {
    margin-bottom: 1rem;
}

.footerLinks a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.footerLinks a:hover {
    color: #ff0000;
}

.socialLinks {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.socialLink {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.socialLink i {
    font-size: 1.6rem;
    width: 28px;
    text-align: center;
}

.footerBottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.copyright {
    color: #888;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.legalLink {
    color: #ccc;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
    font-size: 1rem;
}

/* Media Queries for Footer */
@media (max-width: 768px) {
    .mainFooter {
        padding: 4rem 1.5rem 2rem;
        padding-bottom: calc(2rem + 60px);
    }

    .footerContent {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footerSection {
        text-align: center;
        gap: 1.5rem;
    }

    .footerSection h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .socialLinks {
        align-items: center;
    }

    .socialLink {
        justify-content: center;
    }
}
