/* Réinitialiser le style par défaut du navigateur */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*fontes*/
h1 {
font-family: "bc-alphapipe", sans-serif;
font-style: normal;
font-weight: 400;
}

p {
  font-family: "Fredoka", sans-serif;
  font-size: 1.1rem;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-style: normal;
  font-weight: 300;
}

a {
  font-family: "Fredoka", sans-serif;
  font-style: normal;
  font-weight: 400;
}

/* Réglages généraux */
body {
    margin: 0px;
    font-family: 'Roboto Flex', sans-serif;
    background-color: #2c2c2c;
    color: #ffffff;
    scroll-behavior: smooth;
}

/* En-tête avec la vidéo */
header {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: black;
}

/* Vidéo d'accueil */
header .cinemagraphe {
  position: absolute;
  width: 100%;
  height: auto;
  object-fit: cover;
}

header .cinema-vertical {
  display: none;
}

@media screen and (orientation: portrait) {
  .cinemagraphe {
    height: 100%;
    width: auto;
  }
}

/*cta-button*/
header .bouton a {
    padding: 10px 20px;
    background-color: #12c8a1;
    color: black;
    text-align: center;
    text-decoration: none;
    font-size: 1.25rem;
    border-radius: 30px;
    transition: all 0.3s ease-out;
    box-shadow: 0px 0px 14px #12c8a1;
    left: 180px;
  position: absolute;
  top: 75%;
  width: fit-content;
}

header .bouton a:hover {
  box-shadow: 0px 0px 14px #ff18d5;
  background-color: #99007e;
  color: white;
}

.social-icons {
  position: absolute;
  top: 93%;
  left: 50%;
  display: flex;
  gap: 20px;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 15px;
}

.social-icons svg {
  fill: none;
  stroke: #6fffdd;
  stroke-miterlimit: 10;
  stroke-width: 2px;
}

.social-icons a svg {
  height: 28px;
  width: 28px;
  transition: filter 0.5s ease-out; /* Ajouter la transition pour la couleur de remplissage */
  filter: drop-shadow(0 0 3px #6fffdd) drop-shadow(0 0 7px #12c8a1);
  cursor: pointer; /* Indiquer que c'est cliquable */
}

.social-icons a:hover svg {
  stroke: #ffabf0;
  filter:  drop-shadow(0 0 3px #ffabf0) drop-shadow(0 0 7px #ca00a5); /* Effet néon au survol */
  /* Vous pouvez aussi changer le fill ici si vous ne le faites pas sur les paths */
  /* fill: #ffabf0; */
}

.insta-icon .plain {
  fill: #6fffdd;
  stroke: none;
  transition: filter 0.5s ease-out;
}

.insta-icon .plain:hover {
  fill: #ffabf0;
}

.behance-icon .plain {
  stroke: none;
  fill: #6fffdd;
}

.behance-icon .plain:hover {
  fill: #ffabf0;
}

/* Responsive Social Icons */
@media (max-width: 1024px) {
  .social-icons {
    padding: 15px;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .social-icons {
    padding: 20px;
    gap: 20px;
  }

  .social-icons a svg {
    height: 26px;
    width: 26px;
  }
}

@media (max-width: 480px) {
  .social-icons {
    padding: 15px;
  }
} 

/* Conteneur principal pour le logo et le burger menu */
.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Aligne le logo et le burger menu aux extrémités */
  width: 100%;
}

/* Burger menu */
.burger-menu {
  display: none; /* Caché par défaut */
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  position: relative;
  height: 24px;
  width: 30px;
  z-index: 3;
}

.burger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.burger-menu.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.open span:nth-child(2) {
  opacity: 0;
}

.burger-menu.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Overlay styles */
.nav-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(2px);
  background-color: rgba(0, 0, 0, 0.7); /* Overlay noir avec opacité */
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nav-overlay.active {
  display: flex;
}

.nav-overlay a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  margin: 15px 0;
}

/* Bouton pour fermer l'overlay */
.nav-overlay .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 3;
}

/* Responsive pour activer le burger menu */
@media (max-width: 1024px) {
  .burger-menu {
    display: flex; /* Affiche le burger menu */
    margin-left: auto;
  }

  .nav-links {
    display: none; /* Masque les liens dans la barre de navigation */
  }

  .nav-overlay a {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .burger-menu {
    display: flex; /* Affiche le burger menu */
    margin-left: auto;
  }

  .nav-links {
    display: none; /* Masque les liens dans la barre de navigation */
  }

  .nav-overlay a {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .burger-menu {
    width: 30px; /* Taille ajustée pour petits écrans */
    height: 24px;
  }

  .burger-menu span {
    height: 3px;
  }

  .nav-overlay a {
    font-size: 1.2rem;
  }
}

/* Barre de navigation alignée horizontalement */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Espace entre le logo et les liens */
  padding: 0 178px;
  position: absolute;
  width: 100%;
  top: 50px; /* Ajustez selon vos besoins */
  z-index: 2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease-out;
  margin-left: 20px; /* Espacement entre les liens */
  white-space: nowrap;
}

.navbar a:hover {
  color: #12c8a1;
}

/* Style spécifique pour le lien Réserver ma consultation */
.nav-links .reservit {
  font-size: 1.1rem;
  transition: all 0.3s ease-out;
  border-radius: 25px;
  padding: 10px;
  border: solid #6fffdd 2px;
  box-shadow: 0px 0px 14px #12c8a1;
}

.nav-links .reservit:hover {
  border: solid #ffabf0 2px;
  color: white;
  box-shadow: 0px 0px 14px #ca00a5;
}

/* Logo de la navigation */
.navbar .logo {
  margin-right: auto; /* Pousse le logo complètement à gauche */
}

.navbar .logo img {
  height: 50px; /* Taille du logo */
}

@media (max-width: 1024px) {
  .navbar {
    padding: 0 178px 0 178px;
    flex-direction: column;
    align-items: center;
  }

  .navbar a {
    margin-left: 0;
    margin-bottom: 10px;
    font-size: 0.9rem;
  }

  .nav-links {
    display: none;
  }

  .nav-links a {
    flex-direction: column;
    display: flex;
    align-items: center;
  }
  
  .nav-overlay a:hover {
    color: #009a93;
  }

  .navbar .logo img {
    height: 50px;
  }

  header .bouton a {
    font-size: 1.25rem;
    padding: 10px 20px;
    border-radius: 30px;
  }
}

/* Responsive Accueil */ 
@media (max-width: 1024px) {
  header .cinemagraphe {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 30px 0 30px;
    flex-direction: column;
    align-items: center;
  }

  .navbar a {
    margin-left: 0;
    margin-bottom: 10px;
    font-size: 0.9rem;
  }

  .nav-links {
    display: none;
  }

  .nav-links a {
    flex-direction: column;
    display: flex;
    align-items: center;
  }
  
  .nav-overlay a:hover {
    color: #009a93;
  }

  .navbar .logo img {
    height: 50px;
  }

  header .bouton a {
    font-size: 1rem;
    width: fit-content; /* Assurez-vous que la largeur s'adapte au contenu */
    position: absolute; /* Garde la position absolue pour le positionnement vertical */
    top: 75%; /* Garde la position verticale */
    left: 50%; /* Positionne le centre du conteneur au milieu */
    transform: translateX(-50%); /* Déplace le conteneur de la moitié de sa largeur vers la gauche pour le centrer */
  }

  header .cinemagraphe {
    display: none;
  }

  header .cinema-vertical {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0px 25px;
  }

  .navbar a {
    font-size: 0.9rem;
  }

  .navbar .logo img {
    height: 50px;
  }

  header .bouton a {
    font-size: 1rem;
  }
} 

/* Section Introduction */
.intro-section {
  display: block;
  justify-content: center;
  align-items: center;
  background-image: url('../media/fond_icone.png');
  background-size: cover;
  min-height: 30vh;
  padding: 50px 178px;
  min-width: 50%;
}

.intro-content {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  width: 100%;
  margin: 40px 0 40px 0;
}

.intro-title h1 {
  padding: 0 0 0 20px;
  display: block;
  font-size: 3rem;
  text-align: left;
  font-family: 'bc-alphapipe';
  font-style: normal;
  font-weight: 400;
  color: white;
  margin-bottom: 5px;
  position: relative;
}

.intro-content h2 {
  font-size: 2rem;
  font-family: 'Fredoka', sans-serif;
  font-weight: 400;
  margin: 0px 0 5px 0;
  color: white;
}

.advantage p {
  margin: 0 0 20px 0;
} 

.advantage {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  padding: 20px;
  border-radius: 25px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(6, 92, 85, 0.2);
}

.icon-advantage {
  width: auto;
  height: 100px;
  margin-bottom: 10px;
}

/* icon cible */
.icon-cible {
  width: auto;
  height: auto;
}

.st0 {
  stroke: #12c8a1;
  stroke-width: 2px;
}

.st0, .st1 {
  stroke-miterlimit: 10;
}

.st0, .st1, .st2 {
  fill: none;
}

.st3 {
  fill: #fff;
}

.st4 {
  fill: #12c8a1;
}

.st1, .st2 {
  stroke: #fff;
  stroke-linecap: round;
  stroke-width: .75px;
}

.st2 {
  stroke-linejoin: round;
}

.icon-cible .circle-center {
  fill: #12c8a1;
  stroke: none;
}

.icon-cible .lettre {
  fill: white;
  stroke: none;
}

/*fin icone cible*/

.intro-content h3 {
  text-align: center;
  font-size: 1.5rem;
  font-family: 'bc-alphapipe', sans-serif;
  font-weight: 350;
  color: white;
  line-height: 1.6;
  margin: 0 auto;
}

/* Responsive adjustments for Introduction */
@media (max-width: 1024px) {
  .intro-section {
   min-height: 30vh;
   padding: 70px 140px;
  }
}

@media (max-width: 768px) {
  .intro-section {
    padding: 50px 10px;
  }

  .intro-title h1 {
    font-size: 2rem;
    padding: 0 0 0 20px;
    margin: 0 0 15px;
  }
  
  .intro-content h2 {
    font-size: 1.6rem;
  }

  .intro-content h3 {
    font-size: 1.3rem;
    max-width: 80%;
  }

  .intro-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .intro-section {
    padding: 30px 5px;
  }

  .intro-content h1 {
    font-size: 1rem;
    padding: 15px;
  }

  .intro-content h2 {
    font-size: 1.5rem;
  }

  .intro-content h3 {
    font-size: 1.2rem;
    max-width: 80%;
  }

  .icon-advantage {
    width: auto;
    height: 64px;
    margin-bottom: 10px;
  }

  .icon-cible {
    width: auto;
    height: 120px;
  }
}

/* Section service */
#services-section {
  min-height: 75vh;
  padding: 70px 178px;
  background-image: url("../media/Pookie_2.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: block;
}

.services-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  width: 100%;
  margin: 40px 0 40px 0;
}

.section-title h1 {
  padding: 0 0 0 20px;
  display: block;
  font-size: 3rem;
  text-align: left;
  font-family: 'bc-alphapipe';
  font-style: normal;
  font-weight: 400;
  color: white;
  margin-bottom: 5px;
  position: relative;
}

.section-title h2 {
  font-family: 'Fredoka', sans serif;
  font-size: 2rem;
  font-weight: 350;
  margin-top: -1rem;
  padding-left: 180px;
  position: relative;
}

.section-title p {
  padding: 20px 0 10px 20px;
  font-size: 1.1rem;
  text-align: left;
  max-width: 60%;
  display: block;
}

.main-label {
  font-size: 2rem;
  font-family: 'Fredoka', sans-serif;
  font-weight: 400;
  margin: 0px 0 30px 0;
  color: white;
}

.service-block .bonus {
  margin-bottom: 30px;
  margin-top: -1.25rem;
  text-align: center;
}

.service-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  padding: 20px;
  border-radius: 25px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(6, 92, 85, 0.2);
}

.main-icon {
  width: 40%;
  height: auto;
  margin-bottom: 10px;
}

.sub-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.sub-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  color: white;
  width: auto;
}

.sub-icon img {
  width: 40px;
  height: auto;
  transition: transform 0.3s ease;
  margin-bottom: 5px;
}

.sub-icon img:hover {
  transform: scale(1.1);
}

.cta-button2 {
  font-family: 'fredoka', sans-serif;
  padding: 10px 20px;
  color: white;
  border: solid #6fffdd 2px;
  box-shadow: 0px 0px 14px #12c8a1;
  border-radius: 25px;
  font-size: 1.25rem;
  transition: all 0.3s ease-out;
  position: relative;
  background-color: rgba(0, 0, 0, 0.1);
  display: inline-block;
  margin: 40px auto 0 auto;
  text-decoration: none;
}

.cta-button2:hover {
  border: solid 2px #ffabf0;
  box-shadow: 0px 0px 14px #ca00a5;
  cursor: pointer;
}

.bouton2 {
  text-align: center;
}

/* Responsive adjustments for Services */
@media (max-width: 1024px) {
  #services-section {
    padding: 70px 140px;
  }
  .services-text {
    flex: 1;
    text-align: left;
    min-width: 60%;
  }

  .section-title p {
    max-width: 70%;
  }
}

@media (max-width: 768px) {
  #services-section {
    padding: 50px 10px;
  }

  #services-section h1 {
    font-size: 2rem;
    padding: 0 0 0 20px;
    margin: 0 0 15px;
  }

  .section-title h2 {
    font-size: 1.5rem;
    margin-top: -1.5rem;
    padding-left: 125px;
  }

  .section-title p {
    font-size: 1rem;
    margin: 20px 20px 20px 15px;
    
  }

  .main-label {
    font-size: 1.6rem;
    font-family: 'Fredoka', sans-serif;
    font-weight: 350;
  }

  .icon-item {
    flex: 1 1 calc(33.333% - 20px); /* 3 services par ligne sur tablettes */
    max-width: 150px;
    text-align: center;
  }

  #services-section .icon-item span {
    font-size: 1rem;
  }

  .services-icons {
    gap: 50px;
    display: flex; 
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .icon-item svg {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
  }

  #services-section p {
    font-size: 1rem;
    padding: 0 5px 0 5px;
  }

  .cta-button2 {
    font-size: 1rem;
    max-width: 90%;
  }
}
  
@media (max-width: 480px) {
  #services-section {
    padding: 30px 5px;
  }

  #services-section h1 {
    font-size: 2rem;
    padding: 0 0 0 20px;
  }

  .section-title p {
    margin: 20px 20px 20px 0;
    max-width: 90%;
  }

  .main-label {
    font-size: 1.5rem;
  }

  .services-container {
    padding: 10px;
  }  

  #services-section .icon-item {
    flex: 1 1 100%; /* 1 service par ligne sur très petits écrans */
    padding: 15px;
  }

  .sub-icon span {
    font-size: 0.9rem;
  }

  .services-icons {
    gap: 20px;
  }

  .icon-item svg {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 10px;
  }

  #services-section  p {
    font-size: 1rem;
    padding: 0 15px 0 15px;
    width: 100%;
  }

  .cta-button2 {
    max-width: 80%;
  }
}

/* Section Processus */
.process-section {
  margin: 0;
  padding: 70px 178px;
  background-color: #002020;
  text-align: center;
  min-height: 50vh;
  display: flex;
  justify-content: left;
  align-items: center;
}

.process-header h1 {
  font-size: 3rem;
  text-align: left;
  color: white;
  margin-bottom: 5px;
  padding-left: 20px;
}

.process-section h2 {
  padding: 10px 20px;
  margin-bottom: 40px;
  border: none;
  text-align: left;
  color: white;
  font-weight: 400;
  font-family: 'bc-alphapipe', sans-serif;
  font-size: 2rem;
}

/* Contenu des étapes */
.process-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 100px;
}

.tab-content {
  display: none;
  max-width: 100%;
}

.tab-content.active {
  display: flex;
  flex-wrap: wrap; /* Permet le passage à la ligne si nécessaire sur des écrans étroits */
  justify-content: space-between;
  gap: 30px; /* Espace entre les étapes */
}

.icon-step-consult {
  width: 100px;
  height: 100px;
  margin-top: 15px;
}

.icon-step-tournage {
  width: auto;
  height: 100px;
  margin-top: 15px;
}

.icon-step-livraison {
  width: 100px;
  height: 100px;
  margin-top: 15px;
}

.step {
  flex: 1 1 calc(25% - 20px); 
  padding: 20px;
  box-sizing: border-box;
  display: flex; /* Ajout pour aligner le contenu verticalement par défaut */
  flex-direction: column; /* Ajout pour aligner le contenu verticalement par défaut */
  justify-content: center; /* Ajout pour centrer le contenu verticalement par défaut */
  align-items: center;   /* Ajout pour centrer le contenu horizontalement par défaut */
}

.step h3 {
  margin-top: 0;
  font-size: 1.5rem;
  font-family: 'bc-alphapipe', sans-serif;
  font-weight: 400;
  text-align: left; /* Peut-être centrer pour la carte ? */
  color: white;
  margin-bottom: 30px;
  text-align: center; /* Centrer le titre dans la carte */
}

.process-content .bouton {
  margin-top: 20px;
}

.process-content .cta-button2 {
  padding: 10px 20px;
  border: solid #6fffdd 2px;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 1.25rem;
  box-shadow: 0px 0px 14px #12c8a1;
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
}

.process-content .cta-button2:hover {
  border: solid #ffabf0 2px;
  box-shadow: 0px 0px 14px #ff01d0;
  color: white;
}

/* Réagencement pour les petits écrans */
@media (max-width: 1024px) {
  .process-section {
    padding: 70px 140px
  }

  .step {
    min-width: 350px;
    padding: 5px;
  }

  .process-content {
    gap: 30px;
  }

  .process-content .bouton {
    margin-top: 20px;
    }

  .process-content .cta-button2 {
    font-size: 1.25rem;
    padding: 10px 20px;
    border-radius: 30px;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 50px 10px;
  }

.tab-content.active {
    flex-wrap: wrap; /* Permet de passer à la ligne */
    justify-content: left; /* Centre les étapes sur petit écran */
  }

  .process-section .step {
    flex: 1 1 100%; /* 1 étape par ligne sur mobiles */
  } 

  .process-header h1 {
    font-size: 2rem;
  }

  .process-section h2 {
    font-size: 1.5rem;
    text-align: left;
  }

  .process-section .step h3 {
    font-size: 1.2rem;
  }

  .process-content .cta-button2 {
  font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .process-section {
    padding: 30px 5px 30px;
  }

  .process-header h1 {
    font-size: 2rem;
}

.process-content {
  gap: 40px;
}

  .step {
    flex: 1 1 100%; /* Chaque étape occupe toute la largeur */
  }

  .process-section .step h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }

  .icon-step-consult {
    width: auto;
    height: 84px;
  }
  
  .icon-step-tournage {
    width: auto;
    height: 84px;
  }
  
  .icon-step-livraison {
    width: auto;
    height: 84px;
  }

  .process-content .bouton {
    margin-bottom: 50px;
  }

  .process-content .cta-button2 {
    font-size: 1rem;
  }
}

  /* Section Portfolio */
  #project-section {
    padding: 70px 178px;
    text-align: left;
    min-height: 40vh;
    background-image: url('../media/fond_port.png');
    background-size: cover;
  }
  
  #project-section h1 {
    padding-left: 20px;
    font-size: 3rem;
    margin-bottom: 30px;
    color: white;
    text-align: left;
  }

  .project {
    padding: 20px 0 10px 20px;
    font-size: 1.1rem;
    text-align: left;
    max-width: 60%;
    display: block;
  }

  #project-section .cta-button2 {
    padding: 10px 20px;
    margin: 20px;
    border: solid #6fffdd 2px;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 1.25rem;
    box-shadow: 0px 0px 14px #12c8a1;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
  }
  
  #project-section .cta-button2:hover {
    border: solid #ffabf0 2px;
    box-shadow: 0px 0px 14px #ff01d0;
    color: white;
  }

  .licence {
    font-family:'Fredoka', 'sans-serif';
    font-size: 1.1rem;
    text-align: center;
  }
  
  .creativecommons {
    text-decoration: none;
    color:#12c8a1;
    transition: color 0.3s ease-out;
  }
  
  .creativecommons:hover {
    color: #FF42DC;
    cursor: pointer;
  }

/* Media Query pour tablettes */
@media (max-width: 1024px) {
  #project-section{
    padding: 70px 140px;
  }

  #project-section .cta-button2 {
    font-size: 1.25rem;
    padding: 10px 20px;
    border-radius: 30px;
  }
}

@media (max-width: 768px) {
  #project-section {
    padding: 50px 10px;
  }

  #project-section h1 {
    font-size: 2rem;
  }
  
  #project-section .cta-button2 {
    font-size: 1rem;
  }

  .licence {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}

/* Media Query pour mobiles (max-width: 420px) */
@media (max-width: 480px) {
  #project-section {
    padding: 30px 5px;
  }

  #project-section h1 {
    font-size: 2rem;
  }

  #project-section .cta-button2 {
    font-size: 1rem;
    margin: 15px;
  }

  .licence {
    font-size: 0.9rem;
  }
}

/* Contact Section */
/* Main Content */
.contact-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
  padding: 70px 5px;
  background-image: url('../media/fond_contact.png');
  background-size: cover;
}

.contact-header h3 {
  margin-bottom: 100px;
  font-size: 1.2rem;
  font-weight: 300;
  font-family: 'Fredoka', 'sans-serif';
}

/* Store Info Section */
#contact {
  text-align: center;
}

#contact h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#contact p {
  margin-bottom: 50px;
}

/* Lien email */
.contact-info a {
  text-decoration: none;
  color: #12c8a1;
  transition: color 0.5s ease;
}

.contact-info a:hover {
  color: #FF42DC;
}

/* Icônes dans la section Contact */
.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 100px; /* Espace entre l'icône et le texte */
}

.info-item {
  text-align: center;
}

.info-item h2 {
  font-family: 'bc-alphapipe', sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.info-item p {
  line-height: 1.5;
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: white;
}

.contact-info .icon {
  width: 64px; /* Taille réduite pour un rendu plus propre */
  height: 64px;
  margin-bottom: 15px;
  object-fit: contain; /* Assure que l'image garde ses proportions */
}

/* Conteneur des icônes sociales */
.social-icons-contact {
  display: flex;
  justify-content: center;
  align-content: center;
  margin-top: 50px;
  gap: 20px;
}

.social-icons-contact svg {
  fill: none;
  stroke: #6fffdd;
  stroke-miterlimit: 10;
  stroke-width: 2px;
  height: 28px;
  width: 28px;
  transition: color 0.5s ease-out;
}

.social-icons-contact a svg {
  height: 28px;
  width: 28px;
  transition: filter 0.5s ease-out; /* Ajouter la transition pour la couleur de remplissage */
  filter: drop-shadow(0 0 3px #6fffdd) drop-shadow(0 0 7px #12c8a1);
  cursor: pointer; /* Indiquer que c'est cliquable */
}

.social-icons-contact a:hover svg {
  stroke: #ffabf0;
  filter:  drop-shadow(0 0 3px #ffabf0) drop-shadow(0 0 7px #ca00a5); /* Effet néon au survol */
  /* Vous pouvez aussi changer le fill ici si vous ne le faites pas sur les paths */
  /* fill: #ffabf0; */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
    padding: 70px 20px;
  }

  .contact-header h3 {
    margin-bottom: 100px;
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    padding: 50px 10px;
  }

  .contact-header h3 {
    margin-bottom: 20px;
    font-size: 1rem;
  }

  .info-item {
    padding: 30px;
  }

  #contact h1 {
    font-size: 2rem;
  }

  #contact p {
    margin-bottom: 30px;
    font-size: 1rem;
  }

  .contact-info {
    gap: 0;
  }

  .info-item h2 {
    font-size: 1.3rem;
  }

  .info-item p {
   font-size: 1rem;
  }

  .social-icons-contact {
    padding: 0px 20px;
    gap: 20px;
  }

  .social-icons-contact svg {
    height: 26px;
    width: 26px;
  }
}

@media (max-width: 480px) {
  .contact-content {
    flex-direction: column;
    padding: 30px 5px;
  }

  .contact-header h3 {
    margin-bottom: 20px;
    font-size: 1rem;
  }

  #contact h1 {
    font-size: 2rem;
  }

  .info-item p {
    font-size: 1rem;
   }

   .social-icons-contact {
    padding: 15px;
  }
}

/*Span detail*/
.blue {
  color: #12c8a1;
}

/*Span Bold*/
.bold {
  font-weight: 600;
}

/* Span blue et grass*/
.blue-grass {
  color: #12c8a1;
  font-weight: 400;
}

/* Footer */
.footer {
  padding: 20px;
  background-color: #111;
  position: relative;
  bottom: 0;
  width: 100%;
}

.footer p {
  text-align: center;
  font-size: 1rem;
  font-family: 'Fredoka', sans-serif;
  color: white;
}

@media (max-width: 768px) {
  .footer p {
    text-align: center;
    font-size: 1rem;
  }
}
  
@media (max-width: 480px) {
  .footer p {
    text-align: center;
    font-size: 0.9rem;
  }
}