@font-face {
    font-family: 'FragmentMono';
    src: url(../font/FragmentMono-Regular.ttf)  format("truetype");
}
@font-face {
    font-family: 'satoshi';
    src: url(../font/Satoshi-Variable.ttf)  format("truetype");
}

body,
html{
    margin: 0;
    padding: 0;
    height: 100%;
}

.tel-link2{
    color: #31440F;
    text-decoration: none;
}

.tel-link{
    color: #91A273;
    text-decoration: none;
}

::selection{
    background-color: #EAF3DB;
    color: #31440F;
}

::-moz-selection{
    background-color: #EAF3DB;
    color: #31440F;
}

.texte-accent::selection{
    background-color: #EAF3DB;
    color: #B58D1F;
}

.texte-accent::-moz-selection{
    background-color: #EAF3DB;
    color: #B58D1F;
}

body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #FBFFF6;
}
body.no-scroll {
    overflow: hidden;
}
.menu-mobile{
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0%;
    background-color: #FBFFF6;
    z-index: 9;
    border-top: #31440F 2px solid;
}

.nav-mobile{
    margin: 20px;
    text-align: center;
    font-size: 25px;
    color: #31440F;
    font-family: satoshi;
    font-weight: 400;
    letter-spacing: -1%;
}

.cont-menu-mobile{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
}


header{
    padding: 0 7%;
    padding-top: 40px;
    align-items: center;
}

.header-laptop{
    display: flex;
}

.header-mobile{
    display: none;
}

.logo-header{
    width: auto;
    font-family: satoshi;
    font-weight: 700;
    font-size: 30px;
    color: #31440F;
}
.logo-retour{
    width: auto;
    font-family: FragmentMono;
    font-size: 16px;
    color: #31440F;
}
.logo-studio{
    font-weight: 500;
}
nav{
   margin-left: auto; 
}

a{
    text-decoration: none;
    color: #31440F;
    
}

.btn-header{
    font-size: 16px;
    margin-left: 20px;
    text-transform: uppercase;
    color: #31440F;
    font-family: FragmentMono;
}

.btn-select{
    font-weight: 600;
}

.main-accueil{
    display: inline;
    justify-content: center;
}

.intro-accueil{
    text-align: center;
    width: 100%;
    height: auto;
    padding-top: 200px;
    padding-bottom: 300px;
    color: #31440F;
}

h1{
    text-align: center;
    font-family: satoshi;
    font-weight: 500;
    margin: 0;
    font-size: 120px;
    color: #31440F;
    letter-spacing: -3%;
    margin-bottom: 40px;
}

p{
    margin: 0;
    font-size: 18px;
    font-family: satoshi;
    letter-spacing: 2%;
}

.p-centré{
    text-align: center;
}

.texte-accent{
    color: #B58D1F;
}

.gallerie-accueil{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 10%;
    gap: 40px;
}

.fiche-gallerie-accueil{
    width: 100%;
    display: inline;
    text-align: center;
    height: auto;
}

.fiche-gallerie-accueil-disp{
    display: none;
}

.cont-image-gallerie-accueil,.cont-image-page-projet{
    width: 100%;
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    margin-bottom: 3px;
}

.img-accueil{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cont-svg-fleche{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(270deg);
    height: 10%;
    aspect-ratio: 1/1;
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.05s ease;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}
.gallerie-projet .cont-svg-fleche{
    height: 10%;
}
.fiche-gallerie-accueil:hover .cont-svg-fleche{
    opacity: 1;
    transform: translate(-50%,-50%) rotate(360deg);
    height: 40%;
}

.gallerie-projet a:hover .cont-svg-fleche{
    opacity: 1;
    transform: translate(-50%,-50%) rotate(360deg);
    height: 45%;
}

h4{
    margin: 0;
    text-align: center;
    color: #31440F;
    font-family: FragmentMono;
    margin-top: 60px;
    margin-bottom: 40px;
    font-weight: 500;
}

.texte-collab{
    text-align: center;
    height: auto;
    padding: 0 10%;
    padding-top: 258px ;
    padding-bottom: 180px;
}

h2{
    margin: 0;
    text-align: center;
    font-size: 48px;
    color: #31440F;
    margin: 40px;
    font-family: satoshi;
    font-weight: 440;
    letter-spacing: -3%;
}

.btn{
    background-color: #B58D1F;
    font-size: 16px;
    display: inline-block;
    color: #FBFFF6;
    padding: 5px 15px;
    border-radius: 50px;
    font-family: FragmentMono;
    filter: drop-shadow(0 2px 6px #4d3c0c37);
}

.btn-voir-plus{
    background-color: #B58D1F;
    display: inline-block;
    font-size: 16px;
    color: #FBFFF6;
    padding: 5px 15px;
    border-radius: 50px;
    grid-column: 1 / -1;
    justify-self: center;
    font-family: FragmentMono;
    margin-top: 30px;
    filter: drop-shadow(0 2px 6px #4d3c0c37);
}

footer{
    margin-top: 80px;
}

.footer-haut{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 0 7%;
    background-color: #91A273;
    color: #31440F;
}

.footer-bas{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 7%;
    background-color: #31440F;
    color: #91A273;
}

.p-footer{
    width: 100%;
    text-align: center;
    font-family: satoshi;
    padding: 5px 0;
}

.gallerie-projet{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin-top: 64px;
    padding: 0 10%;
    gap: 40px;
}


.cont-3x4-gallerie-projet,
.cont-1x1-gallerie-projet,
.cont-4x3-gallerie-projet{
    width: 100%;
    position: relative;
    overflow: hidden;
}

.cont-3x4-gallerie-projet{
    aspect-ratio: 3/4;
}

.cont-1x1-gallerie-projet{
    aspect-ratio: 1/1;
}

.cont-4x3-gallerie-projet{
    aspect-ratio: 4/3;
}

.main-100,.comble-projet{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

h3{
    text-align: center;
    margin: 0;
    font-family: FragmentMono;
    font-weight: 100;
}

.cont-img1-page-projet{
    background-color: rgb(186, 186, 186);
    aspect-ratio: 16/4;
    margin: 80px 10%;
    transition: 0.3s;
}

.cont-img1-page-projet:hover{
    background-color: rgb(186, 186, 186);
    aspect-ratio: 4/2;
    margin: 80px 10%;
}

.grille-page-projet{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20%;
    margin-top: 80px;
    margin-bottom: 80px;
    gap: 40px;
}

.p-description{
    padding: 0 20%;

}

@media screen and (min-width : 1920px ) {

.intro-accueil{
    padding-top: 300px;
    padding-bottom: 350px;
}

h1{
    font-size: 110px;
    line-height: 140px;
}

.gallerie-accueil{
    grid-template-columns: repeat(4, 1fr);
}

.texte-collab{
    padding: 0 20%;
    padding-top: 258px;
    padding-bottom: 258px;
}

.fiche-gallerie-accueil-disp{
    display: inline;
}
}

@media screen and (max-width : 700px ){
header{
    padding-top: 25px;
    padding-bottom: 7px;
}
.header-laptop{
    display: none;
}

.header-mobile{
    display: flex;
    position: fixed;
    z-index: 8;
    background: #FBFFF6;
    width: 86%;
    border-bottom: 1px solid #31440F;
}

.logo-header{
    font-size: 22px;
}
.logo-retour{
    font-size: 16px;
}

.intro-accueil{
    padding-left: 10%;
    padding-right: 10%;
    width: auto;
    padding-top: 162px;
  padding-bottom: 120px;
}

h1{
    font-size: 50px;
}

.gallerie-accueil{
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
    padding: 0 15px;
}

.texte-collab{
    padding: 0 15px;
    padding-top: 80px;
    padding-bottom: 80px;
}

h2{
    font-size: 25px;
    margin: 30px 0px;
    letter-spacing: -1%;
}

.gallerie-projet{
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 15px;
}

.texte-disp{
    display: none;
}

.cont-img1-page-projet{
    margin: 40px 15px;
}

.p-description{
    padding: 0 30px;
}

.cont-img1-page-projet{
    aspect-ratio: 4/3;
}

.cont-img1-page-projet:hover{
    aspect-ratio: 4/3;
    margin: 40px 15px;
    padding: 0;
}

.footer-bas{
    display: block;
}

.p-footer-disp{
    display: none;
}
footer{
    margin-top: 40px;
}
h4{
    margin-top: 30px;
    margin-bottom: 20px;
}

.main-page-projet{
    margin-top: 62px;
}

.main-100{
    margin-top: 62px;
}

}