* {
    font-family: "Epilogue", sans-serif;
    font-family: "Source-serif-pro";
}
:root {

  /* Couleurs principales */

  --pink: #F1A8C6;
  --orange: #EB5200;
  --marron: #3F2931;
  --light-pink: #FFECEA;
  --dark-blue: #424790;
  --blue: #C2CDFF;
}

body {
    background-color: var(--light-pink);
}
/* Images fluides */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Évite les débordements horizontaux */
* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

/* Textes qui ne débordent pas */
p, h1, h2, h3, h4, h5 {
  overflow-wrap: break-word;
}

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px; /* Supprime l'espace des marges externes */
}

[class*="col-"] {
    min-height: 80px;
    padding: 0 10px;
    box-sizing: border-box;
    /* border: 1px solid red;
    background-color: rgba(255, 0, 0, 0.4); */
}

/* Largeur des colonnes */

.col-1 { flex-basis: 8.33%; max-width: 8.33%;}
.col-2 { flex-basis: 16.66%; max-width: 16.66%;}
.col-3 { flex-basis: 25%; max-width: 25%;}
.col-4 { flex-basis: 33.33%; max-width: 33.33%;}
.col-5 { flex-basis: 41.66%;max-width: 41.66%; }
.col-6 { flex-basis: 50%; max-width: 50%;}
.col-7 { flex-basis: 58.33%; max-width: 58.33%;}
.col-8 { flex-basis: 66.66%; max-width: 66.66%;}
.col-9 { flex-basis: 75%; max-width: 75%;}
.col-10 { flex-basis: 83.33%; max-width: 83.33%;}
.col-11 { flex-basis: 91.66%;max-width: 91.66%; }
.col-12 { flex-basis: 100%; max-width: 100%;}

.burger {
  display: none;
}

/* MARQUEE */
/* On cache ce qui dépasse */
.track {
  overflow: hidden;
  border-radius: 0px;
  padding: 12px 0;
  background: var(--purple);
  color: var(--marron);
  font-family: "epilogue";
  font-weight: bold;
  font-size: 18px;
    border-top: 4px solid var(--marron);
    border-bottom: 4px solid var(--marron);
}

/* La liste défile grâce à l'animation */
.items {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  width: max-content;
  animation: scroll 12s linear infinite;
}

/* On met l'animation en pause au survol */
.items:hover {
  animation-play-state: paused;
}

/* L'animation : on translate de -50% car le conten est dupliqué */
@keyframes scroll {
  from { transform: translateX(0%); }
  to { transform: translateX(-50%); }
}

/* Titres */

.title {
    font-weight: 600;
    color: var(--marron);
}

.type-h1 {
    font-size: 88px;
    line-height: 1.2;
    font-family: "Epilogue", sans-serif;

}

.type-h2 {
    font-size: 50px !important;
    line-height: 1;
    color: var(--marron);
    text-align: center;
    font-family: "Source-serif-pro";
    font-style: italic;
    font-weight: 500;

}

.type-h3 {
    font-size: 60px !important;
    line-height: 1;
    margin : 0 ;
    font-family: "Epilogue", sans-serif;
    display: flex;
    justify-content: center;
    padding-top: 60px;

}

.type-h4 {
    font-size: 40px !important;
    line-height: 1.1;
    font-family: "Epilogue", sans-serif;
    display: flex;
    text-align: center;

}

.type-h5 {
    font-size: 18px !important;
    line-height: 1.1;
    color: var(--cream);
}

/* Boutons */

.btn {
    padding: 0px 12px;
    border-radius: 27px;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}


.btn span {
  display: inline-block;
  transform: scale(0);
  transition: transform 0.3s ease;
  margin-left: 5px;
}

.btn:hover span {
  transform: scale(1);
}


.btn--secondary {
display: inline-flex;
padding: 3px 14px;
border: 3px solid var(--orange);
color: var(--orange);
transition: transform 0.2s ease;
}

.btn--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--orange);
    color: var(--light-pink);
    padding: 4px 15px;
    border-radius: 27px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.35s ease;
}


/* ICÔNE */

.icone {
    opacity: 0;
    width: 0;
    overflow: hidden;
    transition: all 0.35s ease;
}


/* HOVER */

.btn--primary:hover {
    gap: 5px;
    padding-right: 12px;
}


/* L’icône apparaît */

.btn--primary:hover .icone {
    opacity: 1;
    width: 20px;
}

.btn--secondary:hover .icone {
    opacity: 1;
    width: 20px;
}




/* HEADER */
header {
    position: fixed;
    width: 100%;
    z-index: 9999;
}

.header__cta{
    margin-left: 20px;
}

.header__cta img{
    display: block;
}

/***********************************************
 ***************** Navigation *****************/

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 10px;
}

.navigation-menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-right: 10px;
    display: flex;
    gap: 20px;
    font-family: "epilogue";

    background: var(--marron);
    padding: 20px 28px;
    border-radius: 999px;

}

.navigation-menu li:not(:last-child) {
    margin-right: 20px;

}

.navigation-menu__link {
    text-decoration: none;
    color: var(--pink);
    font-weight: bold;
    animation: vertical-moov 0.35s;

}



.navigation-menu__link,
.navigation-menu__link:visited,
.navigation-menu__link:active {
    color: var(--pink);

}

.navigation-menu__link:hover {
    text-decoration: underline;
    color: var(--light-pink);
    animation: vertical-moov 0.35s;
}

@keyframes vertical-moov {
0% { transform: translateY(0px); 
}
100% { transform: translateY(5px); 
}
}


/* FOOTER */

.footer {
  background-color: var(--orange);
  color: var(--light-pink);
  padding: 40px 0;
  position: relative; /* point de référence pour les illustrations */
}

.footer-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 20px;
}

.footer .row {
  display: flex;
  align-items: flex-end;
  min-height: 400px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
    padding: 0;
  margin: 0;
}

.footer-logo {
  width: 100%;
  height: auto;
  display: block;
  padding-left: 20px;
}

.footer-legende {
  display: flex;
  gap: 60px;
  margin-top: 40px;
  flex-wrap: wrap;
padding-left: 20px;
margin-left: 255px;

}

.footer-legende p {
  font-size: 14px;
  font-style: italic;
  text-decoration: none;
}

.footer-catchphrase{
  font-size: 14px;
  font-style: italic;
  text-decoration: none;
  color: var(--light-pink);

}

.footer .col-2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 50px;
}

.footer-infos {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
}

.footer-infos h4,
.footer-infos h5 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.footer-link {
  color: var(--light-pink);
  text-decoration: none;
  font-style: italic;
  font-size: 16px;
}

.footer-link:hover {
  color: var(--blue);
}

/* Illustrations positionnées par rapport au footer */
.illustrations-footer {
  position: absolute;
  top: -80px; 
  right: 40px;
  width: 320px;
  height: 280px;
  pointer-events: none;
}

.illustrations-footer img {
  position: absolute;
  transition: transform 0.15s ease-out;
  cursor: pointer;
  pointer-events: all;
}

.illustration-merci {
  top: -30;
  right: 50;
  width: 240px;
}

.illustration-fraise {
  top: 104px;
  right: 153px;
  width: 170px;
}

.illustration-fleur {
  top: 118px;
  right: 86px;
  width: 65px;
}

.footer .col-3{
    margin-bottom: 50px;
}

.footer-linkedin{
    text-decoration: none;
    font-size: 18px !important;
    line-height: 1.1;
    color: var(--cream);
    font-weight: 600;
}

.footer-linkedin:hover{
    text-decoration: none;
    font-size: 18px !important;
    line-height: 1.1;
    color: var(--blue);
    font-weight: 600;
}
/***********************************************
 ***************** HOME *****************/
.section-hero {
    height: 100vh;
    background-image: url("../styles/asset/hero/img/fond-carreaux.svg");
    background-size: cover;
    background-repeat: no-repeat;
}

.section-hero .row{
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
}

.hero-content__catchphrase{
    color: var(--marron);
    font-style: italic;
    font-size: 70px;

}

.hero-content{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 100px;
}

.hero_illustration{
    position: absolute;
    bottom: 35px;
    right: 190px;

}

.hero_photo {
    transition: transform 0.4s ease;
    margin-left: 50px;
}

.hero_photo:hover {
    transform: rotate(10deg);
}

/* INTRO */

.intro-content{
padding: 120px 0px;
}

.intro-texte{
    font-family: "Source-serif-pro";
    font-size: 60px;
    font-style: italic;
    font-weight: 500;
    text-align: center;
}

.intro-texte span {
  display: inline-block;
}

.intro-texte span img {
  display: block;
}

/* Fleur rose*/
.intro-texte span:nth-of-type(1) img {
  animation: wiggle 3s ease-in-out infinite;
}

/* Agrume*/
.intro-texte span:nth-of-type(2) img {
  animation: spin 6s linear infinite;
}

/* Forme bleue */
.intro-texte span:nth-of-type(3) img {
  animation: pulse 2.5s ease-in-out infinite;
}

/* Flèche  */
.intro-texte span:nth-of-type(4) img {
  animation: arrowMove 1.8s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(8deg); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

@keyframes arrowMove {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  50% { transform: translateX(8px) rotate(-10deg); }
}

/* MISSIONS */

.section-missions{
    background-color: var(--pink);
    padding-top: 30px;
    padding-bottom: 60px;
}

.cards-head {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}

.cards-head img {
    margin-right: 18px;
}

.cards-head h3 {
    font-size: 28px;
    font-weight: 600;
}

.cards-body {
    padding-bottom: 100px;
    text-align: center;
}

.cards-body ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.missions-cards {
    margin: 0 24px;
    padding: 42px 48px;
    background-color: var(--light-pink);
    border-radius: 30px;
    margin-bottom: 160px;
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 20px;
    margin-top: 121px;

}

.section-missions__illustration{
    transition: transform 0.4s ease;
}

.missions-cards:hover .section-missions__illustration {
  transform: rotate(80deg);
}

.missions-cards:hover .card-body h3 {
  transform: translateY(-8px);
}

.illustration-agrume {
  position: absolute;
   bottom: -580px;
    left: 20px;
  transition: transform 0.1s ease-out;
}

.card-body h3 {
  transition: transform 0.4s ease;
}

/* UNIVERS */

.section-univers img{
    transform: rotate(90deg);
    display: block;
    margin: 0 auto;
}

.section-univers{
    background-color: var(--marron);

}

.section-univers h2{
    color: var(--light-pink);
    display: flex;
    justify-content: center;
    padding-top: 60px;
}

.section-univers p{
    color: var(--light-pink);
    display: flex;
    justify-content: center;
    padding-top: 10px;
}



.section-univers{
  position:relative;
  overflow:hidden;
  min-height:100vh;
  background:var(--marron);
}



#univers {
  position:relative;
  width:100vw; height:100vh;
  overflow:hidden;
  background:var(--marron);
}
#univers::before {
  content:'';
  position:absolute; inset:0;
  pointer-events:none; z-index:0;
}

/* Stickers DOM */
.sticker {
  position:absolute;
  z-index:20;
  transform-origin:center center;
  will-change:transform;
  filter: drop-shadow(2px 4px 8px rgba(0,0,0,0.4));
  cursor:grab;
  user-select:none;
  transition: filter 0.15s ease, transform 0.15s ease;
}
.sticker:hover {
  filter: drop-shadow(3px 6px 14px rgba(0,0,0,0.55)) brightness(1.08);
}
.sticker.dragging {
  cursor:grabbing;
  filter: drop-shadow(4px 8px 18px rgba(0,0,0,0.6)) brightness(1.12);
  transition: none;
  z-index: 100;
}
.sticker.stuck {
  z-index:25;
  cursor:default;
}
.sticker svg { display:block; width:100%; height:100%; pointer-events:none; }

/* Panier image centré */
#basket {
  position:absolute;
  top:50%; left:50%;
  transform: translate(-50%, -46%);
  width: min(380px, 48vw);
  z-index:22;
  pointer-events:none;
  mix-blend-mode: screen;
}

/* CTA "Contactez-moi !" — caché par défaut, révélé quand les 11 stickers sont dans le panier */
#contact-cta {
  position:absolute;
  left:50%;
  bottom:7%;
  transform: translateX(-50%) translateY(20px) scale(0.6);
  z-index:50;
  opacity:0;
  pointer-events:none;
  padding:16px 38px;
  border:none;
  border-radius:999px;
  background:var(--orange);
  color:var(--light-pink);
  font-family: 'Source-serif-pro';
  font-size:1.15rem;
  font-weight:700;
  letter-spacing:0.02em;
  cursor:pointer;
  text-decoration:none;
  white-space:nowrap;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(.18,.89,.32,1.4);
}
#contact-cta.visible {
  opacity:1;
  pointer-events:auto;
  transform: translateX(-50%) translateY(0) scale(1);
  animation: cta-float 2.6s ease-in-out 0.6s infinite;
}
#contact-cta.visible:hover {
  background:var(--light-pink);
  color:var(--marron);
  box-shadow: 0 10px 34px rgba(232,122,149,0.5);
}
@keyframes cta-float {
  0%,100% { transform: translateX(-50%) translateY(0)    scale(1); }
  50%     { transform: translateX(-50%) translateY(-6px) scale(1.02); }
}

/* LUA */

.projet-categorie{
font-family: "Source serif pro";
font-style: italic;
font-size: 28px;
}

.lua-content p{
    font-family: "Source serif pro";
    font-size: 18px;
}

.section-lua h3{
    font-family: "Epilogue";
    font-size: 30px;
    font-weight: 600;
}

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

.section-lua{
    margin-bottom: 120px;
}

.section-lua .col-5{
    display: flex;
    align-items: flex-end;
}

.cta img{
display: block;
}


.ligne-points{
    border-top: 2px dashed var(--marron);
    width: 100%;
}

.projet-tags{
display: inline-flex;
padding: 3px 10px;
border: 2px solid var(--marron);
color: var(--marron);
border-radius: 27px;
font-family: "Epilogue";
font-size: 16px;
}

.tags-content{
    display: flex;
    gap: 12px;
}

/* DÉCOUVRIR MES PROJETS */
.section-projet {
  margin-bottom: 120px;
}

.section-projet h2 {
  text-align: center;
  margin-bottom: 20px;
}

.section-projet h3 {
  font-family: "Epilogue";
  font-size: 30px;
  font-weight: 600;
}

.slider-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.col-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
    height: 80px;
    font-size: 32px;

    color: var(--marron);
    cursor: pointer;
    transition: all .4s ease;
}

.col-arrow button {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--marron);
  padding: 10px;
}

.col-arrow button:hover{
    color: var(--orange);
}

.projet-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 20px;
}

.projet-categorie {
  font-family: "Source Serif Pro";
  font-style: italic;
  font-size: 28px;
}

.projet-content p {
  font-family: "Source Serif Pro";
  font-size: 18px;
  color: var(--marron);
}

.ligne-points {
  border-top: 2px dashed var(--marron);
  width: 100%;
}

.tags-content {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.projet-tags {
  border: 1.5px solid var(--marron);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--marron);
}

.mockups {
  border-radius: 60px;
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: cover;
  display: block;
}

.section-projet .col-5 {
  display: flex;
  flex: 1;
}

.projet-content,
.mockups {
  transition: opacity 0.3s ease;
}

.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.dot {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  opacity: 0.35;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dot:not(.dot--active) {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--marron);
  opacity: 0.35;
}

.dot:not(.dot--active):hover {
  opacity: 0.6;
}

.dot--active {
  background-color: transparent;
  opacity: 1;
   width: auto;
  height: auto;
  overflow: visible;
}
.dot--active img {
  width: 18px;
  height: 18px;
  display: block;
}


.slider-nav-mobile {
  display: none;
}
/***********************************************
 ***************** À PROPOS *****************/




 .moi-content{
    background-color: var(--dark-blue);
    display: flex;
    color: var(--light-pink);
    padding-top: 30px;
    padding-bottom: 60px;
    padding-left: 20px;
 }

 .moi-content h2{
    color: var(--light-pink);
 }

 .texte-moi{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    gap: 10px;
 }


 .stickers-about{
 position: relative;
  top: 112px; 
  right: -236px;
 }

/* ANIM CARDS */

.section-animation-cards {
  position: relative;
min-height: 100vh;
display: flex;
align-items: center;
}

.section-animation-cards .title {
  position: sticky;
  top: 40px;
  z-index: 10;
}

.section-animation-cards .container,
.section-animation-cards .row {
  width: 100%;
}

.section-animation-cards .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px; /* espace entre les cards, ajuste si besoin */
}

.parcours-cards {
  color: var(--light-pink);
  display: flex;
  justify-content: center;
  margin-top: 50px;
flex: 1 1 260px;  
  max-width: 280px;
}


.section-animation-cards .col-12 {
  width: 100%;
  text-align: center;
  margin-bottom: 32px;
}

.parcours-cards .projet-tags {
  color: var(--light-pink);
  border: solid 1.5px var(--light-pink);
}

.section-animation-cards h3 {
  font-size: 30px;
  font-family: "Epilogue", sans-serif;
  font-weight: 600;
  margin: 0;
}

.parcours-cards span {
  font-weight: 600;
  font-family: "Epilogue", sans-serif;
}

.cards-lycee {
  background: var(--orange);
  border-radius: 30px;
  width: 300px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  text-align: center;
  transform: rotate(-8deg);
}

.parcours-cards p {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
  margin: 0;
}

.cards-info {
  background: var(--dark-blue);
  border-radius: 30px;
  width: 300px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  text-align: center;
  transform: rotate(8deg);
}

.cards-dg {
  background: var(--blue);
  border-radius: 30px;
  width: 300px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  text-align: center;
  transform: rotate(-8deg);
  color: var(--marron);
}

.cards-dg .projet-tags {
  color: var(--marron);
  border: solid 1.5px var(--marron);
}

.cards-web {
  background: var(--pink);
  border-radius: 30px;
  width: 300px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  text-align: center;
  color: var(--marron);
}

.cards-web .projet-tags {
  color: var(--marron);
  border: solid 1.5px var(--marron);
}

/***********************************************
 ***************** PAGE LEGALE *****************/

  .section-legal section {
    scroll-margin-top: 30px;
    background-color: var(--light-pink);
    padding-left:20px;
    display: flex;
    flex-direction: column;
  }

  .section-legal h1 {
    font-family: 'Source Serif Pro', serif;
    font-size: 100px;
    font-style: normal;
    margin-bottom: 40px;
    font-weight: 600;
  }

  .section-legal h2 {
    font-family: 'Epilogue', sans-serif;
    font-size: 50px !important;
    margin-top: 60px;
    padding-top: 20px !important;
    padding-bottom: 20px;
    border-top: 1px solid var(--marron);
  }

  .section-legal h3 {
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
    font-size: 24px !important;
    margin-top: 24px;
    font-weight: 600;
  }

  .section-legal p,
  .section-legal li {
    font-family: 'Epilogue', sans-serif;
    font-size: 16px;
    line-height: 1;
    padding-bottom: 10px;
    color: var(--marron);
  }

  .section-legal a {
    text-decoration: underline;
  }

  .section-legal .signature {
    font-family: 'Source Serif Pro', serif;
    font-style: italic;
    font-size: 1.2rem;
    margin-top: 80px;
  }

/***********************************************
 ***************** FOCUS PROJETS *****************/

 /* SECTION INTRO PROJETS */
.mockups{
    border-radius: 60px;
    margin-left: 20px;
}
.intro-content{
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-right: 20px;
}

.intro-categorie{
font-family: "Source serif pro";
font-style: italic;
font-size: 28px;
color: var(--marron);
}

.intro-content-projets p{
    font-family: "Source serif pro";
    font-size: 18px;
}

.section-intro-projets h2{
    font-family: "Epilogue";
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
}

.intro-content-projets{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 20px;
}

.section-intro-projets{
padding-top: 130px;
}

.section-intro-projets .col-5{
    display: flex;
    align-items: flex-end;
    color: var(--marron);

}
.intro-content .cta{
  margin-top: 20px ;
  display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}
.section-intro-projets-bloom{
padding-bottom: 60px;
}


 /* SECTION PROJET */


.section-focus-projet{
    position: relative;

    height: 100vh;
  background-image: var(--bg-image, url('styles/asset/default-bg.jpg'));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 70px;
    padding-left: 20px;
    padding-right: 20px;
}


.section-focus-projet::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.section-focus-projet .container{
    position: relative;
    z-index: 2;
    width: 100%;
}

.focus-projet-content{
  color: var(--light-pink);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-content: flex-end;
  
}
.focus-projet-content p{
  margin-top: 20px;
}

.focus-projet-content h2{
  color: var(--light-pink);
}

.img-focus-projet{
    filter: brightness(50%);
}
.section-focus-projet .row{
    align-items: center;
}


.section-focus-projet .col-2{
    display: flex;
    justify-content: center;
    align-items: center;
}

strong{
font-weight: 900;}

 /* SECTION scroll */

.mockup-wrap {
  position: relative;
  width: 752px;
  height: 475px;
  margin: 0 auto;
}

.mockup-frame {
  width: 752px;
  height: 475px;
  display: block;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.mockup-screen {
  position: absolute;
  top: 90px;
  left: 156px;
  width: 442px;
  height: 302px;
  overflow: hidden;
  border-radius: 2px;
  z-index: 1;
}

.mockup-screen-inner {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  scrollbar-width: none;
  padding-right: 17px;
  box-sizing: content-box;
}

.mockup-screen-inner::-webkit-scrollbar {
  display: none;
}

.mockup-screen-inner img {
  width: 100%;
  height: auto;
  display: block;
}


.scroll-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-scroll .col-12 {
    display: flex;
    justify-content: center;
    flex-basis: 0;
}
.section-scroll {
    padding-top: 70px;
    padding-bottom: 120px;
}

 /* SECTION DA */
.DA-AMZAMEIN{
margin-top: 200px;
}


.DA-content p {
  padding-bottom: 80px;
  color: var(--marron);

 }

 .DA-content h3{
  padding-bottom: 15px;
  
 }

 .DA-content{
  padding-left: 20px;
 }


 /* SECTION SLIDER */
  .slider-wrapper {
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
    user-select: none;
    cursor: grab;
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .slider-wrapper.dragging { cursor: grabbing; }
  .slider-track {
    display: flex;
    gap: 20px;
    width: max-content;
    transition: transform 0.05s linear;
  }
  .slide {
    width: 814px;
    height: 575px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
  }
  .slide-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-mono, monospace);
    color: #FFECEA;
  }
  .slide-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.5;
  }
  .slide-number {
    font-size: 72px;
    font-weight: 500;
    line-height: 1;
    color: #FFECEA;
    opacity: 0.15;
    position: absolute;
    bottom: 24px;
    right: 32px;
  }
  .slide-title {
    font-size: 22px;
    font-weight: 500;
    color: #FFECEA;
  }
  .slide-tag {
    font-size: 12px;
    padding: 4px 12px;
    border: 1px solid rgba(255,236,234,0.3);
    border-radius: 20px;
    color: rgba(255,236,234,0.6);
    letter-spacing: 0.1em;
  }

.pagination{
  visibility: hidden;}


/* SECTION COULEURS */

.section-couleurs{
padding-bottom: 120px;

}

 /* SECTION MOBILE */
.section-mobile {
    min-height: 100vh;
    background-image: url("../styles/asset/focus/jardinLila/img/pexels-iriser-1431193.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 80px;
    padding-bottom: 80px;
}

.mobile-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
    gap: clamp(20px, 5vw, 125px); 
    padding-top: 30px;
}

.mobile-content img {
    width: 100%;
    max-width: 304px; 
    height: auto; 
}


 /* SECTION DECOUVRIR */

 .card-projet-content p{
    font-family: "Source serif pro";
    font-size: 18px;
}

.section-decouvrir h3{
    font-family: "Epilogue";
    font-size: 30px;
    font-weight: 600;
}

.card-projet{
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-left: 20px;
    margin-top: 60px;
}

.section-decouvrir{
    margin-bottom: 120px;
}

.section-decouvrir .col-5{
    display: flex;
    align-items: flex-end;
}

.mockup-click{
border-radius: 60px;     
transition: 
        transform 0.4s ease,
        border-radius 0.4s ease,
        opacity 0.4s ease;

    border: 2px dashed transparent;
}

.mockup-click:hover{
    border: dashed 2px var(--marron);
    transform: scale(1.02);

}

.section-decouvrir .cta{
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.section-support{
  padding-bottom: 50px;
  padding-left: 20px;
  display: flex;
  align-items: center;
}

.support-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/***********************************************
 ***************** PAGE PROJETS *****************/

.intro-page-projet{
font-family: "Source serif pro";
font-size: 60px;
font-style: italic;
color: var(--marron);
text-align: center;
padding-top: 50px;
}

.filtre-btn:hover { background: var(--marron); color: var(--light-pink); }
.filtre-btn.actif { background: var(--orange); border-color: var(--orange); color: var(--light-pink); }

.filtre-projet.masque { display: none; }

.filtres-nav {
            display: flex;
            gap: 20px;
            margin: 40px 20px 40px;
            flex-wrap: wrap;
            width: 100%;
            padding-left: 20px;
        }
 
.filtre-btn {
            padding: 5px 18px;
            border-radius: 27px;
            border: 2.5px solid var(--marron);
            background: transparent;
            color: var(--marron);
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            font-family: 'Source-serif-pro';
            transition: all 0.25s ease;
            letter-spacing: 0.04em;
            display: inline-flex;
            align-items: center;
            gap: 0;
        }
 
        .filtre-btn:hover {
            background: transparent;
            color: var(--marron);
        }
 
        .filtre-btn.actif {
            background: transparent;
            border-color: var(--orange);
            color: var(--orange);
        }

.filtre-btn .icone {
  opacity: 0;
  width: 0;
  overflow: hidden;
  transition: all 0.35s ease;
  display: block;
}

.filtre-btn:hover .icone {
    opacity: 1;
    width: 16px;
    margin-left: 5px;
}

.filtre-btn.actif .icone {
    opacity: 1;
    width: 16px;
    margin-left: 5px;
}

.filtre-btn.actif {
    border: 2.5px solid var(--orange);
}

.filtre-btn span {
    display: inline-flex;
    align-items: center;
}
 
        .filtre-projet.masque {
            display: none;
        }
 
        /* GRILLE PROJETS */
        .grille-projets {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
            padding: 0 10px;
            gap: 40px 5%;
        }
 
        .filtre-projet {
            flex-basis: 45%;
            max-width: 45%;
            box-sizing: border-box;
            padding: 0 10px;
            margin-bottom: 60px;
        }
.filtre-projet .mockup-click {
    width: 100%;
    height: 467px;
    object-fit: cover;
    border-radius: 60px;
}


.pub-video{
 display: block;
  margin: 0 auto;
  padding-top: 60px;
    padding-bottom: 60px;
     width: 840px;
  height: 560px;
}





/***********************************************
 ***************** RESPONSIVE MOBILE *****************/

@media (max-width: 768px) {

  /* === GLOBAL === */
  .container {
    padding: 0 16px;
  }

  [class*="col-"] {
    flex-basis: 100% !important;
    max-width: 100% !important;
    min-height: unset;
  }

  .row {
    margin: 0;
  }

  /* === TYPOGRAPHIE === */
  .type-h1 { font-size: clamp(36px, 8vw, 88px); }
.type-h2 { font-size: clamp(28px, 5vw, 50px) !important; }
.type-h3 { font-size: clamp(32px, 6vw, 60px) !important; }
.type-h4 { font-size: clamp(22px, 4vw, 40px) !important; }

.intro-texte      { font-size: clamp(28px, 5vw, 60px); }
.intro-page-projet { font-size: clamp(32px, 6vw, 60px); }
.hero-content__catchphrase { font-size: clamp(32px, 6vw, 70px); }

  .intro-texte {
    font-size: 32px;
  }

  .intro-page-projet {
    font-size: 36px;
    padding-top: 30px;
  }


  .section-lua,
.section-projet,
.section-decouvrir {
  margin-bottom: clamp(60px, 10vw, 120px);
}

.intro-content {
  padding: clamp(40px, 8vw, 120px) 0;
}

.section-scroll {
  padding-top: clamp(40px, 6vw, 70px);
  padding-bottom: clamp(60px, 10vw, 120px);
}
  /* === HEADER === */
  header {
    padding: 0;
    background: transparent;
     z-index: 10002 !important;
    position: fixed !important;
  }
 
  /* ── Bouton burger SVG ── */
  .burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    position: fixed;
    top: 16px;
    right: 20px;
    z-index: 10002;
    flex-shrink: 0;
  }
 
  .burger img {
    width: 48px;
    height: 48px;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
  }
 
  /* Quand le menu est ouvert : rotation 45° = croix, couleurs inversées */
  .burger.is-open img {
    transform: rotate(45deg);
  }
 
  /* ── Barre du haut (logo + burger) ── */
  .navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    flex-wrap: nowrap;
    gap: 0;
  }
 
  .logo img {
    width: 140px;
    height: auto;
  }
 
  /* ── Overlay plein écran ── */
  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: var(--marron);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
 
    /* Etat fermé */
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: none;
  }
 
  /* Pas de bouton close séparé : le burger (z-index 10002) passe par-dessus */
  .mobile-menu-close {
    display: none;
  }
 
  /* Animation ouverture : rebond depuis le haut */
  .mobile-menu-overlay.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    animation: menuBounceIn 0.55s cubic-bezier(0.22, 1.4, 0.36, 1) forwards;
  }
 
  /* Animation fermeture */
  .mobile-menu-overlay.is-closing {
    animation: menuSlideOut 0.3s ease-in forwards;
  }
 
  @keyframes menuBounceIn {
    0%   { transform: translateY(-100%); opacity: 0; }
    60%  { transform: translateY(6%); opacity: 1; }
    80%  { transform: translateY(-3%); }
    100% { transform: translateY(0); opacity: 1; }
  }
 
  @keyframes menuSlideOut {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-100%); opacity: 0; }
  }
 
  /* ── Liens de navigation ── */
  .navigation-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    background: none;
    border-radius: 0;
  }
 
  .navigation-menu li {
    margin: 0;
  }
 
  .navigation-menu__link {
    font-family: "Epilogue", sans-serif;
    font-weight: 700;
    font-size: clamp(52px, 14vw, 80px);
    color: var(--pink) !important;
    text-decoration: none;
    line-height: 1;
    letter-spacing: -0.02em;
    display: block;
    transition: color 0.2s ease;
  }
 
  .navigation-menu__link:hover {
    color: var(--light-pink) !important;
    text-decoration: none;
  }
 
 .navigation .navigation-menu {
    display: none !important;
  }
 
   .navigation ~ .header__cta {
    display: none;
  }
  /* ── Stickers décoratifs dans l'overlay ── */
  .menu-stickers {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }
 
  .menu-sticker {
    position: absolute;
  }
 
  .menu-sticker--awesome {
    bottom: 80px;
    left: -20px;
    width: 220px;
    opacity: 0.9;
    transform: rotate(-8deg);
  }
 
  .menu-sticker--timbre {
    top: 30px;
    right: -15px;
    width: 180px;
    opacity: 0.85;
    transform: rotate(6deg);
  }
 
  .menu-sticker--logo2 {
    top: 50%;
    left: 50%;
    width: 260px;
    opacity: 0.06;
    transform: translate(-50%, -50%);
  }
 
  .mobile-menu-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
  }
 
  .mobile-menu-close img {
    width: 48px;
    height: 48px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }
 
  .mobile-menu-close:hover img {
    transform: rotate(90deg);
  }

  

 /* === HERO === */
  .section-hero {
    height: auto;
    min-height: 100svh; /* svh pour meilleur rendu mobile */
    padding-bottom: 40px;
    background-size: cover;
    background-position: center top;
  }

  .section-hero .row {
    min-height: unset;
    padding-top: 100px; /* espace pour le header fixe */
    flex-direction: column;
    align-items: flex-start;
  }

  /* Titre + catchphrase */
  .hero-content {
    align-items: flex-start;
    margin-bottom: 20px;
    padding-left: 8px;
  }

  .hero-content__catchphrase {
    font-size: clamp(32px, 8vw, 60px);
  }


  .hero_photo {
    margin-left: 0;
    width: 80%;
    max-width: 420px;
    height: auto;
  }

  /* Illustration fraise : repositionnée en relatif */
  .hero_illustration {
     position: absolute;
    bottom: 178px;
    right: 7%;
    width: clamp(80px, 18vw, 110px);
    height: auto;
  }

  /* Cache la colonne vide col-1 */
  .section-hero .col-1 {
    display: none;
  }


  .section-hero .col-5 {
   order: -1;
    position: relative;
    display: flex;
    justify-content: center;
  }

  .section-hero .col-6 {
    order: 0;
  }

  /* === INTRO === */
  .intro-content {
    padding: 120px 20px;
    margin: 0 0;
    line-height: normal;
  }
  .section-intro .container{
padding: 0;
  }

  .intro-texte span img {
    width: clamp(28px, 7vw, 40px);
    height: auto;
  }

  .intro-texte{
    padding-top: 120px;
  }
  /* === MISSIONS === */
   .section-missions ul.row li {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
    min-height: unset;
  }

.section-missions h2{
  margin-bottom: 50px;
}

  .missions-cards {
    width: 85%;
    margin: 20px auto;
    padding: 30px 24px;
  }

  .illustration-agrume {
     width: 120px;
    height: 120px;
    position: relative;
    top: -80px;
    left: 0;
  }

  .section-missions ul.row {
    flex-direction: column;
    align-items: center;
  }
  /* === Lua === */

.section-lua .col-7 img {
    width: 85%;
    height: auto;
    margin: 0 auto;
  }

  .section-lua .cta {
    display: flex;
    justify-content: center;
  }

  .projet-categorie{
    padding-top: 15px;
  }


  /* === SECTION PROJET (slider home) === */
 .slider-row {
    display: flex;
    flex-direction: column;
  }

  /* Flèches + image sur la même ligne */
   .col-arrow {
    display: none;
  }

  .section-projet .col-5:last-of-type {
    order: -1;
  }

  .mockups {
    width: 100%;
    border-radius: 30px;
    max-height: 280px;
    object-fit: cover;
  }

  /* Texte en dessous sur toute la largeur */
  .section-projet .col-5:first-of-type {
    flex-basis: 100%;
    max-width: 100%;
        order: s1;

  }


  .projet-content {
    margin-left: 0;
    margin-top: 20px;
  }

  .projet-content .cta {
    display: flex;
    justify-content: center;
  }
  /* Les flèches restent sur leur ligne avec l'image */
  .col-arrow:first-of-type { order: -2; }
  .col-arrow:last-of-type { order: 0; }

  .projet-content {
    margin-left: 0;
    margin-top: 20px;
  }

  /* === PAGE PROJETS — GRILLE === */
  .grille-projets {
    flex-direction: column;
    gap: 40px;
    padding: 0 16px;
  }

  .filtre-projet {
    flex-basis: 100% !important;
    max-width: 100% !important;
    margin-bottom: 0;
    padding: 0;
  }

  .filtre-projet .mockup-click {
    height: 280px;
    border-radius: 30px;
  }

  .filtres-nav {
    gap: 10px;
    margin: 20px 0 30px;
    padding-left: 0;
  }

  .filtre-btn {
    font-size: 13px;
    padding: 5px 14px;
  }


   .section-page-projet{
    padding-top: 70px;
    padding-bottom: 70px;

  }
  /* === À PROPOS === */
  .stickers-about {
    display: none;
  }

  .moi-content {
    flex-direction: column;
    padding: 20px 16px 40px;
  }

  .texte-moi {
    justify-content: flex-start;
  }
.section-moi {
  padding-top: 70px;
}

.section-moi h1{
  padding-bottom: 70px;
}

.section-moi .container{
  padding: 0 0;
}

/* moi-content devient colonne, photo en premier */
.moi-content {
  flex-direction: column;
  padding: 30px 16px 40px;
  gap: 30px;
}

/* Ordre inversé : photo en premier visuellement */
.moi-content .col-6 {
  order: -1;
}

/* La photo prend toute la largeur */
.moi-content .col-6 img {
  width: 100%;
  height: auto;
  max-width: 320px;
  margin: 0 auto;
  display: block;
}

/* Texte aligné normalement */
.texte-moi {
  justify-content: flex-start;
  gap: 16px;
}


.section-animation-cards {
    min-height: 100vh;
    padding-top: 40px;
    align-items: flex-start;
    overflow: hidden; /* cache les cards qui arrivent du bas */
  }
 
  .section-animation-cards .row {
    display: block;
    position: relative;
    min-height: 70vh;
  }
 
  /* Titre au-dessus des cards */
  .section-animation-cards .title {
    position: relative;
    z-index: 50;
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 20px;
  }
 
  /* Taille des cards — le positionnement est géré par JS */
  .cards-lycee,
  .cards-info,
  .cards-dg,
  .cards-web {
    width: 100% !important;
    padding: 24px 20px !important;
    gap: 16px !important;
    transform: none; /* GSAP gère la rotation */
  }
 

  .parcours-cards {
    position: relative !important;
    left: unset !important;
    top: unset !important;
  }
  .parcours-cards p { font-size: 16px; }
  .section-animation-cards h3 { font-size: 22px; }

      /* focus */

  .section-focus-projet {
    height: 60vh;
    padding-bottom: 40px;
  }

  .section-intro-projets .col-1 {
    display: none;
  }

  .section-intro-projets .col-6 {
    order: -1;
  }

  .section-intro-projets .mockups {
    width: 100%;
    border-radius: 30px;
    margin: 0;
  }

  .section-intro-projets .intro-content {
    margin-left: 0;
    margin-top: 24px;
  }

  .section-intro-projets .cta {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .intro-content{
    padding-top: 0;
  }

  /* INTRO PROJET */
.section-focus-projet {
    height: auto;
    min-height: 60vh;
    padding-bottom: 40px;
  }

  .section-focus-projet .col-4 {
    display: none;
  }

  .section-focus-projet .col-6,
  .section-focus-projet .col-2 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .section-focus-projet .col-2 img {
    width: 100px;
    height: auto;
    margin-top: 32px;
  }

.section-scroll .col-12 img {
    width: 60%;
    margin: 0 auto;
  }

  /* scroll */
img[src*="stickers-scroll"] {
  padding-bottom: 20px; 
}

 .mockup-wrap {
    width: 100% !important;
    height: auto !important;
    position: relative !important;
  }

  .mockup-frame {
    width: 100% !important;
    height: auto !important;
    position: relative !important;
    display: block !important;
  }

  /* Cache le cadre ordi, montre juste l'image du site */
  .mockup-frame {
    display: none !important;
  }

  .mockup-screen {
    position: relative !important;
    top: unset !important;
    left: unset !important;
    width: 100% !important;
    height: auto !important;
    overflow: hidden !important;
    border-radius: 12px !important;
  }

  .mockup-screen-inner {
    height: 400px;
  }
  

  .slider-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .slide {
    width: 85vw;
    height: auto;
    min-height: 300px;
  }


    /* === mobile === */

  .mobile-content {
    flex-direction: column;
    gap: 40px;
    padding-top: 20px;
  }
.mobile-content img {
    max-width: 200px;
  }
  /* === à decouvrir === */
.section-decouvrir .mockup-click {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 30px;
  }



  /* === FOOTER === */
  .footer {
    padding: 0;
    overflow: visible;
  }
 
  .footer .container,
  .footer .footer-container {
    margin: 0;
    padding: 0;
  }
 
  .footer .row {
    flex-direction: column;
    align-items: stretch;
    min-height: unset;
  }
 
  .footer .col-9,
  .footer .col-3 {
    flex-basis: 100% !important;
    max-width: 100% !important;
    padding: 0;
  }
 
  /* ── Stickers en haut ── */
  .footer > .col-12 {
    position: relative;
    height: 180px;
    overflow: visible;
  }
 
  .illustrations-footer {
    position: relative;
    top: unset;
    right: unset;
    width: 100%;
    height: 180px;
    pointer-events: none;
    transition: none;
    transform: none;
  }
 
  .illustration-merci {
    position: absolute;
    top: -40px;
    left: 61%;
    width: 200px;
    right: unset;
  }
 
  .illustration-fraise {
    position: absolute;
    top: 29px;
    left: 66%;
    width: 110px;
    right: unset;
  }
 
  .illustration-fleur {
    position: absolute;
    top: 75px;
    left: 76%;
    width: 50px;
    right: unset;
  }
 
  /* ── LinkedIn + Contact en premier ── */
  .footer .col-3 {
    order: -1;
    padding: 40px 24px 24px;
    margin-bottom: 0;
  }
 
  .footer-infos {
    margin-top: 12px;
  }
 
  .footer-linkedin {
    color: var(--light-pink) !important;
    font-size: 16px !important;
    font-weight: 700;
  }
 
  .footer-link {
    font-size: 14px;
  }
 
  /* ── Grand logo ── */
  .footer-logo {
    width: 100%;
    padding: 0 16px;
    margin-top: 24px;
  }
 
  /* ── Mentions légales en bas ── */
  .footer-legende {
    flex-direction: column;
    gap: 4px;
    margin-left: 0;
    padding: 16px 24px 32px;
    margin-top: 16px;
  }
 
  .footer-catchphrase {
    font-size: 13px;
  }

.pub-video{
width: 100%;
  height: auto;
}
}