* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}


html {
  font-size: 100%;
}



:root{
  --bleu : #3D737F;
  --bleuClair : #B8DAE8;
  --marron : #92786C;
  --grisClair : #fafafa;
  --shadow-color: 0deg 0% 67%;
  --shadow-elevation-low:
    1px 1px 1.3px hsl(var(--shadow-color) / 0.61),
    3.5px 3.5px 4.6px -3.8px hsl(var(--shadow-color) / 0.39);
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #111;
  background-color: white;
  overflow-x: hidden;
  font-size: 1rem;       /* 16px */
  line-height: 1.6;
}

section {
  position: relative;
  padding: 7% 14%;
  display: flex;
  overflow: hidden;
  width: 100%;
  align-items: center;
  justify-content: center;
}


@media (max-width: 1040px) {
  section{
    padding: 12% 8% 12% 8%;
  }
}

@media (max-width: 768px) {
  section{
    padding: 90px 5% 90px 5%;
  }
}

.container {
  width: 100%;
}

h1  {
  font-weight: 700;
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  line-height: 1.2;
  margin-bottom: 10px;
}

h2{
  font-weight: 700;
  font-size: clamp(1.4rem, 2.9vw, 1.9rem);
  line-height: 1.2;
   margin-bottom: 10px;
}

@media (max-width: 768px) {
  h2{
      font-size: clamp(1.8rem, 2.9vw, 2.5rem);
  }
  h1{
      font-size: clamp(1.8rem, 2.9vw, 2.5rem);
  }
}



h3{
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.3;
}


p{
  font-weight: 300;
  font-size: 1rem;      /* 16px */
  line-height: 1.6;
}

strong{
  font-weight: 700;
}


.bouton{
  padding: 9px 28px;
  border-radius: 30px;
  border: 1px solid black;
  color: black;
  text-decoration: none;
  transition: 0.3s;
  margin: 20px 0px;
  display: inline-block;
}

.bouton:hover {
  background: black;
  color: white;
}


.intro{
  width: 66%;
  margin-bottom: 30px;
  text-align: center;
}

.intro-picto{
  width: 80px;
  margin-bottom: 10px;
}


@media (max-width: 1200px) {
  .intro{
    width: 80%;
  }
}

@media (max-width: 1040px) {
  .intro{
    width: 100%;
  }
}


.hover-icon-service {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transform: scale(0.8);
  transition: all 0.4s ease;
  opacity: 0;
}

.hover-icon-service img{
  width: 70%;
  object-fit: contain;
}



/* ***********************************************************************************************
																			ANIMATIONS
*********************************************************************************************** */

/* --------------- Fade In -----------------*/

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity .8s ease,
    transform .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------- Fade In 2 -----------------*/

.reveal2 {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity .8s ease,
    transform .8s ease;
}

.reveal2.visible {
  opacity: 1;
  transform: translateY(0);
}


/* --------------- Zoom in -----------------*/

.zoomIn {
  opacity: 0;
  transform: scale(0);
  transition:
    opacity .8s ease,
    transform .8s ease;
}

.zoomIn.visible {
  opacity: 1;
  transform: scale(1);
}



/* --------------- Opacité -----------------*/

.revealO {
  opacity: 0;
  transform: translateY(0px);
  transition:
    opacity 1s ease-out,
    transform .8s ease;
}

.revealO.visible {
  opacity: 1;
  transform: translateY(0);
}


/* --------------- Anim Gauche -----------------*/

.animGauche1 {
  opacity: 0;
  transform: translateX(-400px) rotate(5deg);
  transition:
    opacity .8s ease,
    transform 1.5s ease;
}

.split-img.visible .animGauche1 {
  opacity: 1;
  transform: translateX(0px) rotate(-8deg);
}

.animGauche2 {
  opacity: 0;
  transform: translateX(-400px) rotate(-15deg);
  transition:
    opacity 1s ease,
    transform 1.2s ease;
}

.split-img.visible .animGauche2 {
  opacity: 1;
  transform: translateX(0px) rotate(4deg);
}


.animGauche3 {
  opacity: 0;
  transform: translateX(-400px) rotate(-30deg);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.split-img.visible .animGauche3 {
  opacity: 1;
  transform: translateX(0px) rotate(15deg);
}




/* ***********************************************************************************************
																			NAV
*********************************************************************************************** */

/* ================= HEADER ================= */
.site-header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  background: white;
  z-index: 50;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-family: "Parkinsans", sans-serif;
  font-size: 20pt;
}

.brand a{
text-decoration: none;
color: black;
}

.brand img {
  width: 52px;
}

/* Desktop nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-desktop a {
  text-decoration: none;
  color: black;
  font-size: 0.95rem;
  position: relative;
}

.nav-desktop a:not(.btn-contact)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: black;
  transition: width 0.3s;
}

.nav-desktop a:hover::after {
  width: 100%;
}

/* Button */
.nav-desktop .btn-contact {
  padding: 10px 22px;
  border-radius: 30px;
  transition: 0.3s;
  text-align: center;
  color: black;
  background-color : white;
  border: 1px solid black;
}

.btn-contact a{
    color: white;
}

.btn-contact:hover {
  background: black;
  color: white;
}

/* Burger */
#burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

#burger span {
  width: 22px;
  height: 2px;
  background: black;
  transition: 0.3s;
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border-radius: 0 0 20px 20px;
  padding: 30px 24px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  height: 100vh;
}

.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
  padding: 0 20px;
}

.nav-mobile img {
width: 20px;
margin-right: 10px;
}


.nav-mobile a {
  text-decoration: none;
  color: black;
  font-size: 1.1rem;
}


@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  #burger {
    display: flex;
  }
  .brand,
  .mobile-brand {
    font-size: 13pt;
  }
  .brand img,
  .mobile-brand img {
    width: 32px;
  }
}



/* ***********************************************************************************************
																			HOME
*********************************************************************************************** */
/*.hero {
  color: white;
  background-color: white;
    min-height: 100vh;
} */

.hero {
  color: white;
  background-color: white;
  min-height: 100vh;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -40px;

  background-image: url("imgs/fond.png");
  background-size: cover;
  background-position: center;

  will-change: transform;
  transition: transform .50s ease-out;
}


.titre {
  position: relative;
  z-index: 2;

  text-align: center;
  color: white;

  max-width: 760px;
  padding: 20px;
}

.titre img{
  width: 20%;
}

.titre p {
  line-height: 1em;
  padding: .1em .5em;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
  text-transform:  uppercase;
  letter-spacing: 0.8rem;
  margin:0;
  font-size: 5rem;
}


.titre h1 {
  text-align: center;
  font-weight: 300;
  font-size: 1.2rem;
}

.hero .bouton {
  border: 1px solid white;
  color: white;
}

.hero .bouton:hover {
  background: white;
  color: black;
}


/*

#allFond {
  position: absolute;
  width: 110%;
  height: 103%;
  overflow: hidden;
  border-bottom: 5px solid #421325;
  left:-150px;
}

#allFond div {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#fond1 {
  background-image: url("imgs/fond.png");
}

*/




@media (max-width: 768px) {


  .titre p {
    font-size: 3rem;
  }

}

@media (max-width: 515px) {

  .parallax-bg {
    transition: none;
  }

  .titre img{
    width: 30%;
  }

  .titre p {
    line-height: 1em;
    padding: .1em .5em;
    margin-bottom: 20px;
    letter-spacing: 0.3rem;
    font-size: 2.5rem;
  }

}






/* ***********************************************************************************************
																		Zone : 	Gallery
************************************************************************************************/

.gallery{
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
  flex-direction: column;
}

.gallery .intro{
  padding-left: 7%;
  padding-right: 7%;
}

.gallery-viewport {
  width: 100%;

}

.gallery-track{
  display: flex;
  gap: 40px;
  will-change: transform;
}

.gallery-item{
    flex: 0 0 calc(25% - 40px);
}

.gallery-item a{
  text-decoration: none;
}

.gallery-item figcaption h3 {
  /*font-size: 1.1rem;*/
  font-weight: 500;
  margin: 15px 0 0 0;
  color: black;

}

.gallery-item figcaption p {
   color : var(--marron);
  line-height: 1.2;
}

.gallery-img {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 5/4;
  transition: transform .3s ease, box-shadow .3s ease;
}

.gallery-img .survol{
  opacity: 0;
  transition: all 0.6s ease;
  position: absolute;
  left: 0;
  top: 0;
}

.gallery-img .hover-icon-service img{
  width: 70%;
  object-fit: contain;
}


.gallery-img:hover img {
  transform: scale(1.05);
}

.gallery-img:hover .survol{
  opacity: 1;
  transform: scale(1.05);
}

.gallery-img:hover  .hover-icon-service{
  opacity: 1;
  transform: scale(1);
}



@media (max-width: 1100px) {
  .gallery-item {
    flex: 0 0 calc(33.33% - 22px); /* 3 images */
  }
}

@media (max-width: 768px) {
  .gallery .intro p{
    text-align: left;
  }

  .gallery .intro h2{
    text-align: left;
  }

  .gallery-item {
    flex: 0 0 calc(50% - 22px); /* 2 images */
  }
  .gallery-track{
    gap: 20px;
  }
  .gallery-item figcaption h3 {
    margin: 10px 0 0 0;
    font-size: 1rem;
  }
  .gallery-item figcaption p {
    font-size: 0.9rem;
  }

  .service p{
    text-align: left;
  }
  .service h2{
    text-align: left;
  }
}

@media (max-width: 480px) {
  .gallery {
    padding: 40px 0;
  }

}

/* ***********************************************************************************************
																		Zone : 	Services
*********************************************************************************************** */


.service{
  flex-direction: column;
  padding-top: 9%;
}

.service .intro{
  margin-bottom: 60px;
}

.service .intro h2{
  animation: fadein 1s ease-out 0s;
  animation-fill-mode:forwards;
}

.service .container {
  display: flex;
  flex-direction: row;
  gap: 45px;
  flex-direction: row;
}

.service .container .picto {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.service .container .picto img{
width: 100%;
object-fit: contain;
}


.service-text {
  width: calc(33% + 45px);
  position:relative;
}

.service-text a{
  text-decoration: none;
}


.service-text h3{
  margin-top: 15px;
  margin-bottom: 5px;
  color: black;
}



.service-text p{
  line-height: 1;
  font-size: 0.9rem;
  color: var(--marron);
  margin-bottom: 20px;
}


.service_img{
  width: 100%;
  aspect-ratio: 16/9;
  background-color: grey;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.service_img .survol{
  opacity: 0;
  transition: all 0.6s ease;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service_img .dem-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service_img:hover .dem-img{
  transform: scale(1.2);
}





.service_img:hover .hover-icon-service{
  opacity: 1;
  transform: scale(1);
}

.service_img:hover .survol{
  opacity: 1;
  transform: scale(1.2);
}





@media (max-width: 1300px) {
  .service_img{
    width: 100%;
    aspect-ratio: 5/4 ;
  }

}


@media (max-width: 768px) {
  .service .intro {
    margin-top: 20px;
  }


  .service .container{
    flex-direction: column;
    gap : 7px;
  }

  .service_img{
    width: 100%;
    aspect-ratio: 16/5 ;
  }

  .service-text {
    width: 100%;

  }


  .service .picto {
    width: 30px;
    height: 30px;
    margin-bottom: 15px;
  }

  .service.container {
    flex-direction: column;
    gap: 50px;
  }
}





/* ***********************************************************************************************
																			ma demarche
*********************************************************************************************** */

.split{
  justify-content: flex-start;
  padding: 7% 0%;
  min-height: 60vh;
  gap : 40px;
  overflow: visible;
}

.split .intro{
  text-align: left;
  padding-right: 14%;
  width: 50%;
  position: relative;
  margin-bottom: 0;
}




.split-img{
  width: 50%;
  padding-top: 2%;
  position : relative;
}

.split1{
  position:  relative;
  width: 100%;
  z-index: 3;
  left: -20%;
}

.split2{
  position:  absolute;
  width: 63%;
  z-index: 1;
  top:-12%;
  left: 32%;;
}

.split3{
  position:  absolute;
  width: 48%;
  z-index: 2;
  top:55%;
  left: 45%;
}



.split-img img{
  width: 100%;
  object-fit: contain;
}



@media (max-width: 1040px) {
  .split{
    flex-direction: column-reverse;
    gap : 30px;
  }

  .split .intro{
    text-align: center;
    padding-right: 8%;
    padding-left: 8%;
    width: 100%;
  }


  .split1{
    position:  relative;
    width: 100%;
    z-index: 3;
    left: -20%;

  }

  .split2{
    position:  absolute;
    width: 80%;
    z-index: 1;
    top:7%;
    left: 40%;
  }

  .split3{
    position:  absolute;
    width: 52%;
    z-index: 2;
    top:55%;
    left: 60%;
  }
}

@media (max-width: 768px) {

  .split-img{
    padding-top: 10%;
  }
  .split .intro{
    text-align: left;
  }
}

@media (max-width: 520px) {




  .split1{
    position:  relative;
    width: 147%;
    z-index: 3;
    left: -35%;
  }

  .split2{
    position:  absolute;
    width: 106%;
    z-index: 1;
    top:2%;
    left: 40%;
  }

  .split3{
    position:  absolute;
    width: 71%;
    z-index: 2;
    top:59%;
    left: 62%;
  }
}


/*.split{
  justify-content: flex-start;
  padding: 7% 0%;
  min-height: 60vh;
  gap : 40px;
}

.split .intro{
  text-align: left;
  padding-right: 14%;
  padding-left: 10%;
  width: 60%;
  position: relative;
  margin-bottom: 0;
}


 .split-background{
  background-color: var(--grisClair);
  width: 200%;
  height: 250%;
  position: absolute;
  z-index: -1;
  left: -100%;
  top:-75%;
}


.split-img{
  width: 40%;
  padding-top: 2%;
  position : relative;
}

.split1{
  position:  relative;
  width: 100%;
  z-index: 3;
  left: -20%;
  transform: rotate(-8deg);
}

.split2{
  position:  absolute;
  width: 30%;
  z-index: 1;
  top:6%;
  left: 6%;
  transform: rotate(4deg);
}

.split3{
  position:  absolute;
  width: 20%;
  z-index: 2;
  top:50%;
  left: 18%;
  transform: rotate(15deg);
}



.split-img img{
  width: 100%;
  object-fit: contain;
}



@media (max-width: 1040px) {
  .split{
    flex-direction: column-reverse;
    gap : 30px;
  }

  .split .intro{
    text-align: center;
    padding-right: 8%;
    padding-left: 8%;
    width: 100%;
  }

  .split1{
    position:  relative;
    width: 100%;
    z-index: 3;
    left: -40%;
    transform: rotate(-8deg);
  }

  .split2{
    position:  absolute;
    width: 30%;
    z-index: 1;
    top:293px;
    left: 47%;
    transform: rotate(4deg);
  }

  .split3{
    position:  absolute;
    width: 20%;
    z-index: 2;
    top: 65%;
    left: 64%;
    transform: rotate(15deg);
  }


}

@media (max-width: 558px) {

  .split1{
    position:  relative;
    width: 162%;
    z-index: 3;
    left: -57%;
    transform: rotate(-8deg);
  }

  .split2{
    position:  absolute;
    width: 48%;
    z-index: 1;
    top:418px;
    left: 48%;
    transform: rotate(4deg);
  }

  .split3{
    position:  absolute;
    width: 38%;
    z-index: 2;
    top: 75%;
    left: 53%;
    transform: rotate(15deg);
  }

}*/





/* ***********************************************************************************************
																			FAQ
*********************************************************************************************** */


.faq {
  background: var(--grisClair);
    min-height: 60vh;
    font-size: 1.1rem;
}

.faq.container{
  max-width: 1200px;
}

.faq h2 {
margin-bottom: 45px;
text-align: center;
}



.faq-item {
  background: white;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid black;
  border-bottom: 2px solid black;
  transform: rotate(45deg);
  transition: transform 0.4s ease;
  margin: 10px;
  flex-shrink: 0;
}

.faq-item.active .chevron {
  transform: rotate(-135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.faq-answer p {
  margin: 20px 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 0.7;
}



@media (max-width: 768px) {
  .faq h2 {
  text-align: left;
  }
}

/* ***********************************************************************************************
																			FOOTER
*********************************************************************************************** */


.site-footer {
  background: black;
  color: white;
  padding: 0;
  background-image: url("imgs/fond_footer.png");
  background-size: cover;
  background-position: top left;
  background-color: white;
}

.gris {
  background: black;
  color: white;
  padding: 0;
  background-image: url("imgs/fond_footer.png");
  background-size: cover;
  background-position: top left;
  background-color: var(--grisClair);
}

/* ---------- CTA ---------- */
.footer-cta {
  padding: 150px 5% 50px 5%;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: auto;
}

.footer-cta h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 500;
}

.site-footer .bouton {
  border: 1px solid white;
  color: white;
}

.site-footer .bouton:hover {
  background: white;
  color: black;
}


/* ---------- BOTTOM ---------- */
.footer-bottom {
  padding: 40px 5% 30px 3%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  opacity: 0.9;
}

.cta-btn{
  font-family: "Plus Jakarta Sans", sans-serif;
}

.footer-bottom{
  font-family: "Plus Jakarta Sans", sans-serif;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  color: white;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: 0.3s;
  font-size: 0.85rem;
}

.socials a:hover {
  background: white;
  color: black;
}


.footer-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-right a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
}

.footer-right a:hover {
  opacity: 1;
}



@media (max-width: 768px) {


  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    gap: 16px;
  }
}





/* ***********************************************************************************************
																			PAGE SERVICES
*********************************************************************************************** */



.servicesIntro strong{
  color: var(--marron);
}

.transition{
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}


@media (max-width: 1040px) {
  .servicesIntro{
    flex-direction: column;
    padding: 80px 0% 80px 0%;
  }
  .servicesIntro .intro {
    width: 100%;
    margin-bottom: 50px;
    padding: 0% 7%;
  }
}

@media (max-width: 768px) {
  .split .intro {
    padding: 0% 5%;
  }
}

.mesServices{
    gap: 45px;
    background-color:var(--grisClair);
    flex-direction: column;
    padding-top: 20px;
}

.documents {
  display: flex;
  gap: 60px;
  min-height: 50vh;
  background-color: white;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  padding: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
}

.documents:hover{
  transform: scale(1.02);
}

.documents:hover .survol{
  opacity: 1;
}


.doc-img{
  width: 312px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  flex-shrink: 0;
  position: relative;
}

.doc-img .survol{
  opacity: 0;
  transition: all 0.6s ease;
  position: absolute;
  left: 0px;
}


.doc-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}


.services-content h2{
  margin-bottom: 30px;
}


.services-content p{
  margin-bottom: 30px;
}

.services-content ul{
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300;
  font-size: 13pt;
  list-style-type:none;
}

.services-content ul li{
background-image: url("imgs/pictos/bulletPoint.svg");
background-position: 0px 6px;
background-size: 15px;
background-repeat: no-repeat;
padding-left: 25px;
}



@media (max-width: 900px) {
  .documents {
    flex-direction: column-reverse;
    padding: 30px 5%;
  }

  .illustration {
    flex-direction: column;
    padding: 30px 5%;
  }

  .design {
    flex-direction: column-reverse;
    padding: 30px 5%;
  }

  .services-content {
    width: 100%;
  }

  .doc-img{
    width: auto;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    flex-shrink: 0;
  }

  .documents img,
  .docs-content {
    width: 100%;
  }

}




@media (max-width: 768px) {
.servicesIntro h1{
  text-align: left;
}

.servicesIntro p{
  text-align: left;
}

.mesServices p{
  text-align: left;
}

.mesServices h2{
  text-align: left;
}

.mesServices li{
  text-align: left;
}

}






/* ***********************************************************************************************
																		PAGE :	Contact
*********************************************************************************************** */



.contact{
  flex-direction: column;
}

.meContacter{
  display: flex;
  gap:40px;
}

.infosContact{
  display: flex;
  flex-direction: column;
  width: 40%;
}

.zoneInfos{
  display: flex;
  flex-direction: row;
  align-items: center;
}

.zoneInfos a{
  text-decoration: none;
  color: var(--marron);
transition: all 0.6s ease;
}

.zoneInfos a:hover{
  color: black;
  transition: all 0.6s ease;
}

.zoneInfos a p{
  font-weight: 900;
}


.zoneInfos img{
  width: 40px;
  margin: 10px;
}

.txtContact{
  padding: 15px;
}


@media (max-width: 768px) {
  .meContacter{
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }


  .infosContact{
    align-items: left;
      width: 100%;
  }


  .txtContact{
  padding: 0px;
  }


}


/* ***********************************************************************************************
																		PAGE :	Portfolio
*********************************************************************************************** */

#portfolio {
  flex-direction: column;
}

#portfolio .divider {
  width: 120px;
  height: 1px;
  background-color: #000;
  margin: 0 0 30px 0;
}


#portfolio .intro{
  margin-bottom: 10%;
  margin-top: 3%;
}


.portfolio-grid a{
  text-decoration: none;
  color: black;
}


.portfolio-txt{
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-direction: column;
  text-align: center;
  width: 60%;
}

.portfolio-txt strong{
  font-weight: 600;
}


.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}


.portfolio-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 0px;
}


.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 3 / 4;
  background: #f2f2f2;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item .survol{
  opacity: 0;
  transition: all 0.6s ease;
  position: absolute;
  left: 0px;
}


.image-paysage{
  opacity: 0;
  transition: all 0.6s ease;
  position: absolute;
  left: 0px;
}


.hover-icon {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

.hover-icon img{
  width: 70%;
  object-fit: contain;
}


.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item:hover .survol{
  opacity: 1;
  transform: scale(1.05);
}

.portfolio-item:hover .hover-icon {
  opacity: 1;
  transform: scale(1);
}


figcaption h3 {
  /*font-size: 1.1rem;*/
  font-weight: 500;
  margin: 0;
}

figcaption p {
   color : var(--marron);
  line-height: 1.2;
}

.services-btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 40px;
  border: 1px solid black;
  color: black;
  text-decoration: none;
  margin: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.services-btn:hover {
  background: black;
  color: white;
}



@media (max-width: 768px) {
  #portfolio{
    padding: 50px 5% 50px 5%;
  }
  .portfolio_titre{
    width: 100%;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 8% 1% 15% 1%;
  }
  .portfolio-txt{
    width: 100%;
  }

  #portfolio .intro h1{
    text-align: left;
  }

  #portfolio .intro p{
    text-align: left;
  }


  .portfolio-txt p{
    text-align: left;
  }

  #portfolio h1{
    margin-top: 0px;
    margin-bottom: 20px;
  }

  #portfolio .divider {
    margin: 10px 0 40px 0;
  }


}

@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .image-wrapper {
    aspect-ratio: 4 / 3;
  }

  .image-paysage{
    opacity: 1;
  }
}






/* ***********************************************************************************************
																		PAGE :	A propos
*********************************************************************************************** */

.aPropos{
  flex-direction: column;

}


.aPropos .intro{
  margin-bottom: 8%;
}


.parcours {
  display: flex;
  gap: 60px;
  min-height: 50vh;
  margin-top: 50px;
  justify-content: center;
  align-items: center;
}



.parcours-img{
  width: 50%;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 5/4;
  flex-shrink: 0;
  position: relative;
}



.parcours-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}


.services-content h2{
  margin-bottom: 30px;
}

.aPropos h1{
  margin-bottom: 30px;
}


.services-content p{
  margin-bottom: 30px;
}



@media (max-width: 1600px) {
  .parcours-img{
    aspect-ratio: 4/5;
  }
}

@media (max-width: 1264px) {
  .parcours-img{
    aspect-ratio: 2/3;
  }
}



@media (max-width: 1007px) {
.parcours {
    flex-direction: column;
    padding: 20px 5% 30px 5%;
  }

  .aPropos .intro{
    margin-bottom: 0%;
  }


  .services-content {
    width: 100%;
    text-align: center;
  }

  .parcours-img{
    width: auto;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    flex-shrink: 0;
  }

  .parcours img,
  .parcours-content {
    width: 100%;
  }

}


@media (max-width: 768px) {
  .aPropos p{
    text-align: left;
  }
  .aPropos h1{
    text-align: left;
  }
  .aPropos h2{
    text-align: left;
  }
}














/* ***********************************************************************************************
																		PAGE :	Pages projets
*********************************************************************************************** */







/* ================= BACK BUTTON ================= */
.back-btn {
  position: fixed;
  top: 80px;
  left: 24px;

  width: 48px;
  height: 48px;
  border-radius: 50%;

  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);

  overflow: hidden;
  z-index: 2000;

  transition:
    width 0.45s ease,
    border-radius 0.45s ease;
}

/* Hover → pilule */
.back-btn:hover {
  width: 160px;
  border-radius: 40px;
}


.icon {
  position: absolute;
  left: 13px;
  top: 58%;
  transform: translateY(-50%);
  pointer-events: none;
}

.icon svg {
  width: 22px;
  height: 22px;
  stroke: #111;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.label {
  position: absolute;
  left: 52px;
  top: 50%;
  transform: translateY(-50%) translateX(-8px);

  font-size: 0.95rem;
  white-space: nowrap;
  color: #111;

  opacity: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* Texte visible au hover */
.back-btn:hover .label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 900px) {
  .back-btn {
display: none;
  }
}



/* ================= SECTION 1 : TITRE ================= */
.introProjet {
  height: 100vh;
  height: fit-content;
  padding: 0;
  gap: 80px;
}


.introProjet-image {
  width: 50%;
  position: relative;
  overflow: hidden;
  align-self: stretch;
  height: 100vh;
}

.introProjet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.projet-paysage{
  position: absolute;
  top : 0;
  left : 0;
  opacity: 0;
}

.introProjet-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 10%;
}

.introProjet-content h1 {
  margin-bottom: 10px;
}

.introProjet-content h2 {
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--marron);
}

@media (max-width: 768px) {


  .introProjet{
    flex-direction: column;
    gap: 0px;
  }

  .introProjet-image{
    width: 100%;
    height: 30vh;
  }

  .projet-paysage{
    opacity: 1;
  }

  .introProjet-content {
    width: 100%;
    padding: 5%;
    justify-content:center;
    align-items: left;
    text-align: center;
    margin: 10px 0 50px 0;
  }

  .introProjet-content p{
    text-align: left;
  }

  .introProjet-content h1{
    text-align: left;
  }

  .introProjet-content h2{
    text-align: left;
  }

}


/* ================= SECTION 2 : IMAGE ================= */
.full-image {
  padding: 0;
  position: relative;
  max-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.full-image .bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

 .overlay-image {
  width: 90%;
  margin: auto;
}

.full-image img{
  width: 100%;
  height: 100%;
}




.full-image .overlay-image-phone {
  height: 90%;
  margin: auto;
  overflow: hidden;
  display: none;
}

@media (max-width: 900px) {
  .full-image {
    height: 100vh;
  }
  .full-image .overlay-image {
    display: none;
  }

  .full-image .overlay-image-phone {
    display: block;
    height: 90%;
  }

}


/* ================= SECTION 3 : OBJECTIFS ================= */
.objectives {
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.objectives img {
  width: 40%;
  object-fit: cover;
  border-radius: 12px;
  aspect-ratio : 4/3;
}

.objectives-content {
  width: 40%;
}

.objectives-content h2{
  margin-bottom: 30px;
}

.objectives-content p{
  margin-bottom: 30px;
}

.palette {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.color-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

@media (max-width: 900px) {
  .objectives {
    flex-direction: column-reverse;
  }

  .objectives-content{
    text-align: center;
    align-items: center;
  }

  .palette {
    justify-self: center;
  }


  .objectives img,
  .objectives-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .objectives-content h2{
    text-align: left;
  }

  .objectives-content p{
    text-align: left;
  }

}



/* ================= SECTION 4 : PRODUCTIONS ================= */
.productions {
  background: var(--grisClair);
  text-align: center;
  flex-direction: column;
}



.production-grid {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  justify-content: center;
}

.info-prod{
  width: 20%;
}

.info-prod .picto {
  width: 120px;
  margin: auto;
  background: none;
}

.info-prod .picto img{
width: 100%;
object-fit: contain;
}

.production-grid p{
  margin-top: 20px;
}

@media (max-width: 900px) {
  .productions {
    padding: 80px 10%;
  }

  .production-grid{
    flex-direction: column;
    align-items: center;
  }

  .info-prod{
    width: 90%;
  }
}

/* ================= SECTION 5 : PHOTOS ================= */
.photos {
  gap: 30px;
}

.photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  width: 33%;
  border-radius: 12px;
}

.photo img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .photos {
    flex-direction: column;
    gap: 60px;
  }

  .photo {
    width: 100%;
  }

}



/* ***********************************************************************************************
																		PAGE :	Mentions Légales
*********************************************************************************************** */
.mentionLegales .intro{
  text-align: left;
}

.mentionLegales .intro h2{
  font-size: 1.2rem;
  margin-top: 50px;
}
