/*variable*/

:root {

  --jaune:rgba(223, 254, 64, 1);
  --blanc: rgba(242, 242, 242, 1);
  --noir:rgba(35, 35, 35, 1);
  --fond-nav:rgba(35, 35, 35, 0.7);
  --gris:rgba(164, 164, 164, 1);
  --footer-titre: rgba(117, 117, 117, 1);
  --marquee-speed: 25s;

  /* Polices */
  --font-primary: "gotham-narrow", sans-serif;
  --font-secondary: "Gasoek One", sans-serif;
  --font-tertiary: "ivyora-display", serif;
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}



body{
  background-color: var(--noir);
}



p {
  font-family: var(--font-primary);
  color: var(--blanc);
  font-size: 18px;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}




/* ANIMATIONS */

.slide-up {
  opacity: 0;
  transform: translateY(80px);
}

/* Lorsque l’on ajoute la classe .in-view, on lance l’animation */
.slide-up.in-view {
  animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





/* NAVBAR */

.navbar {
  position: fixed;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 120px;
  max-width: 1200px;
  width: 90%;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 10px;              /* espace entre chaque <li> */
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-focus-link{
  color: var(--jaune);
}

.nav-link{
  color: var(--blanc);
  font-weight: 400;
}

.pages-group {
  display: flex;            
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 2px 2px 0.5px -2px rgba(255, 255, 255, 0.50) inset, -2px -2px 0.5px -2px rgba(255, 255, 255, 0.50) inset, 0px 0px 8px 0px rgba(160, 160, 160, 0.50) inset, 0px 2px 8px 2px rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(100px);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.pages-group a {
  display: inline-block;
  padding: 16px 24px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--font-primary);
}

.pages-group a:hover{
  color: var(--jaune);
  transition: all 0.3s ease-out;
}

.btn--nav-contact {
  display: flex;
  padding: 16px 24px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--font-primary);
  color: var(--blanc);
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 2px 2px 0.5px -2px rgba(255, 255, 255, 0.50) inset, -2px -2px 0.5px -2px rgba(255, 255, 255, 0.50) inset, 0px 0px 8px 0px rgba(160, 160, 160, 0.50) inset, 0px 2px 8px 2px rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(30px);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-items: center;
}

.btn--nav-contact:hover{
  background-color: var(--jaune);
  color: var(--noir);
  cursor: pointer;
  transition: all 0.3s ease-out;
}


/* Enlever les puces */
.nav-links,
.nav-links li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* MENU BURGER STYLES */
/* BURGER */
.hamburger {
  position: relative;
  width: 34px;              /* zone cliquable un peu plus large que la barre */
  height: 26px;             /* hauteur globale */
  display: none;
  cursor: pointer;
  z-index: 11;
}

.hamburger span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 3px;
  background: var(--jaune);
  border-radius: 2px;
  transform: translate(-50%, -50%);              /* centre */
  transition:
    transform .45s cubic-bezier(.75,-0.4,.25,1.4),
    width .3s ease,
    background-color .3s;
  will-change: transform;
}

/* On sépare virtuellement les deux barres par une translation verticale inverse */
.hamburger span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 6px));
}
.hamburger span:nth-child(2) {
  transform: translate(-50%, calc(-50% + 6px));
}

/* État actif : on croise */
.hamburger.active span {
  width: 30px; /* légère augmentation ou laisse 28 si tu préfères */
}

.hamburger.active span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* MENU MOBILE (slide depuis la droite) */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__panel {
  height: 100vh;
  background: var(--noir);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.65,.05,.36,1);
  box-shadow: -4px 0 14px rgba(0,0,0,0.45);
}

.mm-hero img {
  margin-top: 100px;
  width: 100%;
  height: 80%;
  object-fit: cover;
  display:block;
  filter: brightness(0.9);
}

/* Navigation list */
.mm-nav {
  display: flex;
  padding: 0 40px;
}

.mm-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.mm-link {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 16px;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--blanc);

  transition: color .3s;
}

.mm-link__text {
  line-height: 1;
  display: inline-block;
}

.mm-link__icon {
  display: flex;
  align-items: center;
  transition: opacity .3s, transform .35s;
}

.mm-link:hover,
.mm-link:focus {
  color: var(--jaune);
}

.mm-link:hover .mm-link__icon,
.mm-link:focus .mm-link__icon {
  opacity: 1;
  transform: translateX(0);
}

.mm-link--highlight {
  color: var(--jaune);
}

/* Footer socials */
.mm-footer {
  padding: 0 40px 40px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-primary);
  font-size: 14px;
  letter-spacing: .5px;
}

.mm-social {
  text-decoration: none;
  color: var(--blanc);
  transition: color .3s;
}
.mm-social:hover { color: var(--jaune); }

.mm-dot {
  width: 8px;
  height: 8px;
  background: var(--jaune);
  border-radius: 50%;
  display: inline-block;
  opacity: .9;
}

/* Reveal animation items */
.mobile-menu.active .mm-link {
  animation: mmFade .6s ease forwards;
  opacity: 0;
  transform: translateX(18px);
}
.mobile-menu.active .mm-link:nth-child(1){ animation-delay:.15s; }
.mobile-menu.active .mm-link:nth-child(2){ animation-delay:.27s; }
.mobile-menu.active .mm-link:nth-child(3){ animation-delay:.39s; }

@keyframes mmFade {
  to { opacity:1; transform:translateX(0); }
}

.mobile-menu.active .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu-links {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
  text-align: center;
}

.mobile-menu-links li {
  margin: 22px 0;
}

.mobile-menu-links a {
  color: var(--blanc);
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  transition: color .3s;
}

.mobile-menu-links a:hover {
  color: var(--jaune);
}

.mobile-contact-btn {
  padding: 14px 32px;
  background: var(--jaune);
  color: var(--noir);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background .3s, transform .3s;
}

.mobile-contact-btn:hover {
  background: var(--blanc);
  transform: translateY(-2px);
}

/* Animation apparition des liens */
.mobile-menu-links li,
.mobile-contact-btn {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.mobile-menu.active .mobile-menu-links li,
.mobile-menu.active .mobile-contact-btn {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.active .mobile-menu-links li:nth-child(1) { transition-delay: .15s; }
.mobile-menu.active .mobile-menu-links li:nth-child(2) { transition-delay: .25s; }
.mobile-menu.active .mobile-menu-links li:nth-child(3) { transition-delay: .35s; }
.mobile-menu.active .mobile-contact-btn { transition-delay: .50s; }


/* Responsive pour afficher le burger */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
  }
}


        /* RESPONSIVE */
        @media (max-width: 768px) {
    .navbar {
     padding: 40px 40px;
      max-width: 80%;
            }

    .logo img {
    width: 55px;   
    height: auto;   
  }

   .hamburger {
    display: flex;
            }

    .nav-links {
     display: none;
            }
        }




/* HERO */

.section-hero {
  overflow: hidden;
  position: relative;
  padding-top: 150px;
}

.hero-img{
  width: 100%;
  height: 50vh; 
}

.titles {
  position: sticky;
  top: 30px;               
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title {
  font-size: 110px;
  font-family: var(--font-secondary);
  color: var(--jaune);
  will-change: transform; 
  margin: 0;
  white-space: nowrap;
}

.hero-p{
padding-top: 50px;
color: var(--blanc);
font-family: var(--font-primary);
font-size: 20px;
font-style: normal;
font-weight: 200;
line-height: normal;
overflow-wrap: break-word;  /* coupe proprement les mots si besoin */
word-break: break-word;
}

.univers{
  padding-left: 400px;
}


.hero-text{
  display: block;
  font-size: 20px;
  max-width: 673px;
  padding: 0 120px;

}


/* RESPONSIVE */

@media (max-width: 768px) {

  .section-hero {
    height: 100%;
  }

  .hero-img{
  height: 20vh; 
}

  .titles {
    position: sticky;
    top: 30px;               
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .title {
    font-size: 30px;
    text-align: center;   
    line-height: 1.2;      
  }

  .hero-p {
    padding-top: 50px;
    color: var(--blanc);
    font-family: var(--font-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: 200;
    line-height: 1.4;      
  }

  .univers {
    padding-left: 20px;
  }

  .hero-text {
    display: flex;
    justify-content: flex-start;
    margin: 0;
    padding: 0 20px;
    margin-bottom: 30px;
    max-width: none;              
  }

}


/*PARALLAX */


.hero-parallax {
  position: relative;
  height: 100vh;
  overflow: visible;
  margin: 100px 0 0 0;
}

.parallax-marquee {
  display: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}


.parallax-title {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 90px;           
  color: var(--jaune);
  line-height: normal;
  text-align: center;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.parallax-title span{
  position: absolute;

color: var(--jaune);
text-align: center;
font-family: var(--font-tertiary);
font-size: 30px;
font-style: italic;
font-weight: 400;
right: 150px;
bottom: -20px;
}

/* Conteneur images */
.parallax-images {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Chaque image flottante */
.parallax-item {
  position: absolute;
  width: 300px;            
  height: auto;
  transform: translate3d(0,0,0);
  will-change: transform;
  transition: transform 0.1s linear;
}



.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 20s linear infinite;
}

.marquee-track img {
  flex: 0 0 auto;
  width: 131px; 
  object-fit: cover;
}

.container-btn-more-info{
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 200px;
}

.btn-more-info{
background: rgba(255, 255, 255, 0.10);
box-shadow: 2px 2px 0.5px -2px rgba(255, 255, 255, 0.50) inset, -2px -2px 0.5px -2px rgba(255, 255, 255, 0.50) inset, 0px 0px 8px 0px rgba(160, 160, 160, 0.50) inset, 0px 2px 8px 2px rgba(0, 0, 0, 0.10);
backdrop-filter: blur(6px);
display: inline-flex;
height: 50px;
padding: 0 50px 0 50px;
justify-content: center;
align-items: center;
gap: 10px;
flex-shrink: 0;
color: var(--blanc);
font-family: var(--font-primary);
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: 0.64px;
text-decoration: none;
}

.btn-more-info svg {
  transition: transform 0.3s ease;
  transform: translate(0, 0);
}

.btn-more-info:hover svg {
  transform: translate(3px, 3px);
}
@media (max-width: 768px){
  .btn-more-info {

  height: 60px;
  }
}





/* animation */
@keyframes marqueeMove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* RESPONSIVE */
@media (max-width: 768px) {

  .parallax-title {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  transform: translate(0,0);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 22px;           
  color: var(--jaune);
  line-height: normal;
  text-align: center;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.parallax-title span{
  position: absolute;

color: var(--jaune);
text-align: center;
font-family: var(--font-tertiary);
font-size: 18px;
font-style: italic;
font-weight: 400;
right: 50px;
bottom: -20px;
}

  .parallax-images {
    display: none;
  }

  .parallax-marquee {
    display: flex;
margin: 40px 0;
}

.hero-parallax {
  position: relative;
  height: 30vh;
  overflow: visible;
  margin: 100px 0;
}

}


/* PROJETS */



.section-projects{
  margin-top: 120px;
  position: relative;
}

.h2-projects{
color: var(--jaune);
font-family: var(--font-secondary);
font-size: 120px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-align: center;
}


.projects {
  margin: 0;
  padding: 0;
}

.project-card {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100vh;
  margin-bottom: 10px; 
  border-radius: 10px;
  border: solid 1px var(--blanc);
  overflow: hidden;
  background-color: var(--noir);
}

.project-card-inner {
  padding: 50px 120px 30px 120px;
  background-color: var(--noir);

}

/* Titre */
.project-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding-top: 20px;
  padding-bottom: 50px;
  font-size: 80px;
  font-family: var(--font-secondary);
  color: var(--jaune);
}
.project-title h3{
  margin: 0;;
}


.projetct-subtitle{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0;
}

.card-content{
display: flex;
justify-content: space-between;
align-items: flex-end;
margin: 0;
}

.projetct-subtitle-p {
  color: var(--jaune);
font-family: "Gasoek One";
font-size: 24px;
margin: 0;
padding-bottom: 20px;
}

.projetct-subtitle-p-p{
  display: flex;
  flex-direction: row;
  gap: 10px;
  max-width: 600px;
  color: var(--blanc);
font-family: var(--font-primary);
font-size: 18px;
}

.project-date{
  color: var(--blanc);
font-family:var(--font-primary);
font-size: 25px;
font-weight: 900;
margin: 0;
}

.project-link svg {
  /* on prépare l’animation */
  transition: transform 0.3s ease;
  transform-origin: center center; 
}

.project-link:hover svg {
  transform: rotate(10deg);
}

.project-img{
 
  height: auto;
  object-fit: cover;
}


/* RESPONSIVE */

@media (max-width: 768px) {
.section-projects{
  margin-top: 100px;
  position: relative;
}

.h2-projects{
color: var(--jaune);
font-family: var(--font-secondary);
font-size: 34px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-align: center;
}



.project-card {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100vh;
  margin-bottom: 0; 
  border-radius: 10px;
  border: solid 1px var(--blanc);
  overflow: hidden;
  justify-content: space-between;
}

.project-card-inner {
  padding: 100px 20px 30px 20px;
  background-color: var(--noir);

}

/* Titre */
.project-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding-top: 20px;
  padding-bottom: 50px;
  font-size: 30px;
  font-family: var(--font-secondary);
  color: var(--jaune);
}



.projetct-subtitle{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0;
}

.card-content{
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: flex-end;
margin: 0;
}

.projetct-subtitle-p {
  color: var(--jaune);
font-family: "Gasoek One";
font-size: 16px;
margin: 0;
padding-bottom: 20px;
}

.projetct-subtitle-p-p{
  display: flex;
  flex-direction: row;
  gap: 10px;
  max-width: 600px;
  color: var(--blanc);
font-family: var(--font-primary);
font-size: 16px;
}

.project-date{
  color: var(--blanc);
font-family:var(--font-primary);
font-size: 16px;
font-weight: 900;
margin: 0;
}

.project-link svg {
width: 33px;
height: 33px;
}

}

/* CONTACT */

.section-contact{
  margin-top: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.contact-title{
  display: flex;
  flex-direction: column;
  color: var(--jaune);
text-align: center;
font-family: var(--font-secondary);
font-size: 100px;
font-style: normal;
font-weight: 400;
line-height: 104px; /* 104% */
}

.contact-title span {
  color: var(--jaune);
text-align: center;
font-family: var(--font-tertiary);
font-size: 30px;
font-style: italic;
font-weight: 400;
line-height: normal;
}

.btn-contact{
background: rgba(255, 255, 255, 0.10);
box-shadow: 2px 2px 0.5px -2px rgba(255, 255, 255, 0.50) inset, -2px -2px 0.5px -2px rgba(255, 255, 255, 0.50) inset, 0px 0px 8px 0px rgba(160, 160, 160, 0.50) inset, 0px 2px 8px 2px rgba(0, 0, 0, 0.10);
backdrop-filter: blur(6px);
display: inline-flex;
height: 50px;
padding: 0 50px 0 50px;
justify-content: center;
align-items: center;
gap: 10px;
flex-shrink: 0;
color: var(--blanc);
font-family: var(--font-primary);
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: 0.64px;
text-decoration: none;
}

.btn-contact:hover{
  color: var(--jaune);
}

.btn-contact svg {
  transition: transform 0.3s ease;
  transform-origin: center center;
}

.btn-contact:hover svg {
  transform: translate(5px, -5px);
}

/* RESPONSIVE */

@media (max-width: 768px) {

.section-contact{
  margin-top: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;

}

.contact-title{
  display: flex;
  flex-direction: column;
  color: var(--jaune);
text-align: center;
font-family: var(--font-secondary);
font-size: 28px;
font-style: normal;
font-weight: 400;
line-height: 30px;
gap: 10px;
}

.contact-title span {
  color: var(--jaune);
text-align: center;
font-family: var(--font-tertiary);
font-size: 20px;
font-style: italic;
font-weight: 400;
line-height: normal;
}

.btn-contact{

  height: 60px;
}
}

/* FOOTER */

.section-footer{
  margin-top: 150px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  padding: 0 120px;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-design{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 0 0;
  color: var(--blanc);
  font-family: var(--font-primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.copyrights{
  display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
gap: 10px;
}

.copyrights p{
color: var(--jaune);
text-align: center;
font-family: var(--font-primary);
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 22px; 
}

.rs-links{
  display: flex;
justify-content: flex-end;
align-items: center;
gap: 25px;
flex: 1 0 0;
}

.rs-link {
  color: var(--blanc);
text-align: flex-end;
font-family: var(--font-primary);
font-size: 18px;
font-style: normal;
font-weight: 400;
text-decoration: none;
}

.rs-link:hover{
  color: var(--jaune);
}

.eclipse{
  width: 10px;
  height: 10px;
  background-color: var(--jaune);
  border-radius: 100px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
.section-footer{
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 100px;
  margin-bottom: 20px;
  padding: 0 20px;

}

.footer-design{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
  gap: 15px;
  flex: 1 0 0;
  color: var(--blanc);
  font-family: var(--font-primary);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

.copyrights{
  display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
gap: 10px;
}

.copyrights p{
color: var(--jaune);
text-align: center;
font-family: var(--font-primary);
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 22px; 
}

.rs-links{
  display: flex;
  flex-direction: column;
justify-content: flex-end;
align-items: center;
gap: 25px;
flex: 1 0 0;
margin-bottom: 65px;
}

.rs-link {
  color: var(--blanc);
text-align: flex-end;
font-family: var(--font-primary);
font-size: 18px;
font-style: normal;
font-weight: 400;
text-decoration: none;
}

.rs-link:hover{
  color: var(--jaune);
}

.eclipse{
  width: 6px;
  height: 6px;
  background-color: var(--jaune);
  border-radius: 100px;
}
}

/* FOCUS PAGE */


.section-focus{
  padding-top: 150px;
}

.btn-revenir{
  display: inline-flex;
align-items: center;
gap: 5px;
color: var(--blanc);
font-family: var(--font-primary);
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: normal;
text-decoration: none;
text-decoration: underline;
text-underline-offset: 4px;     
text-decoration-thickness: 2px;   
text-decoration-color: var(--noir);
transition: text-decoration-color 0.3s ease;
}

.btn-revenir:hover{
  text-decoration-color: var(--blanc); 
  

}

.btn-revenir svg {
  transition: transform 0.3s ease;
  transform-origin: center center;
}

.btn-revenir:hover svg {
  transform: translateX(-5px); 
}

.focus-content{
  display: flex;
padding: 0 120px;
flex-direction: column;
align-items: flex-start;
gap: 43px;
}

.focus-left-right{
  display: flex;
justify-content: space-between;
align-items: flex-start;
width: 100%;
margin-bottom: 80px;
}


.focus-left{
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: flex-start;
min-height: 420px;
}

.focus-left-title{
  color: var(--jaune);
font-family: var(--font-secondary);
font-size: 85px;
font-style: normal;
font-weight: 400;
line-height: 100px; 
margin: 0;
}

.focus-left-infos{
  display: flex;
align-items: center;
gap: 136px;
align-items: flex-start;


}

.focus-left-item{
  display: flex;
padding: 10px 0px;
flex-direction: column;
align-items: flex-start;
gap: 5px;
}

.focus-left-infos__title{
  color: #9E9E9E;
font-family: var(--font-primary);
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
margin:0;
}

.focus-left-infos__text{
  color: var(--blanc);
font-family: var(--font-primary);
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.72px;
margin:0;
}



.focus-right{
  display: flex;
flex-direction: column;
justify-content: space-between;
align-items: flex-start;
max-width: 400px;
min-height: 420px;
}

.focus-right-content{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.focus-right__title{
  color: var(--blanc);
font-family: var(--font-primary);
font-weight: 500;
font-size: 20px;
margin: 0;
}

.focus-right__text{
  color: var(--blanc);
font-family: var(--font-primary);
font-size: 20px;
font-style: normal;
font-weight: 200;
line-height: normal;
}

.btn-voir-site{
  color: var(--blanc);
font-family: var(--font-primary);
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: 0.64px;
text-decoration: none;
display: flex;
gap: 10px;
}

.btn-voir-site:hover{
  color: var(--jaune);
}

.btn-voir-site svg {
  transition: transform 0.3s ease;
  transform-origin: center center;
}

.btn-voir-site:hover svg {
  transform: translate(5px, -5px);
}



.focus-wrapper {
  /* suppose 4 images : wrapper = 4 × 100vh */
  height: calc(100vh * 4);
  position: relative;
}

.focus-img {
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  overflow: hidden;       
}

.focus-img img {
  flex-shrink: 0;
  height: 100vh;
  width: auto;
  object-fit: cover;
}

.btn-nav-projets{
  margin-top: 100px;
  padding: 0 120px;
  display: flex;
  justify-content: space-between;
}

.btn-precedent, .btn-suivant{
  display: inline-flex;
align-items: center;
gap: 5px;
color: var(--blanc);
font-family: var(--font-primary);
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: normal;
text-decoration: none;
}

.btn-precedent:hover, .btn-suivant:hover{
  color: var(--jaune); 
  

}

.btn-precedent svg {
  transition: transform 0.3s ease;
  transform-origin: center center;
}

.btn-suivant svg {
  transition: transform 0.3s ease;
  transform-origin: center center;
}

.btn-precedent:hover svg {
  transform: translateX(-5px); /* ou -3px pour un mouvement plus subtil */
}

.btn-suivant:hover svg {
  transform: translateX(5px); /* ou -3px pour un mouvement plus subtil */
}

.focus-item-mobile {
display: none;
}


/* RESPONSIVE */

@media (max-width: 768px) {


/* 1 écran par image, donc la somme fera N×100vh */
.focus-img-mobile {
  /* plus besoin de flex ici */
  display: block;
}

/* chaque « slide » fait 100vh et colle son contenu */
.focus-item-mobile {
  display: block;
  overflow: hidden; /* évite tout débordement éventuel */
  z-index: 1;       /* si tu as d’autres éléments qui pourraient passer au-dessus */
}

/* l’image remplit parfaitement son conteneur sticky */
.focus-item-mobile img {
  display: block;
  width: 100%;
  object-fit: cover;
}



.section-focus{
  padding-top: 120px;
  width: 100%;
}

.btn-revenir{
  display: inline-flex;
align-items: center;
gap: 5px;
color: var(--blanc);
font-family: var(--font-primary);
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: normal;
text-decoration: none;
text-decoration: underline;
text-underline-offset: 4px;     
text-decoration-thickness: 2px;   
text-decoration-color: var(--noir);
transition: text-decoration-color 0.3s ease;
}

.btn-revenir:hover{
  text-decoration-color: var(--blanc); 
  

}

.btn-revenir svg {
  transition: transform 0.3s ease;
  transform-origin: center center;
}

.btn-revenir:hover svg {
  transform: translateX(-5px); 
}

.focus-content{
  display: flex;
padding: 0 20px;
flex-direction: column;
align-items: flex-start;
gap: 40px;
}

.focus-left-right{
  display: flex;
  flex-direction: column;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 40px;
}


.focus-left{
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: flex-start;
min-height: 40px;
gap: 42px;
}

.focus-left-title{
  color: var(--jaune);
font-family: var(--font-secondary);
font-size: 40px;
font-style: normal;
font-weight: 400;
line-height: normal; 
margin: 0;
}

.focus-left-infos{
  display: flex;
  flex-direction: column;
align-items: center;
gap: 0;
align-items: flex-start;


}

.focus-left-item{
  display: flex;
padding: 10px 0px;
flex-direction: column;
align-items: flex-start;
gap: 5px;
}

.focus-left-infos__title{
  color: #9E9E9E;
font-family: var(--font-primary);
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
margin:0;
}

.focus-left-infos__text{
  color: var(--blanc);
font-family: var(--font-primary);
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.72px;
margin:0;
}



.focus-right{
  display: flex;
flex-direction: column;
justify-content: space-between;
align-items: flex-start;
max-width: 400px;
height: 420px;
}

.focus-right-content{
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 42px;
}

.focus-right__title{
  color: var(--jaune);
font-family: var(--font-primary);
font-weight: 500;
font-size: 20px;
margin: 0;
}

.focus-right__text{
  color: var(--blanc);
font-family: var(--font-primary);
font-size: 20px;
font-style: normal;
font-weight: 200;
line-height: normal;
}

.btn-voir-site{
  color: var(--blanc);
font-family: var(--font-primary);
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: 0.64px;
text-decoration: none;
display: flex;
gap: 10px;
}

.btn-voir-site:hover{
  color: var(--jaune);
}

.btn-voir-site svg {
  transition: transform 0.3s ease;
  transform-origin: center center;
}

.btn-voir-site:hover svg {
  transform: translate(5px, -5px);
}



.focus-wrapper {
  display: none;
flex-direction: column;
  height: calc(100vh * 4);
  position: relative;
}

.focus-img {
  position: relative;
  top: 0;
  display: flex;
  height: 100vh;
  overflow: hidden;       
}

.focus-img img {
  flex-shrink: 0;
  height: 100vh;
  width: auto;
  object-fit: cover;
}

.btn-nav-projets{
  margin-top: 100px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
}

.btn-precedent, .btn-suivant{
  display: flex;
  flex-direction: column;
align-items: center;
gap: 5px;
color: var(--blanc);
font-family: var(--font-primary);
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: normal;
text-decoration: none;
}

.btn-precedent{
  align-items: flex-start;
}

.btn-suivant{
  align-items: flex-end;
  flex-direction: column-reverse;
 
}

.btn-precedent:hover, .btn-suivant:hover{
  color: var(--jaune); 
  

}

.btn-precedent svg {
  transition: transform 0.3s ease;
  transform-origin: center center;
}

.btn-suivant svg {
  transition: transform 0.3s ease;
  transform-origin: center center;
}

.btn-precedent:hover svg {
  transform: translateX(-5px); /* ou -3px pour un mouvement plus subtil */
}

.btn-suivant:hover svg {
  transform: translateX(5px); /* ou -3px pour un mouvement plus subtil */
}}


/* À PROPOS */

.section-aw{
  padding: 10px 0 0 120px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.aw-title {
  color: var(--jaune);
font-family: var(--font-secondary);
font-size: 100px;
letter-spacing: 4px;
}

.aw-title span{
  text-align: center;
  font-family: "IvyOra Display";
  font-size: 50px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: normal;
}

.aw-content{
  display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: space-between;
}

/* Colonne de droite */
.aw-img {
  flex: 0 0 50%;                   
  max-width: 50%;
}

.aw-img img {
  display: block;
  width: 100%;                   
  height: auto;
  max-height: 100vh;               
  object-fit: cover;
}


/* MARQUEE */

.logos-marquee {
  margin-top: 150px;
  overflow: hidden;              
  width: 100%;                   
}

.logos-marquee__inner {
  display: flex;
  width: 200%; 
  gap: 150px;                   
  /* on ajuste la durée selon la longueur total */
  animation: marquee 20s linear infinite;
}

/* taille des logos, si tu veux homogène */
.logos-marquee__inner svg {
  height: 80px;                   /* adapte à ta hauteur préférée */
  width: auto;
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);  /* la moitié, car on a doublé le contenu */
  }
}

/* ANIM */

.section-anim{
  margin-top: 150px;
  padding: 0 120px;
  display: flex;
  justify-content: space-between;
}

.anim-text{
  max-width: 600px;
  margin: 0;
  color: var(--blanc);
font-family: var(--font-primary);
font-size: 20px;
font-style: normal;
font-weight: 300;
line-height: normal;
letter-spacing: 0.8px;
}

.anim-text span{
  color: var(--jaune);
  font-weight: 400;
  font-family: var(--font-tertiary);
  font-style: italic;
}

.svg-anim{
  display: flex;
}

/* FACTS */

.section-facts{
  margin-top: 150px;
  padding: 0 120px;
}

.facts-title{
  color: var(--blanc);
font-family: var(--font-primary);
font-size: 30px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 1.2px;
text-align: center;
margin-bottom: 100px;
}

.facts-title span{
  color: var(--jaune);
font-family: var(--font-secondary);
font-size: 90px;
letter-spacing: 3.6px;
}

.facts-content{
  display: flex;
max-width: 433px;
flex-direction: column;
align-items: flex-start;
gap: 22px;
border-radius: 5px;
border-right: 1px solid var(--jaune);
border-bottom: 1px solid var(--jaune);
padding: 10px;
}

.facts-content__subtitle{
  color: var(--blanc);
  display: flex;
padding: 5px 10px;
justify-content: center;
align-items: center;
border-radius: 3px;
background: rgba(131, 131, 131, 0.50);
margin: 0;
}

.facts-content__text{
  color: var(--blanc);
font-family: var(--font-primary);
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: normal;
letter-spacing: 0.8px;
margin: 0;
}

.facts-grid{
  display: grid;
row-gap: 54px;
column-gap: 324px;
flex-shrink: 0;
grid-template-rows: repeat(3, minmax(0, 1fr));
grid-template-columns: repeat(2, minmax(0, 1fr));
}

.facts-phrase{
  margin-top: 60px;
  color: var(--jaune);
text-align: center;
font-family: var(--font-tertiary);
font-size: 30px;
font-style: italic;
font-weight: 400;
line-height: normal;
}

.facts-dots{
 display: none;

}
.facts-dots button{
  width:10px;
  height:10px;
  border-radius:50%;
  border:0;
  background: rgba(223, 254, 64, 0.60);
  margin: 0px 12px;
  padding: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc);
  font-family: var(--font-primary);
  font-weight: 600;
}
.facts-dots button.active{
  background:var(--jaune);
  color: var(--noir);
}

        .facts-dots button:focus {
            outline: 2px solid var(--jaune);
            outline-offset: 2px;
        }

.facts-slider{
  position: relative;
  overflow: hidden;
  width: 100%;
    display: none; 
    margin-bottom: 40px;
  }

        .slider-wrapper {

    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
        


  /* RESPONSIVE */

          /* Animation pour réduction de mouvement */
        @media (prefers-reduced-motion: reduce) {
            .slider-wrapper {
                transition: none;
            }
        }

/* ---- MOBILE : slider ---- */
@media (max-width:768px){


.facts-content-mobile {
    width: 100%; 
    padding: 10px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    border-radius: 5px;
    border-right: 1px solid var(--jaune);
    border-bottom: 1px solid var(--jaune);
    min-height: 200px;
    box-sizing: border-box;
    min-height: 0;
    height: auto;
    box-sizing: border-box;
    min-width: 340px;
    display: flex
;

}

  .facts-slider,
  .slider-wrapper {
    height: auto;
    gap: 20px;
  }

    .facts-dots {
       display: flex;
 align-items: center;
 justify-content: center;
    }

.section-aw{
  padding: 120px 0 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.aw-title {
color: var(--jaune);
font-family: var(--font-secondary);
font-size: 100px;
letter-spacing: 4px;
margin: 0;
display: flex;
flex-direction: column;
align-items: flex-end;
}

.aw-title span{
  text-align: flex-start;
  font-family: "IvyOra Display";
  font-size: 50px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: normal;
}

.aw-content{
  display: flex;
flex-direction: column;
gap: 20px;
align-items: flex-start;
}

/* Colonne de droite */
.aw-img {
  flex: 0 0 0;                   
  max-width: 100%;
}

.aw-img img {
  display: block;
  width: 100%;                   
  height: auto;
  max-height: 100vh;               
  object-fit: cover;
}


/* MARQUEE */

.logos-marquee {
  margin-top: 100px;
  overflow: hidden;              
  width: 100%;                   
}

.logos-marquee__inner {
  display: flex;
  width: 200%; 
  gap: 52px;                   
  /* on ajuste la durée selon la longueur total */
  animation: marquee 20s linear infinite;
}

/* taille des logos, si tu veux homogène */
.logos-marquee__inner svg {
  height: 60px;                   /* adapte à ta hauteur préférée */
  width: auto;
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);  /* la moitié, car on a doublé le contenu */
  }
}

/* ANIM */

.section-anim{
  margin-top: 150px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

.anim-text{
  max-width: 600px;
  margin: 0;
  color: var(--blanc);
font-family: var(--font-primary);
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: normal;
letter-spacing: 0.8px;
}

.anim-text span{
  color: var(--jaune);
  font-weight: 400;
  font-family: var(--font-tertiary);
  font-style: italic;
}

.svg-anim{
  display: flex;
}

/* FACTS */


  .facts-grid{
    display:none;           
  }


    .facts-slider {
        display: flex;
    }


.section-facts{
  margin-top: 100px;
  padding: 0 20px;

}

.facts-title{
  display: flex;
  flex-direction: column;
  color: var(--blanc);
font-family: var(--font-primary);
font-size: 26px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 1.2px;
text-align: center;
margin-bottom: 100px;
}

.facts-title span{
  color: var(--jaune);
font-family: var(--font-secondary);
font-size: 80px;
letter-spacing: 3.6px;
}



.facts-content__subtitle{
  color: var(--blanc);
  font-size: 14px;
  font-family: var(--font-primary);
  display: flex;
padding: 5px 10px;
justify-content: center;
align-items: center;
border-radius: 3px;
background: rgba(131, 131, 131, 0.50);
margin: 0;
}

.facts-content__text{
  color: var(--blanc);
font-family: var(--font-primary);
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: normal;
letter-spacing: 0.8px;
margin: 0;
}

.facts-grid{
  display: none;

}

.facts-phrase{
  margin-top: 80px;
  color: var(--jaune);
text-align: center;
font-family: var(--font-tertiary);
font-size: 30px;
font-style: italic;
font-weight: 400;
line-height: normal;
}

}




/* TRAVAUX*/

.section-travaux{
  padding: 150px 120px 0 120px;
}

.travaux-grid{
  display: grid;
row-gap: 35px;
column-gap: 60px;
flex-shrink: 0;
grid-template-rows: repeat(3, minmax(0, 1fr));
grid-template-columns: repeat(2, minmax(0, 1fr));
}

.travaux-grid a{
  display: flex;
 color: var(--jaune);
font-family: var(--font-secondary);
font-size: 50px;
justify-content: space-between;
margin: 0;
padding-top: 10px;
text-decoration: none;
width: 100%;
}

.travaux-title{
  color: var(--jaune);
font-family: var(--font-secondary);
font-size: 50px;
display: flex;
justify-content: space-between;
margin: 0;
padding-top: 10px;
}

.travaux-title svg {
  /* on prépare l’animation */
  transition: transform 0.3s ease;
  transform-origin: center center; 
}

.travaux-title:hover svg {
  transform: rotate(10deg);
}


/* RESPONSIVE */

@media (max-width: 768px) {
.section-travaux{
  padding: 120px 20px 0 20px;
}

.travaux-grid a{

font-size: 30px;

}

.travaux-grid{
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 50px;
}

.travaux-title{
color: var(--jaune);
font-family: var(--font-secondary);
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.travaux-title svg {
  /* on prépare l’animation */
  transition: transform 0.3s ease;
  transform-origin: center center; 
  width: 30px;
  height: 30px;
}

.travaux-title:hover svg {
  transform: rotate(10deg);
}

}