@import url('https://fonts.googleapis.com/css2?family=Molle:ital@1&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');

:root{
    color-scheme: light;
}

html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #F1F1F1;
    font-family: "Poppins", sans-serif;
}

header{
    position: relative;
    overflow: hidden;
}

header nav{
    display: flex;
    position: fixed;
    justify-content: space-between;
    top: 0;
    left: 0;
    right: 0;
    background-color: #F1F1F1;
    padding: 10px 20px;
    z-index: 100;
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.15);
}

header .contain-logo{
    width: 20%;
    display: flex;
    align-items: center;
}

header .contain-logo img{
    width: 45%;
}

header #displayMenu{
    display: none;
    color: #743014;
    align-items: center;
    font-size: 20px;
}

header ul{
    display: flex;
    list-style-type: none;
    justify-content: end;
    width: 80%;
    padding: 0;
    margin: 0;
}

header ul li{
    margin: 0 8px;
    display: flex;
    align-items: center;
}

header ul li a{
    text-decoration: none;
    padding: 5px 15px;
    color: #743014;
}

header ul li a.linkContact{
    background-color: #743014;
    color: #FAFAFA;
    border-radius: 20px;
}

header .bg_header{
    width: 98%;
    margin: 1%;
    margin-top: 80px;
    border-radius: 15px;
    filter: brightness(50%);
    height: 600px;
    object-fit: cover;
    object-position: center top;
}

#reveal {
    position: absolute;
    top: 80px;
    left: 1%;
    width: 98%;
    height: 600px;
    pointer-events: none;
}

/* NEWSLETTER */
.newletter-popup{
    position: fixed;
    z-index: 900;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #743014;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    padding: 20px;
    transition: 0.5s;
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.15);

}

.newletter-popup .close-btn{
    background-color: white;
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    margin-bottom: 20px;
}

.close-btn i {
  color: black;
  font-size: 16px;
}

.newletter-popup img{
    width: 20%;
    margin-bottom: 10px;
}

.newletter-popup h2{
    color: white;
    font-size: 35px;
    font-weight: 800;
    margin: 0 5%;
}

.newletter-popup p{
    color: white;
    margin: 0 0 10px 0;
}

.newletter-popup form{
    display: flex;
    flex-direction: column;
    background-color: #662b11;
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    width: 60%;
    font-weight: 600;
}

.refInput{
    background-color: #743014;
    color: white;
    outline: none;
    padding: 10px 15px;
    border: none;
    font-family: 'Poppins', sans-serif;
    border-radius: 10px;
    margin-bottom: 10px;
}

.footer-form{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.footer-form input{
    background-color: white;
    color: #743014;
    font-size: 15px;
    border-radius: 10px;
    cursor: pointer;
}

.footer-form .submitBtn{
    padding: 10px 15px;
    border: none;
    outline: none;
}

/* PRINCIPAL */

main{
    margin: 0 1%;
    width: 98%;

}

main .cardGroup{
    display: flex;
    width: 100%;
}

main .cardGroup .card{
    width: 25%;
    margin: 1%;
    border-radius: 15px;
    position: relative;
}

main .cardGroup .card .img_card{
    transition: 0.5s;
    width: 100%;
}

main .cardGroup .card:hover .img_card{
    filter: brightness(60%);
}

main .cardGroup .card .img_card img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: 50% 20%;
    border-radius: 15px;
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.15);

}

main .cardGroup .card .content_card{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 300px;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: 0.5s;
}

main .cardGroup .card:hover .content_card{
    opacity: 1;
}

main .cardGroup .card .content_card h2{
    margin: 0;
    transform: translateY(-20px);
    transition: 0.5s;
    text-align: center;
}

main .cardGroup .card:hover .content_card h2{
    transform: translateY(0);

}

main .cardGroup .card .content_card .line{
    width: 0px;
    height: 2px;
    margin: 5px 0;
    background-color: white;
    transition: 0.5s;
}

main .cardGroup .card:hover .content_card .line{
    width: 100px;
    color: white;
}

main .cardGroup .card .content_card h3{
    margin: 0;
    transform: translateY(20px);
    font-weight: 200;
    text-transform: uppercase;
    transition: 0.5s;
}

main .cardGroup .card:hover .content_card h3{
    transform: translateY(0);
}

/* PRESENTATION GROUPE */

.presentationGroupe{
    display: flex;
    margin-top: 20px;
}

.presentationGroupe .content-present{
    width: 56%;
    background-color: #FAFAFA;
    padding: 20px;
    border-radius: 15px;
    margin: 0 1%;
}

.presentationGroupe h2, .presentationGroupe p{
    margin: 0;
    padding: 0;
    text-align: justify;
}

.presentationGroupe h2{
    padding-bottom: 10px;
    color: #743014;
}

.presentationGroupe img{
    width: 23%;
    margin: 0 1%;
    border-radius: 15px;
    object-fit: cover;
}

/* ALBUM */

.section-album {
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    width: 97%;
    background-color: rgba(116, 48, 20, 0.2);
    display: flex;
    overflow: hidden;
    height: 700px;
}

.section-album .vynile-left {
    width: 50%;
}

.section-album .vynile-left img {
    width: 130%;
    transform: translateX(-40%);
    animation: rotate 25s infinite linear;
}

@keyframes rotate {
    0% {
        transform: translateX(-40%) rotate(0);
    }
    100% {
        transform: translateX(-40%) rotate(360deg);
    }
}

.section-album .content_album {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-album .content_album h2 {
    font-size: 90px;
    font-weight: 200;
    line-height: 0.8;
    margin: 0;
}

.section-album .content_album h3 {
    margin: 10px 0 20px 0;
    color: #743014;
    font-size: 20px;
}

.section-album .content_album .titre-musique {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 10px 0;
}

.section-album .content_album .titre-musique img {
    width: 50px;
    height: 50px;
    margin: 0 20px;
    border-radius: 4px;
}

.section-album .content_album .titre-musique div p {
    margin: 0;
    padding: 0;
    line-height: 1;
}

.section-album .content_album .titre-musique div p a{
    text-decoration: none;
    color: black;
}

.section-album .content_album .titre-musique .titre-i {
    width: 30px;
}

.section-album .content_album .titre-musique div {
    width: 60%;
}

.section-album .content_album .titre-musique div .nom-musique {
    font-weight: 600;
    font-size: 16px;
}

.section-album .content_album .titre-musique div .nom-groupe {
    font-weight: 300;
    font-size: 15px;
}

.section-album .content_album .titre-musique .time-code {
    color: #474747;
}

/* DERNIÈRE DATES */
.derniere_date{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 20px;
}

.derniere_date h2{
    color: #743014;
}

.derniere_date .line{
    background-color: #f1f1f1;
    width: 100%;
    border-bottom: 4px solid #743014;
    border-left: 4px solid #743014;
    border-right: 4px solid #743014;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    margin-bottom: 60px;
    height: 600px;
    margin-top: -500px;
    z-index: -1;
    position: relative;
}

.derniere_date .line i{
    position: absolute;
    bottom: 0;
    background-color: #743014;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #743014;
    border: #743014 4px solid;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.derniere_date .content_date{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.derniere_date .content_date i{
    cursor: pointer;
    font-size: 20px;
}

.derniere_date .dynamic-date{
    margin: 0 20px;
    width: 400px;
}

.derniere_date .dynamic-date p{
    margin: 0;
    text-align: center;
    transition: 0.5s;
}

.derniere_date .dynamic-date p.status-concert{
    font-weight: 700;
}

/* clip */

.clip{
    padding: 0 20px;
    position: relative;
    width: calc(100%-40px);
    aspect-ratio: 16 / 7;
}

.clip h2{
    color: #743014;
}

.clip iframe{
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* GALERY */
.galery{
    margin-bottom: 40px;
    padding: 0 20px;
}
.galery h2{
    color: #743014;
}

.contain-galery{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}

.contain-galery img{
    width: 33%;
    border-radius: 15px;
}

.galery a{
    padding: 10px 30px;
    background-color: #743014;
    border-radius: 20px;
    color: white;
    text-decoration: none;
}


/* FOOTER */

footer{
    background-color: #743014;
    width: calc(100%-80px);
    display: flex;
    justify-content: space-between;
    padding: 20px 5% 30% 5%;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

footer .contact{
    width: calc(70%-20px);
    color: white;
    padding-right: 20px;
}

footer .reseau{
    width: 30%;
    color: white;
}

footer .contact h2{
    font-size: 30px;
}

footer .refInput{
    background-color: #803515;
}

footer form{
    display: flex;
    flex-direction: column;
}

footer form .separate{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

footer form .separate .refInput{
    width: 36%;
    margin: 0 1%;
}

footer .reseau{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: end;
}

footer .reseau h2{
    font-size: 22px;
    margin-bottom: 0;
}

footer .reseau p{
    margin-top: 0;
    margin-bottom: 0;
}

footer .reseau .logo-reseau{
    display: flex;
    width: 50%;
    flex-wrap: wrap;
    margin-left: auto;
}

footer .reseau .logo-reseau a{
    width: 33%;
    font-size: 30px;
    margin: 10px 0;
    cursor: pointer;
}

footer .reseau .logo-reseau i{
    font-size: 30px;
    color: white;
}

footer .bas{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    
}

footer .bas a {
    color: #F1F1F1;
    text-decoration: none;
}

footer img{
    width: 100%;
    position: absolute;
    bottom: -15%;
    left: 0;
    right: 0;
}

footer .submitBtn{
    padding: 10px 15px;
    border: none;
    outline: none;
}

.footer-form div{
    margin-right: 10px;
}

/* RESPONSIVE */
@media screen and (max-width: 1190px){
    header ul li a{
        padding: 5px 0;
    }

    header ul li a.linkContact{
        padding: 5px 15px;
    }
}

@media screen and (max-width: 1025px){
    .section-album .vynile-left{
        width: 40%;
        margin-top: 10%;
    }
}

@media screen and (max-width: 810px){
    header .contain-logo {
        z-index: 1001;
        width: 170px;
    }

    header #displayMenu{
        display: flex;
        cursor: pointer;
        z-index: 1001;
    }

    header ul {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #F1F1F1;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transform: translateX(-100%);
        transition: transform 0.4s ease-in-out;
        z-index: 1000;
    }

    header ul.open {
        transform: translateX(0);
    }

    header ul li {
        margin: 10px 0;
    }

    header ul li a {
        font-size: 24px;
        font-weight: 500;
    }

    header ul li a.linkContact {
        color: #743014;
        padding: 5px 0;
        background: none;
    }

    header .bg_header{
        margin-top: 50px;
    }

    .cardGroup{
        flex-wrap: wrap;
    }
    main .cardGroup .card{
        width: 48%;
    }

    .presentationGroupe{
        flex-wrap: wrap;
    }

    .presentationGroupe .content-present{
        width: 98%;
    }
    .presentationGroupe img{
        width: 48%;
        margin-top: 2%;
    }

    .section-album{
        flex-direction: column;
        margin-top: 2%;
        height: 800px;
        width: 94%;
    }

    .section-album .vynile-left{
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: -68%;
    }

    .derniere_date .content_date i{
        padding: 15px;
        font-size: 15px;
        background-color: #743014;
        color: #F1F1F1;
        border-radius: 45px;
    }

    .section-album .vynile-left img{
        animation: rotation-top 25s infinite linear;
        width: 100%;
    }

    @keyframes rotation-top {
        0% {
            transform: translateY(-70%) rotate(0);
        }
        100% {
            transform: translateY(-70%) rotate(360deg);
        }
    }

    .section-album .content_album{
        width: 100%;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .section-album .content_album .titre-musique{
        width: 50%;
        text-align: start;
    }

    .galery .contain-galery{
        flex-wrap: wrap;
    }

    .galery .contain-galery img{
        width: 49%;
    }

    .galery .contain-galery .latest{
        width: 100%;
        height: 250px;
        object-fit: cover;
        object-position: top center;
        margin-top: 2%;
    }

    .contact{
        width: 100%;
    }

    footer .reseau{
        flex-direction: row-reverse;
        width: 100%;
    }

    footer .reseau .haut{
        width: 35%;
    }

    footer .reseau .bas{
        text-align: start;
    }

    footer img{
        bottom: -10%;
    }
}

@media screen and (max-width: 785px) {
    .newletter-popup h2{
        text-align: center;
    }
    .newletter-popup p{
        text-align: center;
    }
    .newletter-popup form{
        width: 90%;
    }
}

@media screen and (max-width: 570px) {
    header .contain-logo img{
        width: 65%;
    }

    header .bg_header{
        height: 400px;
        margin-top: 75px;
    }
    .newletter-popup h2{
        font-size: 25px;
    }
    .newletter-popup p{
        text-align: center;
    }
    .newletter-popup form{
        width: 90%;
    }
    .newletter-popup .footer-form{
        flex-direction: column;
    }
    .newletter-popup .footer-form div{
        margin-right: 0;
    }
    main .cardGroup .card .content_card{
        opacity: 1;
        bottom: 0;
        top: auto;
        color: #474747;
        background-color: #F1F1F1;
        justify-content: start;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
        height: auto;
    }
    main .cardGroup .card .content_card h2{
        padding-top: 5px;
        transform: none;
    }
    main .cardGroup .card .content_card h3{
        transform: none;
        padding-bottom: 5px;
    }
    main .cardGroup .card .content_card .line {
        display: none;
    }

    footer .reseau{
        flex-direction: column;
    }
    footer .reseau .haut{
        text-align: start;
        width: 100%;
    }

    footer .reseau .haut .logo-reseau{
        margin-left: 0;
    }

    .section-album .content_album h2{
        font-size: 50px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .section-album .content_album .titre-musique{
        width: 80%;
    }

    .derniere_date .content_date .dynamic-date{
        width: 200px;
    }

    .newletter-popup{
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    footer img{
        bottom: 0;
    }

    footer form .separate{
        flex-direction: column;
        align-items: start;
    }

    footer {
        padding-bottom: 40%;
    }

    footer form .separate .refInput{
        width: -webkit-fill-available;
    }

    .section-album {
        width: 89%;
    }
}

@media screen and (max-width: 480px) {
    main .cardGroup .card{
        width: 98%;
    }

    .presentationGroupe {
        width: 99%;
    }
}