


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ------FONTS-------- */
@font-face {
    font-family: "FunnelDisplay";
    src:
        url('../fonts/FunnelDisplay-VariableFont_wght.ttf');
}

@font-face {
    font-family: "Poppins";
    src:
        url('../fonts/Poppins-VariableFont_wght.ttf');
}

h1 {
    font-family: "FunnelDisplay";
    font-weight: 600;
    font-size: 20px;
}

h2 {
    font-family: "FunnelDisplay";
    font-size: 20px;
}

h3 {
    font-family: "FunnelDisplay";
    font-size: 13px;
}

h4 {
    font-family: "Poppins";
    font-size: 8px;
}

p {
    font-family: "Poppins";
    font-size: 14px;
}

li {
    list-style-type: none;
    padding-left: 0%;

}

/* ------BUTTONS------- */
button {
    background: transparent;
    border: none;
}

a {
    font-family: "Poppins";
    text-decoration: none;
    color: var(--gris);
}

a:hover {
    color: rgb(0, 0, 0);
}

a h1{
    font-family: "FunnelDisplay";
    font-weight: 600;
    font-size: 20px;
    color: var(--bleu-fonce)
}
.main-menu li a{
    color: white;
    position: relative;
}
.main-menu li a::after {
    content: "";
    position: absolute;
    
    left: 0;
    bottom: -4px;
    width: 0px;
    height: 2px;
    background-color: white;
    transition: 0.3s ease-in-out;

}
.main-menu li a:hover::after {
    max-width: 150px;
    width: 100%;
    
}
.bouton-lien {
    color: white;
    position: relative;
    display: block;
}

.bouton-lien::after {
    content: "";
    position: absolute;
    
    left: 0;
    bottom: -8px;
    width: 20%;
    height: 3px;
    background-color: var(--jeune);
    transition: 0.3s ease-in-out;

}

.bouton-lien:hover::after {
    max-width: 150px;
    width: 100%;
    
}
.bouton-lien-flash{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 72px;
}
.bouton-lien-flash li{
    color: white;
    position: relative;
    display: inline-block;
}

.bouton-lien-flash li::after {
    content: "→";
    left: 0;
    position: relative;
    display: inline-block;
    margin-left: 5px;
    transition: 0.3s ease-in-out;

}

.bouton-lien-flash li:hover::after {
    left: 20px;
}
.bouton-premier img{
    display: none;
}
.bouton-premier {
    /* display: block; */
    padding-inline: 18px;
    padding-block: 12px;

    background-color: var(--blue);
    background-image: linear-gradient(45deg, #656DDB, #5C00D3);
    border-radius: 20px;
    color: white;
    width: auto;
    /* flex: 0; */
    align-self: start;
}

.bouton-deuxieme{
    padding-inline: 18px;
    padding-block: 12px;
    border: 1px solid var(--blue);
    border-radius: 20px;
    color: white;
    width: auto;
    /* flex: 0; */
    align-self: start;
}


/* ------COLORS-------- */
:root {
    --noir: black;
    --bleu-fonce: #1A1932;
    --bleu-fonce-plus: #1f1e39;
    --jeune: #B69F72;
    --blue: #656DDB;
    --gris-claire: #F1F1F0;
    --gris: #B0B0B0;
}

/* ------ICONES-------- */
.ico-linkedin,
.ico-youtube, 
.ico-spotify, 
.ico-insta, 
.ico-fb, 
.ico-tiktok{
    color: white;
}

.ico-linkedin:hover,
.ico-fb:hover {
    filter: invert(32%) sepia(98%) saturate(2280%) hue-rotate(205deg) brightness(93%) contrast(91%);
}

.ico-youtube:hover {
    filter: brightness(0) saturate(100%) invert(16%) sepia(94%) saturate(7437%) hue-rotate(359deg) brightness(99%) contrast(107%);
}

.ico-spotify:hover {
    filter: invert(55%) sepia(83%) saturate(419%) hue-rotate(86deg) brightness(99%) contrast(88%);
}

.ico-insta:hover {
    filter: invert(47%) sepia(88%) saturate(724%) hue-rotate(295deg) brightness(93%) contrast(92%);
}
.ico-tiktok:hover {
    filter: invert(24%) sepia(88%) saturate(7390%) hue-rotate(326deg) brightness(98%) contrast(106%);
}

.social {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
}

/* ------GENERAL-------- */
body {
    background-color: var(--gris-claire);
    color: black;
    font-family: "Poppins";
}

.arrierplan-blue {
    background-color: var(--bleu-fonce-plus);
    color: white;
}

.arrierplan-gris {
    background-color: var(--gris-claire);
    color: black;
}

.container {
    max-width: 300px;
    margin-inline: auto;
}

.vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.horizontal {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

/* ------HEADER---------- */
[aria-expanded=true]+#menu {
    transform: translate(0);
}

.main-menu {
    display: flex;
    flex-direction: column;
    gap: 30px;

}

.main-menu li a {
    color: white;
}

.menu-burger {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    background-color: var(--bleu-fonce);
    list-style-type: none;
    margin: 0;
    padding: 10px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding-inline: 40px;
    gap: 50px;
    z-index: 10;
}

/* .menu-burger.container{
    display: flex;
    flex-direction: column;
    padding-inline: 40px;
    gap: 50px;
} */
.menu-burger.open {
    transform: translateX(0);
}

.menu-burger.social {
    margin-top: 100px;

}

.fermer {
    text-align: end;
}

header {
    background-color: var(--bleu-fonce);
    height: 50px;
    display: flex;
    align-items: center;

}

.header {

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;

}

/* header nav{
    display: none;
} */
.logo-grand {
    display: none;
}

.logo_petit {
    display: block;
}

.burgermenu,
.fermer {
    opacity: 1;

    color: white;
}

.burgermenu img {
    display: block;
}

.icon-sociaux{
    background-position: center; 
    background-size: cover;
    width: 20px;
    height: 20px;
}

#linkedin{
    background-image: url(../img/icones/ico-linkedin.svg); 
}
#youtube{
    background-image: url(../img/icones/ico-youtube.svg);
}
#spotify{
    background-image: url(../img/icones/ico-spotify.svg);
}


/* ------FOOTER---------- */
footer {
    background-color: var(--bleu-fonce);
    padding-block: 47px;
}

.projets-populaires {
    display: none;
}

.foter-menus {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(3, auto);
    row-gap: 36px;
    grid-template-areas: 
    "footer-premier footer-premier"
    "footer-social footer-social"
    "footer-deuxieme footer-troisieme";
}

.footer-premier{
    grid-area: footer-premier;
   }
.footer-deuxieme{
    grid-area: footer-deuxieme;
   }
.footer-troisieme{
    grid-area: footer-troisieme;
   }
.footer-social{
    grid-area: footer-social;
   }
   

footer a:hover{
color:white;
}

#scrollToTopBtn {
    display: none;
  }


/* ------HERO---------- */
.hero {
    /* height: 1vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    /* height: 390px; */
}

/* ------Accuel---------- */
.accueil-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#index .accueil-img {
    background-image: url('../img/covers/hero-accueil.png');
}

.accueil-img .container {
    display: flex;
    align-items: end;
    justify-content: flex-start;
    height: 300px;
    width: 100%;
}

.hero h1 {
    text-align: left;
}

#prestations {
    padding-bottom: 100px;
}

#prestations li {
    text-align: center;
    width: 100%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    text-align: center;
    
}
.picto{
    position: relative;
    display: block;
    z-index: 2;
}
#index a {
    color: var(--gris-claire)
}
#index a:hover {
    color: white;
}
.picto::before{
    content: url(../img/anim/eclat.png);
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
display: flex;
justify-content: center;
align-items: center;
} 
.prestations {
    display: grid;
    grid-template-columns: 1fr;
    gap: 100px;
    justify-items: center;

}
.presentation-court{
    display: grid;
    grid-template-columns: 98px auto;
    grid-template-rows: auto auto auto;
    grid-template-areas: 
    "vp-portrait titre"
    "text text"
    "boutons boutons";
    row-gap: 24px;
    
}

.presentation-court img{
    grid-area: vp-portrait;
    object-fit: cover;
    width: 100%;

}
.presentation-court h2{
    grid-area: titre;
    align-self: flex-end;
}
.presentation-court .text{
    grid-area: text;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.presentation-court .text :last-child{
    color: var(--jeune);
}
.presentation-court .container-boutons{
    grid-area: boutons;
}

.container-boutons{
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-block: 36px;
    align-items: center;
    align-content: center;

}

.scroll-down-btn {
  display: none;
  }
  
  .scroll-down-btn span {
    display: none;
  }
  
/* ------Accuel-carrusel---------- */
#caruseill {
    
    padding-block: 42px;
    text-align: center;
}
#caruseill .container{
    margin-block: 32px;

    /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; */
}
.splide{
    margin-block: 32px;
}
.splide__slide{
    height: 200px;
    object-fit: cover;
    /* display: flex;
    flex-direction: column;
    justify-content: flex-end; */
    transition: transform 0.3s ease, opacity 0.3s ease;
    /* opacity: 0.5; */
    transform: scale(0.8);
    border-radius: 20px;
    /* padding: 16px; */
}
.is-active{
    /* opacity: 1; */
    transform: scale(1);
    
  }

.slide{
    background-color: var(--blue);
    
    position: relative;
    
  }

  .slide a{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;

}
.splide__slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.titre-slide{
    color: white;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
}
.titre-slide:hover{
    color: rgb(63, 63, 63);
}
 

/* ------404---------- */
.quatre-cent {
    position: relative;
    padding-top: 72px;
   
    
}
#quatre-cent h1,h2{
    z-index: 5;
}

.guitar-casee {
    position: absolute;
    width: 130vw;
    left: -24%;
    top: 18%;

    z-index: 1;

}
.quatre-cent .bouton-lien{
    max-width: 200px;
    margin-block: 24px;
}

.quatre-cent h2 {
    font-size: 34px;
}
.quatre-cent p{
    margin-bottom: 200px;
}
#quatre-cent a {
    color: var(--gris)
}
#quatre-cent a:hover {
    color: white;
}




/******** PORTFOLIO *********/
.menu-filtre-roles {
    opacity: 0;
    
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    
    transition: opacity 0.5s ease, height 0.5s ease;
    height: 0px;
}
.titre-portfolio{
    position: absolute;
}

.menu-filtre-roles.show {
    opacity: 1;
    height: 300px;
    pointer-events: all;  
  }

.menu-filtre-roles ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    padding-block: 30px;
}

.menu-filtre-roles ul li a {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.filtre {
    display: grid;
}

#filtre-roles {
    margin-block: 50px;
    /* display: flex; */
    justify-content: space-between;
}
.container-filter {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    
}
.button-filtre-roles {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid black;
    border-radius: 20px;
    padding: 8px 25px;
    transition: all 0.3s ease-in-out;
    
}



.button-filtre-roles:hover{
    background-color: rgb(227, 227, 227);
    cursor: pointer;
}

#portfolio-container li{
    
    width: 300px;
    display: flex;
    flex-direction: column;
    
    
}
.cover {
width: 100%;
height: 264px;
position: relative;
border-radius: 20px;
overflow: hidden;
}

.cover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/texture-grain.png);
    /* background-blend-mode: multiply; */
    opacity: 1;
    transition: 0.3s ease-in;
}
.cover::before{
    content: "";
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 10;
    background-image: linear-gradient(to top, white, rgba(255, 255, 255, 0));
}

.cover:hover::after {
    opacity: 0;
}

.img-portfolio{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.description {
    display: flex;
    gap: 24px;
    margin-top: 16px;
}
#portfolio{
    margin-bottom: 36px;
}

#portfolio-container ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}


/* ------PROJET---------- */

.cover-projet-gradient{
    
    position: relative;
    width: 100vw;
    height: 90vh;
    overflow: hidden;

}
.cover-projet-gradient::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 60%;
    
    
    background-image: linear-gradient(to top, #ffffffde, #ffffff00);
    
}

.cover-projet {
        object-fit: cover;
        height: 100%;
       
        width: 100%;
    }

#projet h1 {
    font-size: 52px;
    font-weight: 500;
    z-index: 8;
    position:relative;

}


.contenu-hero {
    margin-top: -70px;
    z-index: 5;
}

#info_objectif_projet {
    background-color: white;
    border-radius: 20px;
    padding: 24px;

}
#info_objectif_projet a{
    font-family: "Poppins";
    font-size: 14px;
    color: rgb(61, 61, 61);
}

#page-builder div {
    margin-block: 50px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#page-builder iframe,
#page-builder img {
    width: 100%;
    height: auto;
    border: none;
}

#projet .social img,
#contacts .social img {
    filter: invert(1);
}
#projet .splide__slide{
    text-align: center;
    color: white;
}

.informations {
    display: grid;
    grid-template-columns: repeat(1, minmax(100px, 1fr));
    gap: 16px;
    max-width: 100%;
    height: auto;
}

.informations li {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
}
.word-break{
    word-break: break-all;
}

/* ------Lecteur audio---------- */
.audio-old {
    display: none;
  }


  .custom-audio-player {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    padding-block: 10px;
    width: 300px;
    justify-content: space-between;
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 24px;
  }
  
  
  .play-pause {
    background: var(--blue);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .icon {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
    
  }
  
  
  .play-pause:hover #playIcon {
    transform: scale(1.3);
  }
  

  .hidden {
    display: none;
  }
  
  #progressBar {
    flex-grow: 1;
    appearance: none;
    height: 1px;
    background: var(--gris);
    border-radius: 5px;
    cursor: pointer;
    /* overflow: hidden;
    outline: none;
    position: relative; */
  }
  
  #progressBar::-webkit-slider-thumb {
    appearance: none;
    width: 10px;
    height: 10px;
    background: var(--blue);
    border-radius: 50%;
    cursor: pointer;
    align-self: center;
  }
  /* #progressBar::-webkit-slider-runnable-track {
    flex-grow: 1;
    appearance: none;
    height: 5px;
    background: var(--gris);
    border-radius: 5px;
    position: relative;
    cursor: pointer;
  } */


  #currentTime, #totalTime {
    font-size: 8px;
    color: var(--gris);
    position: absolute;
    bottom: 0;
    
    

  }
  
  #currentTime {
     left: 60px; 
    }
  #totalTime { 
    right: 0px; 
}



/* ------A propos---------- */

#a_propos .hero {
    background-image: url(../img/covers/A-propos.png);
    background-position: top;
    background-size: cover;
    color: white;

}

#a_propos .hero div {
    position: relative;
}

#a_propos .hero div::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    background-color: #001eff;
}

.storytelling {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 50px;
    margin-block: 50px;
}

.storytelling img {
    max-width: 300px;
    height: auto;
}

.storytelling li {
    text-align: center;
}

.storytelling p {
    text-align: left;
}

.block-groupes-music {
    display: grid;
    grid-template-columns: repeat(1, auto);
    grid-template-rows: repeat(2, auto);
}

.block-groupes-music img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-template-areas:
        "img-7 img-7 . ."
        "img-7 img-7 . ."
        "img-7 img-7 . img-8";
}

.img-7 {
    grid-area: img-7;
}

.img-8 {
    grid-area: img-8;
}

.item2 {
    margin-block: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.item2 .liens {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.item2 .liens a {
    color: black;
}

.item2 .liens .bouton-mob {
    color: white;
    text-align: center;
    align-self: center;
    margin-block: 30px;
}

.img-10 {
    width: 100vw;
    /* margin-bottom: -100; */
}
#a_propos{
    margin-bottom: -10px;
}
.hidden-img{
opacity: 0;
transition: opacity 1.5s ease-out;
}
.apparaitre{
opacity: 1;
}
.img-plaine{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ------Contacts---------- */
#contacts h1{
    margin-block: 16px;
}
.hero-contactes{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;

}

.hero-contactes .img{
    object-fit: cover;

   
    width: 100%;
    border-radius: 20px;
}
.list-contactes{
    display: flex;
    flex-direction: column;
    margin-block: 32px;
    
}
.list-contactes ul:first-child{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.list-contactes ul:first-child li{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}
.list-contactes .social{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 50%;
    margin-top: 32px;
}
.form{
   width: 100%;
   display: flex; 
   flex-direction: column;
   gap: 32px;
   margin-block: 32px;
}
.form div{
   width: 100%;
   display: flex; 
   flex-direction: column;
   gap: 8px;
}
.form input, textarea{
    border-radius: 8px;
    border: 0.5px solid var(--gris);
    padding: 8px;
}
.form label input{
    margin-right: 8px;
}
#contacts hr{
    margin-block: 24px;
}

.wpforms-field-description{
    display: inline !important;
}
.wpforms-field-description a{
    text-decoration: underline;
}
.wpforms-field-required {
    display: inline !important;
}
.wpforms-field-required input{
    display: inline !important;
    width: auto !important;
}
.wpforms-field-label{
    margin-bottom: 30px !important;
}
.choice-1{
    margin-bottom: 10px !important;
}
.bouton-premier-form{
    padding-inline: 18px;
    padding-block: 12px;

    background-color: var(--blue) ;
    background-image: linear-gradient(45deg, #656DDB, #5C00D3) !important;
    border-radius: 20px !important;
    color: white !important;
    width: auto;
    /* flex: 0; */
    align-self: start;
}

/* --------LEGALES---------- */
#mentions_legales .container{
    margin-block: 54px;
    
    display: grid;
    gap: 36px;

}

#page-politique-de-confidentialite,
#page-mentions-legales,
#page-plan-du-site {
    margin-bottom: 72px;
    margin-top: 72px;
}

#page-politique-de-confidentialite h2,
#page-mentions-legales h2{
    margin-top: 34px;
    margin-bottom: 12px;
    color: var(--gris);
    font-family: "Poppins";

}
#page-politique-de-confidentialite h1,
#page-mentions-legales h1{
    margin-top: 34px;
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--bleu-fonce);
}
#page-plan-du-site li{
    margin-block: 12px;
}

/*============== TABLETTE ================== */

@media (min-width: 768px){
    .container {
        max-width: 600px;
        margin-inline: auto;
    }
    /* .hero .container{
        height: 500px;
    } */
    .guitar-casee {
        width: 72vw;
        left: 0%;
        top: 4%;
        z-index: 1;
    }

/* ------Portfolio---------- */
    /* .menu-filtre-roles {
        width: 80vw;
    } */
/* ------Accuel---------- */

    #index .hero .container{
        height:500px;
    }
    
    .prestations{
        
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 1fr);
        grid-template-areas: 
        "designer designer contenu contenu"
        "compositeur compositeur scenographie scenographie"
        ". composition composition .";
        gap: 0;
        width: 100%;
    }

.designer{
    grid-area: designer;
}
.contenu{
    grid-area: contenu;
}
.compositeur{
    grid-area: compositeur;
}
.scenographie{
    grid-area: scenographie;
}
.composition{
    grid-area: composition;
}

/* ------FOOTER PC---------- */
      .foter-menus {
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: 1fr;
        
        grid-template-areas: 
        "footer-premier footer-deuxieme footer-troisieme projets-populaires footer-social";
    }

 .projets-populaires{
    grid-area: projets-populaires;
 }

    .projets-populaires {
        display: none;
    }

    .deux-menus {
        gap: 72px;
    }
}



/*================= DESKTOP =============== */
@media (min-width: 1160px) {
    .container {
        max-width: 1318px;
        margin-inline: auto;
    }
    #index .hero,
    #a_propos .hero {
        height: 100vh;
    }
    main {
        
        margin-top: -4px;
    }

    .icon-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: 24px;
    }
   
    .guitar-casee {
       
        width: 50vw;
        right: -5%;
        left: auto;
        top: auto;
        z-index: 1;
    }
    .quatre-cent p{
        margin-bottom: 100px;
    }
#mentions_legales .container{
    
    margin-top: 150px;
    grid-template-columns: repeat(2, 1fr);
    
    
    
}
    /* ------Accuel-carrusel PC---------- */
    .splide__slide.is-active {
        transform: scale(1);
        width: 70vw;
    }
    .splide__slide {
        /* padding-inline: 15vw; */
        height: 500px;
    }
 
    /* ------BUTTONS PC---------- */
/* .bouton-premier img{
    display: none;
} */
    .bouton-premier {
        display: inline-flex;
        max-height: 62px;
        border: 1px solid black;
        background: none;
        border-radius: 50px;
        color: black;
        align-self: start;
        justify-content: flex-start;
        align-items: center;
        gap: 0px;
        transition: 0.3s ease-in-out;
        height: 100%;
        object-fit: cover;
        overflow: visible;
        
    }
    .bouton-premier:hover{
        gap:16px;
    }
    .bouton-premier::before{
        display: inline-flex;
        content: "";
        background-image: url(../img/triangle_b.svg);
        background-size: cover;
        background-repeat:no-repeat;
        background-position: center;
        overflow: visible;
        width: 8px;
        height: 35px;
        transform: rotate(0deg) scale(0);
        transform-origin: 50% 50%;
        transition: 0.3s ease-in-out;
        opacity: 0;
        padding: 0;
        overflow: visible;
        
        
    } 
    .bouton-premier:hover::before {
        
        transform: rotate(360deg) scale(1);
        transform-origin: center center;
        opacity: 1;
        padding-right: 32px;
        top:calc(50%)
    }
    .bouton--blanc{
        border: 1px solid white;
        color: white;
    }
    .bouton--blanc::before{
        background-image: url(../img/triangle.svg);
    }
    .bouton-deuxieme{
        color: white;
        position: relative;
        display: block;
        padding-left: 0;
        border: none;
    }
    
    .bouton-deuxieme::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 20%;
        height: 3px;
        background-color: var(--jeune);
        transition: 0.3s ease-in-out;
    }
    
    .bouton-deuxieme:hover::after {
        width: 100%;
        max-width: 300px;
    }
    
    /* ------HEADER PC---------- */

    .home header:not(.change-taille){
        background-color: transparent;
    }
    .header nav {
        width: 100%;
        display: flex;
        justify-content: flex-end
    }

    .burgermenu,
    .fermer {
        display: none;
    }

    .menu-burger {
        position: static;
        width: 100%;
        transform: translateX(0);
        background: none;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0;
    }

    .main-menu {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 50px;
        padding-left: 92px;
    }

    .header .social {
        justify-content: flex-end;
        width: auto;
        align-items: center;
    }

    .pour-mob {
        display: none;
    }

    header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 10;
        height: 100px;
    }

    .logo-grand {
        display: block;
    }

    .logo_petit {
        display: none;
    }

    .hide-logo {
        display: none;
    }

    .change-taille {
        height: 50px;
    }
    .menu-item-105{
        display: none;
    }
     
    /* ------FOOTER PC---------- */
   
    .foter-menus {
        flex-direction: row;
        justify-content: space-between;
    }

    .foter-menus div:nth-child(2) {
        order: 4;
    }

    .projets-populaires {
        display: flex;
    }

    .deux-menus {
        gap: 72px;
    }

    /* ------Accuel PC---------- */
    #index .hero .container{
        height:700px;
    }
    
    .prestations{
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-template-areas: 
        "designer designer contenu contenu compositeur compositeur"
        ". scenographie scenographie composition composition .";
        row-gap: 100px;
    }
    #presentation-court{
    padding-bottom: 47px;
}

.designer{
    grid-area: designer;
}
.contenu{
    grid-area: contenu;
}
.compositeur{
    grid-area: compositeur;
}
.scenographie{
    grid-area: scenographie;
}
.composition{
    grid-area: composition;
}
.presentation-court{
    display: grid;
    grid-template-columns: 298px auto;
    grid-template-rows: auto auto auto;
    grid-template-areas: 
    "vp-portrait titre"
    "vp-portrait text"
    "vp-portrait boutons";
    row-gap: 24px;
    
}
.container-boutons{
    display: flex;
    flex-direction: row;
    gap: 62px;
    margin-block: 36px;
    justify-content: flex-start;
    align-self: flex-end;
    margin-bottom: 0;
}
#index .hero .container{
    height:100%;
    padding-bottom: 24px;
}



.scroll-down-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 50px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 100;
    text-decoration: none;
  }
  
  .scroll-down-btn span {
    display: block;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: scrollAnim 1.5s infinite;
    margin-top: 8px;
  }
  
  @keyframes scrollAnim {
    0% {
      transform: translateY(0);
      opacity: 1;
    }
    50% {
      transform: translateY(10px);
      opacity: 0.5;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
    
    /* ------PORTFOLIO PC---------- */
    .menu-filtre-roles {
        width: auto;
        height: 0px;
    }
    
    .menu-filtre-roles.show {
        
        height: 72px;
        
      }
    
    .menu-filtre-roles ul {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 30px;
        padding-block: 30px;
        width: 100%;
    }
    #portfolio-container ul {
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
        justify-items: center;

    }

    #portfolio {
        padding-top: 72px;
    }
  
    /* .filtre{
    position: relative;
} */
   
  
    /* ------PROJET PC---------- */
    .contenu-hero {
        width: 100%;
    }

    #projet h1 {
        font-size: 128px;
        padding-top: 138px;
    }
    #projet h1.long-text{
        font-size: 56px;
        padding-top: 46px;
        color:rgb(0, 0, 0);
    }


    #projet .container-hero {
        width: 100%;
        display: grid;
        grid-template-columns: auto 538px;
        grid-template-rows: 222px auto;
        grid-template-areas:
            "contenu-hero objectif"
            "audio objectif";
        margin-top: -200px;
       
    }

    .contenu-hero {
        grid-area: contenu-hero;
        
       
    }
  

    #info_objectif_projet {
        width: 100%;
        height: auto;
        grid-area: objectif;
        background-color: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.03);
        
    }

    .audio {
        grid-area: audio;
    }
    .audio-position{
        position: absolute;
    }

    #projet iframe {
        height: 510px;
    }
    .custom-audio-player {
        gap: 24px;
        background: none;
        width: 80%;
        position:static;
        padding-bottom: 0;
        margin-bottom: 0;
        align-self: center;
        padding-bottom: 0;
        margin-top: 72px;
      }
    #currentTime, #totalTime{
        position: static;
    }
    #page-builder{
        margin-block: 46px;
    }
    #page-builder .container {
        width: 874px;
        margin-inline: auto;
    }
    #page-builder figure{
        width: 874px;
        margin-inline: auto;
        height: auto;
    }
    #page-builder .container{
        display: flex;
        flex-direction: column;
        gap: 46px;
        
    }
    
    
    /* ------A propos PC---------- */
    .storytelling{
gap: 100px;
padding-block: 46px;
    }
    .storytelling img {
        max-width: 426px;
    }

    .storytelling p {
        max-width: 650px;
        margin-inline: auto;
    }

    .storytelling .image-5 {
        max-width: 650px;
        margin-inline: auto;
    }

    .storytelling .image-6 {
        max-width: 874px;
        margin-inline: auto;
    }

    .block-groupes-music {
        width: 100%;
        justify-content: center;
        grid-template-columns: 50% 50%;
        grid-template-rows: repeat(2, auto);
        gap: 20px;
    }
    .item1 {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-template-areas:
            "img-7 img-7 img-7 img-7 . ."
            "img-7 img-7 img-7 img-7 . ."
            ". img-8 img-8 img-8 img-8 .";
            row-gap: 106px;
            column-gap: 20px;
    }
    .item2 {
        margin-block: 0px;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
    .item2 .liens{
        width: 50%;
    }
    .item2 .bouton-premier{
        margin-left: 0;
        margin-top: 24px;
    }
    #a_propos .hero .container{
        height:100%;
        padding-bottom: 24px;
    }




    /* ------Contacts PC---------- */
    #contacts{
        padding-top: 100px;
    }
.hero-contactes{
    flex-direction: row;
    gap: 20px;
    height: 714px;
}
.hero-contactes .img{
    flex: 1;
    height: auto;
}
.hero-contactes .list-contactes{
    flex: 1;
    padding-left: 92px;
    


}
.list-contactes ul:first-child{
    height: 70%;
    justify-content: center;
    gap: 36px;
}
.list-contactes .social{
    
    justify-content: flex-start;
    align-items: center;
}


.form{
    min-width: 650px !important;
    margin-inline: auto;
}

.bouton-premier-form{
    display: inline-flex;
    max-height: 62px;
    border: 1px solid black !important;
    background: none !important;
    border-radius: 50px !important;
    color: black!important;
    align-self: start;
    justify-content: flex-start;
    align-items: center;
    gap: 0px ;
    transition: 0.3s ease-in-out;
    
    object-fit: cover;
    overflow: visible;
    padding: 30px !important;
    
}
.bouton-premier-form::before{
    display: inline-flex;
    content: "";
    background-image: url(../img/triangle_b.svg);
    background-size: cover;
    background-repeat:no-repeat;
    background-position: center;
    overflow: visible;
    width: 8px;
    height: 35px;
    transform: rotate(0deg) scale(0);
    transform-origin: 50% 50%;
    transition: 0.3s ease-in-out;
    opacity: 0;
    padding: 0;
    
    overflow: visible;
    
    
} 
.bouton-premier-form:hover::before {
    
    transform: rotate(360deg) scale(1);
    transform-origin: center center;
    opacity: 1;
    padding-right: 32px;
    top:calc(50%);
    margin-right: 10px;
}

/* --------LEGALES---------- */

#page-politique-de-confidentialite,
#page-mentions-legales,
#page-plan-du-site{
    margin-bottom: 72px;
    margin-top: 142px;
}


/* --------UP BOUTON---------- */

#scrollToTopBtn {
    display: flex;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: white;
    color: black;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 10;
    align-items: center;
    justify-content: center;
  }
  #scrollToTopBtn.hidden {
    display: none;
  }
  
  #scrollToTopBtn .progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
  }
  
  .progress-ring__circle {
    stroke-dasharray: 164;
    stroke-dashoffset: 164;
    transition: stroke-dashoffset 0.3s ease;
  }
  .triangle-upbouton{
    position: absolute;
    width: 20px;
    height: 20px;
  }

}


/* --------ACCESSIBILITY---------- */

.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
  
  .visually-hidden-focusable {
    background: #000;
    color: #fff;    
    padding: 8px;
    display: inline-block;
    text-decoration: none;
  }
  nav.access-links {
    position: absolute;
    left: -99999px;
    max-width: max-content;
    z-index: 20;
    top:20px;
  }
  nav.access-links:focus-within {
    left: 0;
  }

  #skiptarget{
    position: absolute;
    left: -99999px;
    max-width: max-content;
  }

  #skiptarget:focus-within {
    left: 0;
  }
  .access-links a {
    padding: 14px;
    background-color: #1f1e39;
    color: white;
    border: 4px solid #A5BEFF;
  }
  .access-links a:focus {
    background-color:#A5BEFF ;
    color: black;
    border: 4px solid white;
  }
  .access-links ul{
    display: flex;
    flex-direction: column;
    gap: 36px;  
  }