
:root {
  /* Définition des variables de couleurs */
  --background-color: #000000;
  
  /* Couleurs de texte */
  --text-color: #FFFFFF; /* Blanc pour le texte principal */

  /* Couleurs des boutons */
  --button-bg-color-light: #A9D6E5; /* Bleu clair pour le fond des boutons */
  --button-text-color-light: #000000; /* Noir pour le texte des boutons clairs */
  --button-bg-color-dark: #000000; /* Noir pour le fond des boutons foncés */
  --button-text-color-dark: #A9D6E5; /* Bleu clair pour le texte des boutons foncés */
  
  /* Fonts */
  --font-size-h1: 2.5rem; /* Taille de police pour h1 */
  --font-size-h2: 2rem;   /* Taille de police pour h2 */
  --font-size-h3: 1.75rem; /* Taille de police pour h3 */
  --font-size-h4: 1.25rem; /* Taille de police pour h3 */
  --font-size-body: 1rem; /* Taille de police pour le texte général */
  --font-size-article: 0.75rem;
  --text-letter-spacing: 0.05em;
  --text-line-height: 1.4;
  --title-letter-spacing: 0.1em;
  --title-line-height: 2;
  --font-weight: 300;
  --font-weight-name: 600;
}

/* @font-face {
  font-family: 'Barlow';
  font-style: normal;
  src: url('https://fonts.googleapis.com/css2?family=Barlow:wght@400&display=swap') format('woff2');
} */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300&display=swap');


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

html {
  height: 100%;
  font-size: calc(1vw + 1vh + 0.5vmin);
}

body {
  max-width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: var(--background-color);
  color: #FFFFFF;
  font-family: 'Barlow', sans-serif;
}

/* Styles pour la navbar */
#navbar {
  position: fixed;
  top: 0;
  height: 60px;
  width: calc(91vw);
  background-color: transparent; /* Transparent initialement */
  color:#fff;
  transition: background-color 0.8s, backdrop-filter 0.8s; /* Effet de transition pour le fond */
  padding: 1vh 8vw;
  display: flex;
  align-items: center; /* Centre les éléments de la navbar verticalement */
  z-index: 1000;
}

/* Styles lorsque la navbar devient sticky et opaque */
.navbar-sticky {
  background-color: rgba(0, 0, 0, 0.9); /* Noir avec un peu de transparence */
  backdrop-filter: blur(5px);
}

#navbar ul {
  padding-top: 3vh;
  list-style-type: none;
  display: flex;
  align-items: center;
}

#navbar ul li a {
  color: inherit; /* Prend la couleur du parent, ici #fff */
  text-decoration: none;
  padding: 1.3rem;
  font-size: 1.2rem;
}

#navbar ul li a:hover {
  color: var(--button-bg-color-light); /* Couleur du texte au survol */
}


#main-section {
  background-image: url("/assets/photo_header.png");
  min-height: 100vh; /* occupe la hauteur complète de l’écran */
  width: 100vw;
  background-size: cover;
  background-position: center;
  display: flex;                /* active le flex pour centrer verticalement */
  align-items: center;          /* centre verticalement */
}

.main-section-wrapper {
  padding: 6vw 9vw;             /* marge interne */
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;      /* tout est centré dans le bloc */
  gap: 2rem;                    /* espace entre texte / playlist / boutons */
  margin-top: 0;                /* supprime le décalage vers le bas */
}

/* Style pour le titre, le texte */
.text-content h1 {
  font-size: var(--font-size-h1);
  text-align: left;
  margin-bottom: 2rem;
}

.text-content p {
  font-size: var(--font-size-body);
  text-align: left;
  padding-top: 0.5rem;
}

.playlist-wrapper iframe {
  width: 100%;
  max-width: 660px;
  height: 300px;   /* hauteur desktop réduite */
  border-radius: 10px;
}

/* Style pour la disposition des boutons */
.playlist-wrapper,
.main-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding-top: 4rem; /* Espace supplémentaire au-dessus des boutons si nécessaire */
}

/* Styles pour les boutons, en reprenant la classe `.button-light` que nous avons définie précédemment */


.button-light {
  display: flex;                /* ✅ flex pour un vrai centrage */
  justify-content: center;      /* texte centré horizontalement */
  align-items: center;          /* texte centré verticalement */
  width: 140px;                 /* ✅ largeur fixe desktop */
  height: 40px;                 /* ✅ hauteur fixe desktop */
  text-align: center;
  text-decoration: none;
  background-color: #A9D6E5;
  color: #000000;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-light:hover {
  background-color: #92c6d1; /* Légère variation de couleur au survol pour un effet interactif */
}

/* Style des boutons foncés */
.button-dark {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 40px;
  background-color: #000;
  text-decoration: none;
  color: #A9D6E5;
  border: 1px solid #A9D6E5;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}


.button-dark:hover {
  background-color: #031d1d; /* Légère variation de couleur au survol pour un effet interactif */
}

                              /* SECTION ABOUT */
#about {
  background-image: url('/assets/photo_william.png'); /* Remplace cela par le chemin de ton image */
  background-size: cover;
  background-position: center;
  background-color: var(--background-color);
  min-height: 100vh; /* Prend toute la hauteur de l'écran */
  width: 100vw;
  color: #ffffff; /* Couleur du texte */
  margin-top: 5vh;
}

#about h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 0.25rem;
  background: var(--text-color);
  margin: 0.5rem auto 0;
}

.about-wrapper {
  height: 100%; /* S'assure que le wrapper prend toute la hauteur de la section */
  display: grid;
  grid-template-columns: 1fr 1fr; /* Divise la section en deux colonnes de taille égale */
  padding: 10vh 20vw 20vh 9vw; /* Ajuste le padding comme nécessaire */
  justify-content: center; 
}

.about-content h2 {
  font-size: var(--font-size-h1);
  margin-top: 5vh; /* Ajuste la marge si nécessaire */
  text-align: center;
}

.about-content p {
  font-size: var(--font-size-body);
  text-align: left;
  padding-top: 3rem;
  letter-spacing: var(--text-letter-spacing);
  line-height: var(--text-line-height);
}

                              /* SECTION SPECIALIZED SERVICES*/  

#specialized-services {
  background-image: url('/assets/background_services.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 100vh; /* Prend toute la hauteur de l'écran */
  width: 100vw;
  color: #ffffff; /* Couleur du texte */
  text-align: center;
  padding: 5vh 1rem 2rem;
}

#specialized-services h2 {
  font-size: var(--font-size-h1);
  margin-bottom: 2rem;
  margin-top: 5vh;
  position: relative;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1.3rem; /* Ajoute un espace sous le titre */
}

#specialized-services h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 0.25rem;
  background: var(--text-color);
  margin: 0.5rem auto 0;
}

.services-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem; /* Augmente l'espacement entre les éléments */
}

.service {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between; /* Écarte les éléments de chaque côté */
  max-width: 80%;
  margin: 0 auto;
}

.service h4 {
  font-size: var(--font-size-h4);
  margin: 3rem; /* Augmente l'espace entre le titre et l'image */
  flex-direction: column;
  justify-content: center; /* Centre verticalement le texte */
  text-align: center; /* Centre le texte horizontalement */
}

.service img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.service:nth-child(odd) {
  flex-direction: row-reverse;
}

                              /* SECTION AWARD */

#award {
  text-align: center;
  padding: 5vh 1rem;
  background-color: var(--background-color);
  color: var(--text-color);
}

#award h2 {
  font-size: var(--font-size-h1);
  margin-top: 5vh; /* Marges pour espacement avec les autres sections */
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1.3rem; /* Espace sous le titre */
}

#award h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 0.25rem;
  background: var(--text-color);
  margin: 0.5rem auto 0;
}

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

#award h4 {
  font-size: var(--font-size-h4);
  margin-bottom: 1rem;
  text-align: left; /* Aligne le texte à gauche */
  width: 80vw;
  max-width: 760px;
}

.video-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; /* Aligne le logo avec le bas de la vidéo */
  width: 80vw;
  max-width: 760px;
}

.video-container iframe {
  width: 80vw;
  height: 46vw;
  max-width: 760px;
  max-height: 460px;
}

.award-logo {
  display: flex;
  position: absolute;
  right: -100px;
  bottom: 0;
  flex-shrink: 0; /* Empêche le logo de se réduire */
}

.award-logo img {
  width: 9vw;
  height: 16vw;
  max-width: 90px;
  max-height: 160px;
}

.button-light.award-button {
  margin: 4rem auto;
}

.award-button {
  font-size: 0.8rem;  /* un peu plus petit que les autres */
  font-weight: 600;   /* tu peux aussi alléger le gras si tu veux */
}


                             /* SECTION REFERENCES */
#testimonial {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-color);
}

.testimonial-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#testimonial h2 {
  font-size: var(--font-size-h1);
  margin-top: 5vh; /* Marges pour espacement avec les autres sections */
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1.3rem; /* Espace sous le titre */
}

#testimonial h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 0.25rem;
  background: var(--text-color);
  margin: 0.5rem auto 0;
}

.testimonial-container {
  position: relative;
  max-width: 40vw;
  width: 100%;
  padding: 7vh 0;
  overflow: hidden;
}

.testimonial-container .image {
  height: 23vh;
  width: 12vw;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
}

.testimonial-container .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 3vh;
}

.slide p {
  padding: 0 15vh;
  text-align: center;
  font-size: var(--font-size-body);
  font-weight: var(--font-weight);
}

.slide .quote-icon {
  font-size: var(--font-size-h4);
  color: var(--button-bg-color-light);
}

.slide.details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.details.name {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-name);
}

.swipe-btn {
  height: 2.5px !important;
  width:  2.5px !important;
  border-radius: 50%;
  transform: translateY(2rem);
  background-color: rgba(0, 0, 0, 0.1) !important;
  transition: 0.2;
}

.swipe-btn:hover {
  background-color: var(--text-color);
}

.swipe-btn::after, 
.swipe-btn::before {
  font-size: 1.25rem !important;
  color: var(--button-bg-color-light);
}

.swiper-pagination-bullet {
  background-color: var(--button-bg-color-light);
}

.swiper-pagination-active {
  background-color: var(--button-text-color-light);
}

/* ---------------------------------SECTION ARTICLE ---------------------------------- */


/* Section Press */
#articles {
  width: 100%;
  text-align: center;
  padding: 5vh 10vw;
  background-color: var(--background-color);
}

#articles h2 {
  font-size: var(--font-size-h1);
  margin-bottom: 4vh;
  position: relative;
  padding-bottom: 1rem;
}

#articles h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 0.25rem;
  background: var(--text-color);
  margin: 0.5rem auto 0;
}

.articles-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.article-card {
  flex: 0 1 320px; /* largeur fixe et cohérente */
  max-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
  text-align: left;
}

.article-card:hover {
  transform: translateY(-0.5rem);
  opacity: 1;
}

.article-card img {
  width: 100%;
  height: 180px; /* fixe pour toutes les images */
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.article-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.article-content h4 {
  margin-bottom: 0.5rem;
  font-size: var(--font-size-h4);
  color: var(--button-text-color-light);
}

.article-content h4::after {
  content: "";
  display: block;
  width: 4rem;
  height: 0.25rem;
  background: var(--button-bg-color-light);
  margin-top: 0.5rem;
}

.article-content p {
  margin-bottom: 1.3rem;
  font-size: var(--font-size-article);
  color: #333333;
}

.button-container {
  text-align: center;
  margin-top: auto;
}

.button-small {
  background-color: #A9D6E5;
  color: #000000;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-inner img {
  width: 100%;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.modal .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2rem;
  cursor: pointer;
  color: #000;
}


/* -------------------------------STUDIO CONTENT -------------------------------*/

#studio {
  height: 100vh;
  width: 100%;
  background-image: url('/assets/photo_studio_nb.png'); /* Remplacez par le chemin de votre image */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh; /* Prend toute la hauteur de l'écran */
  width: 100vw;
  text-align: center;
  padding-top:0vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Commence les éléments depuis le haut */
  align-items: center;
  color: #ffffff; /* Couleur du texte */
}

.studio-content {
  width: 80%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5); /* Fond noir transparent */
  border-radius: 1rem; /* Bordures arrondies */
}

#studio h2 {
  font-size: var(--font-size-h1);
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  padding-top: 5rem;
  padding-bottom: 1rem;
}

#studio h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 0.25rem;
  background: var(--text-color);
  margin: 0.5rem auto 0;
}

.studio-paragraph {
  margin: 8rem 0 0rem 0; /* Ajoute de l'espace entre les paragraphes */
}

.studio-paragraph p {
  margin: 0; /* Enlève la marge par défaut des paragraphes */
  font-size: var(--font-size-body);
  line-height: 1.5; /* Ajuste l'interligne pour une meilleure lisibilité */
}

.studio-paragraph-2 {
  margin: 3rem 0 0rem 0; /* Ajoute de l'espace entre les paragraphes */
}

.studio-paragraph-2 p {
  margin: 0; /* Enlève la marge par défaut des paragraphes */
  font-size: var(--font-size-body);
  line-height: 1.5; /* Ajuste l'interligne pour une meilleure lisibilité */
}
.studio-paragraph-3 {
  margin: 3rem 0 0rem 0; /* Ajoute de l'espace entre les paragraphes */
}

.studio-paragraph-3 p {
  margin: 0; /* Enlève la marge par défaut des paragraphes */
  font-size: var(--font-size-body);
  line-height: 1.5; /* Ajuste l'interligne pour une meilleure lisibilité */;
}

/* -------------------------------FOOTER ----------------------------------------*/
#contact {
  background-color: var(--background-color);
  color: #fff;
  padding: 5vh 10vw;
  display: flex;
  justify-content: center;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10vw;
  max-width: 80vw;
  justify-content: center;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: start; /* Aligne le contenu à gauche */
}

.footer-column h2 {
  font-size: var(--font-size-h2);
  margin-bottom: 1rem;
  position: relative;
  align-self: start; /* Assure que les titres sont alignés à gauche */
}

.footer-column h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 0.25rem;
  background: #FFFFFF;
  margin-top: 0.5rem;
}

.footer-column h4 {
  font-size: var(--font-size-h4);
  margin-bottom: 1rem;
  color: var(--button-bg-color-light);
}

.footer-column p,
.footer-column a {
  font-size: var(--font-size-body);
  margin-bottom: 1rem;
  color: var(--text-color); /* Utilise la couleur de texte définie */
}

.footer-column p a {
  color: var(--text-color); /* Utilise la couleur de texte définie pour les liens */
  text-decoration: none;
}

.footer-column p a:hover {
  text-decoration: none;
  color: var(--button-bg-color-light);
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: var(--text-color);
  text-decoration: none;
  font-size: var(--font-size-body);
}

.footer-column ul li a:hover {
  text-decoration: none;
  color: var(--button-bg-color-light);
}

.social-icons {
  display: flex;
  align-items: center;
}

.social-icons a {
  display: block;
  margin-right: 1rem;
}

.social-icons a:last-child {
  margin-right: 0;
}

.social-icons img {
  width: 2rem;
  height: 2rem;
}

.social-icons a:hover img {
  filter: brightness(0) saturate(100%) invert(68%) sepia(100%) saturate(0%) hue-rotate(236deg) brightness(95%) contrast(102%);
  color: var(--button-bg-color-light);
}

@media screen and (min-width: 768px) {
  html {
    font-size: 16px; 
  }
}
/* ========================= */
/* 📊 TABLETTE (768px–1024px) */
/* ========================= */
@media (min-width: 768px) and (max-width: 1024px) {

  .main-buttons {
    flex-direction: row;
    justify-content: flex-start; 
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
  }

  .button-light,
  .button-dark {
    width: 150px;
    height: 40px;
    line-height: 40px;
    font-size: 1rem;
  }

   .testimonial-container {
    max-width: 100%;       /* prend toute la largeur */
    width: 100%;
    padding: 2rem 1rem;    /* plus d’espace latéral */
  }

  .testimonial-container .image {
    width: 120px;          /* taille raisonnable */
    height: 120px;
  }

  .slide p {
    padding: 0 1rem;       /* espace horizontal réduit mais lisible */
    font-size: 0.95rem;    /* texte adapté mobile */
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}

/* ========================= */
/* 📱 MOBILE (<767px)        */
/* ========================= */
@media (max-width: 767px) {

  /* MAIN HERO */
  #main-section {
    background-size: cover;
    background-position: center top; /* focus en haut sur mobile */
    min-height: 80vh;                /* un peu plus compact */
  }

  /* ABOUT */
  #about {
    background-size: cover;
    background-position: center;
    background-attachment: scroll;   /* désactive l’effet fixed qui bug sur mobile */
    min-height: auto;
    padding: 5vh 5vw;
  }

  /* SERVICES */
  #specialized-services {
    background-size: contain;        /* évite trop de zoom */
    background-repeat: no-repeat;
    background-position: top center; /* focus haut */
    padding: 5vh 1rem;
  }

  /* STUDIO */
  #studio {
    background-size: cover;          /* occupe tout */
    background-position: center;
    background-repeat: no-repeat;
    min-height: auto;
    padding: 4vh 5vw;
  }

  .button-small,
  .button-light,
  .button-dark {
    display: block;
    width: 100%;               /* prend toute la largeur dispo dans son container */
    max-width: 240px;          /* mais limité pour garder le même look que homepage */
    margin: 0.5rem auto;       /* centrage horizontal */
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    background-color: #A9D6E5;
    color: #000;
    border: none;
    border-radius: 0;          /* rectangulaire */
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
  }
  .button-light {
    background-color: #A9D6E5;
    color: #000;
  }

  .button-light:hover {
    background-color: #92c6d1;
    transform: translateY(-2px); /* effet clic */
  }

  .button-dark {
    background-color: #000;
    color: #A9D6E5;
    border: 1px solid #A9D6E5;
  }

  .button-dark:hover {
    background-color: #031d1d;
    transform: translateY(-2px);
  }

  .button-small {
    background-color: #A9D6E5;
    color: #000;
  }

  .button-small:hover {
    background-color: #92c6d1;
    transform: translateY(-2px); /* effet clic */
  }

  .playlist-wrapper {
    padding-left: 0;
    display: flex;
    justify-content: center;
  }

  .playlist-wrapper iframe {
    height: 200px;
  }

  .testimonial-container {
    max-width: 100%;       /* prend toute la largeur */
    width: 100%;
    padding: 2rem 1rem;    /* plus d’espace latéral */
  }

  .testimonial-container .image {
    width: 120px;          /* taille raisonnable */
    height: 120px;
  }

  .slide p {
    padding: 0 1rem;       /* espace horizontal réduit mais lisible */
    font-size: 0.95rem;    /* texte adapté mobile */
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }

  .articles-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0.5rem;
  }

  .article-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* pousse le contenu + bouton */
    height: 100%;                   /* occupe toute la hauteur */
  }

  .article-content {
    flex: 1;                         /* le contenu prend la place dispo */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;     /* texte reste en haut */
  }

  .article-card img {
    width: 100%;
    height: 200px;              /* image plus grande */
    object-fit: cover;
  }

  .article-content h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #000;
  }

  .article-content p {
    display: none;
  }

  .button-container {
    margin-top: auto;          /* pousse le bouton en bas */
    padding-bottom: 1rem;      /* espace en bas de la card */
    display: flex;
    justify-content: center;   /* bouton bien centré */
  }

  .article-card {
    display: flex;
    flex-direction: column;
  }

  .article-content h4::after {
    display: none !important; /* supprime le trait bleu sous le titre */
  }

   #navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: rgba(0,0,0,0.9);
  }

  #navbar ul {
    position: fixed;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100vh;
    background-color: black;
    flex-direction: column;
    align-items: flex-start;
    padding: 4rem 2rem;
    gap: 1.5rem;
    transition: left 0.3s ease;
    z-index: 1000;
  }

  #navbar ul.open {
    left: 0;
  }

  .burger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
  }

  .burger-icon span {
    width: 25px;
    height: 3px;
    background: white;
    display: block;
    transition: all 0.3s ease;
  }

  /* HERO */
  .main-section-wrapper {
    padding: 4vh 5vw;
    margin-top: 5vh;
    text-align: center;
  }

  .text-content h1 {
    font-size: 1.8rem;
  }

  .text-content p {
    font-size: 1rem;
    line-height: 1.5;
  }

  /* BOUTONS → empilés et centrés */
  .main-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
  }

  .button-light,
  .button-dark {
    width: 80%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    text-align: center;
  }

  /* ABOUT → overlay */
  #about {
    position: relative;
    background-attachment: scroll;
  }

  #about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
  }

  .about-content {
    position: relative;
    z-index: 2;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    padding: 5vh 5vw;
  }

  /* SERVICES */
  .service {
    flex-direction: column !important;
    text-align: center;
  }

  .service img {
    max-width: 100%;
    margin-bottom: 1rem;
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-column {
    align-items: center;
  }
}
