@charset "UTF-8";
.header {
  background-color: transparent;
  position: fixed;
  padding: 0 20px;
  width: 100%;
  z-index: 100;
  transition: all 0.5s ease-in-out;
}
.header.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  transition: all 0.5s ease-in-out;
}
.header.scrolled .navbar .professionalIdentity a img {
  width: 110px;
  height: 110px;
}
.header.scrolled .navbar .professionalIdentity .clock-section {
  border: solid 1px var(--secondary-color);
  font-size: 1.3rem;
  padding: 5px 20px;
}
.header.scrolled .navbar .toggle-switch {
  position: relative;
  width: 150px;
  height: 50px;
}
.header.scrolled .navbar .switch-label {
  position: absolute;
  width: 100px;
  height: 50px;
  background-color: var(--dark);
  border-radius: 25px;
  cursor: pointer;
  border: 1px solid var(--secondary-color);
}
.header.scrolled .navbar .checkbox {
  position: absolute;
  display: none;
}
.header.scrolled .navbar .slider {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  transition: all 0.4s ease-in-out;
}
.header.scrolled .navbar .checkbox:checked ~ .slider {
  background-color: var(--light);
}
.header.scrolled .navbar .slider::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}
.header.scrolled .navbar .checkbox:checked ~ .slider::before {
  transform: translateX(50px);
}
.header.scrolled .navbar .nav-links .callToActionHeader {
  margin-left: 5rem;
}
.header.scrolled .navbar .nav-links .callToActionHeader .cta {
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s all ease-in-out;
}
.header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .navbar .professionalIdentity {
  display: flex;
  padding: 0 20px;
  justify-content: center;
  align-items: center;
}
.header .navbar .professionalIdentity a {
  text-decoration: none;
  width: 100%;
}
.header .navbar .professionalIdentity a img {
  width: 150px;
  height: 150px;
}
.header .navbar .professionalIdentity .clock-section {
  border: solid 2px var(--secondary-color) inset;
  border-radius: 10px;
  text-align: center;
  width: 100%;
  font-size: 1.8rem;
  padding: 5px 30px;
  background-color: transparent;
  color: var(--primary-color);
  box-shadow: 0 4px 15px var(--secondary-color);
  position: relative;
}
.header .navbar .toggle-switch {
  border: solid 3px var(--secondary-color) inset;
  position: relative;
  width: 100px;
  height: 50px;
  --light: #eae7e7;
  --dark: #090a29;
}
.header .navbar .switch-label {
  position: absolute;
  width: 100%;
  height: 50px;
  background-color: var(--dark);
  border-radius: 25px;
  cursor: pointer;
  border: 3px solid var(--dark);
}
.header .navbar .checkbox {
  position: absolute;
  display: none;
}
.header .navbar .slider {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  transition: 0.3s;
}
.header .navbar .checkbox:checked ~ .slider {
  background-color: var(--light);
}
.header .navbar .slider::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  box-shadow: inset 12px -4px 0px 0px var(--light);
  background-color: var(--dark);
  transition: all 0.5s ease-in-out;
}
.header .navbar .checkbox:checked ~ .slider::before {
  transform: translateX(50px);
  background-color: var(--dark);
  box-shadow: none;
}
.header .navbar .nav-links {
  display: flex;
  list-style: none;
}
.header .navbar .nav-links li {
  margin: 0 20px;
  position: relative;
}
.header .navbar .nav-links li a {
  text-decoration: none;
  color: var(--primary-color);
  padding: 10px 15px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.header .navbar .nav-links li a:hover {
  color: var(--tierce-color);
  font-weight: bold;
  background-color: var(--color-for-hover);
}
.header .navbar .nav-links li.active a {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-bg));
  color: var(--primary-color);
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 255, 136, 0.3), 0 0 20px rgba(0, 255, 136, 0.5);
  border-radius: 10px;
  position: relative;
}
.header .navbar .nav-links .callToActionHeader {
  padding: 0 20px;
  margin-left: 5rem;
}
.header .navbar .nav-links .callToActionHeader .cta {
  background-color: var(--secondary-bg);
  color: var(--tierce-color);
  box-shadow: 0 8px 20px var(--secondary-color);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s all ease-in-out;
}
.header .navbar .nav-links .callToActionHeader .cta:hover {
  background-color: var(--color-for-hover);
  box-shadow: 0 8px 20px var(--color-for-hover);
  color: --tierce-color;
}
.header .navbar .burger-menu {
  display: none;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a2a4a, #00243d, #001226); /* Bleu profond */
  transition: background 1s ease-in-out;
  /* Éléments flottants avant et après*/
  /* Bulles animées */
  /* Contenur principal du texte + photo de moi */
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  top: -50%;
  bottom: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  animation: fadeIn 60s linear infinite;
  z-index: 1;
  opacity: 0.3;
}
.hero::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 80%);
  animation-duration: 30s;
}
.hero .bubble {
  position: absolute;
  bottom: -100px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: float 10s infinite ease-in-out;
  z-index: 1;
}
.hero .bubble:nth-child(2) {
  left: 20%;
  width: 60px;
  height: 60px;
  animation-duration: 12s;
  animation-delay: 2s;
}
.hero .bubble:nth-child(3) {
  left: 40%;
  width: 50px;
  height: 50px;
  animation-duration: 15s;
  animation-delay: 4s;
}
.hero .bubble:nth-child(4) {
  left: 60%;
  width: 70px;
  height: 70px;
  animation-duration: 8s;
  animation-delay: 1s;
}
.hero .bubble:nth-child(5) {
  left: 80%;
  width: 30px;
  height: 30px;
  animation-duration: 18s;
  animation-delay: 3s;
}
.hero .bubble:nth-child(6) {
  left: 10%;
  width: 50px;
  height: 50px;
  animation-duration: 20s;
  animation-delay: 2s;
}
.hero .bubble:nth-child(7) {
  left: 50%;
  width: 30px;
  height: 30px;
  animation-duration: 14s;
  animation-delay: 4s;
}
.hero .bubble:nth-child(8) {
  left: 75%;
  width: 60px;
  height: 60px;
  animation-duration: 22s;
  animation-delay: 1s;
}
.hero .bubble:nth-child(9) {
  left: 90%;
  width: 20px;
  height: 20px;
  animation-duration: 20s;
  animation-delay: 2s;
}
.hero .bubble:nth-child(10) {
  left: 25%;
  width: 70px;
  height: 70px;
  animation-duration: 25s;
  animation-delay: 4s;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem;
}
.hero .hero-content .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  /* Section Présentation */
  /* Section Image */
}
.hero .hero-content .content .presentation {
  flex: 1;
  text-align: center;
}
.hero .hero-content .content .presentation h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}
.hero .hero-content .content .presentation h1 .line {
  font-size: 1.5rem;
  display: block;
  padding-bottom: 1rem;
  color: var(--dark);
}
.hero .hero-content .content .presentation h1 .highlight {
  color: var(--secondary-bg);
  text-shadow: linear-gradient(135deg, var(--secondary-color), var(--primary-bg));
  animation: glow 2s infinite alternate;
}
.hero .hero-content .content .presentation .role {
  font-size: 1.5rem; /* Plus grand pour une présence affirmée */
  font-weight: 600; /* Texte légèrement plus audacieux */
  padding-bottom: 2rem;
  color: var(--dark);
  line-height: 1.8; /* Améliore la lisibilité */
  text-align: center; /* Centrage pour l’effet citation */
  position: relative;
}
.hero .hero-content .content .presentation .role::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: var(--secondary-bg);
  margin: 1rem 0;
  border-radius: 10px;
}
.hero .hero-content .content .presentation .email {
  padding-bottom: 2rem;
  font-size: 1.1rem;
  font-style: italic;
}
.hero .hero-content .content .presentation .skills {
  padding-bottom: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero .hero-content .content .presentation .skills li {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  list-style: none;
  color: var(--secondary-color);
  transition: all 0.4s ease-in-out;
  position: relative;
}
.hero .hero-content .content .presentation .skills li:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--secondary-color);
}
.hero .hero-content .content .presentation .skills .specialSkills {
  color: var(--secondary-color);
  padding: 0.5rem 1rem;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  animation: pulse 0.6s infinite alternate ease-in-out;
}
.hero .hero-content .content .presentation .skills .specialSkills::before {
  content: "📖 ";
  font-size: 0.9rem;
}
.hero .hero-content .content .presentation .skills .specialSkills:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--secondary-color);
}
.hero .hero-content .content .presentation .toggle-switch {
  display: none;
}
.hero .hero-content .content .presentation .cta {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 1rem;
  background-color: var(--secondary-bg);
  color: var(--tierce-color);
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 8px 20px var(--secondary-color);
}
.hero .hero-content .content .presentation .cta:hover {
  background-color: var(--color-for-hover);
  box-shadow: 0 8px 20px var(--color-for-hover);
  transform: translateY(-3px);
}
.hero .hero-content .content .pictureCreator {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .hero-content .content .pictureCreator .image-wrapper {
  position: relative;
  width: 350px;
  height: 350px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .hero-content .content .pictureCreator .image-wrapper img {
  width: 150%;
  height: 150%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.background-wrapper {
  background: linear-gradient(135deg, #001226, #0a2a4a);
}
.background-wrapper .projects {
  position: relative;
  padding: 3rem 1rem;
  text-align: center;
  /* Pop-up Overlay */
}
.background-wrapper .projects h2 {
  display: inline-block;
  padding-bottom: 1rem;
  font-size: 3rem;
  margin: 4rem 0;
  color: var(--secondary-color);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #00ff88, #0088ff);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  text-shadow: 0px 0px 15px var(--secondary-color);
  animation: glowPulse 2s infinite alternate ease-in-out;
}
.background-wrapper .projects h2::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 50%;
  height: 4px;
  background: linear-gradient(90deg, #00ff88, #0088ff);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--secondary-color);
}
.background-wrapper .projects .project-carousel {
  padding-top: 2rem;
  position: relative;
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
  height: 500px;
  display: flex;
  align-items: center;
}
.background-wrapper .projects .project-carousel .project-wrapper {
  display: flex;
  gap: 130px;
  will-change: transform;
  /*La propriété will-change fournit une indication au navigateur sur la propension d'un élément à changer 
  (afin que le navigateur puisse mettre en place les optimisations nécessaires avant que l'élément change 
  vraiment). Ce type d'optimisation permet d'augmenter la réactivité de la page en effectuant des calculs 
  (éventuellement coûteux) en prévision du changement.*/
}
.background-wrapper .projects .project-carousel .project-wrapper .project-card {
  position: relative;
  flex: 0 0 250px;
  border-radius: 12px;
  padding: 5px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.background-wrapper .projects .project-carousel .project-wrapper .project-card img {
  width: 95%;
  border-radius: 34px;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}
.background-wrapper .projects .project-carousel .project-wrapper .project-card img:hover {
  width: 97%;
}
.background-wrapper .projects .popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10;
  animation: fadeIn 0.7s ease-in-out;
  /* Pop-up Container */
}
.background-wrapper .projects .popup-overlay .popup {
  margin-top: 8rem;
  background-color: var(--primary-color);
  padding: 30px;
  border-radius: 15px;
  max-width: 700px;
  width: 80%;
  animation: slideUp 0.5s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  /* Pop-up Content */
}
.background-wrapper .projects .popup-overlay .popup .popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.background-wrapper .projects .popup-overlay .popup .popup-header .popup-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--tierce-color);
  text-align: center;
  flex-grow: 1;
}
.background-wrapper .projects .popup-overlay .popup .popup-header .close-popup {
  font-size: 3rem;
  color: var(--tierce-color);
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}
.background-wrapper .projects .popup-overlay .popup .popup-header .close-popup:hover {
  animation: rotateClose 0.4s ease-in-out;
}
.background-wrapper .projects .popup-overlay .popup .popup-content {
  padding-left: 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.background-wrapper .projects .popup-overlay .popup .popup-content .popup-image {
  max-width: 120px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.background-wrapper .projects .popup-overlay .popup .popup-content .popup-description {
  font-size: 1rem;
  color: #000;
  line-height: 1.6;
}
.background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: red;
}
.background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}
.background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos img:hover {
  transform: scale(1.2);
}
.background-wrapper .about {
  padding: 8rem 10%;
  text-align: center;
}
.background-wrapper .about .about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.background-wrapper .about .about-text {
  flex: 1;
  max-width: 600px;
  text-align: left;
}
.background-wrapper .about .about-text h2 {
  display: inline-block;
  padding-bottom: 1rem;
  font-size: 3rem;
  margin: 3rem 0;
  color: var(--secondary-color);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #00ff88, #0088ff);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  text-shadow: 0px 0px 15px var(--secondary-color);
  animation: glowPulse 2s infinite alternate ease-in-out;
}
.background-wrapper .about .about-text h2::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 50%;
  height: 4px;
  background: linear-gradient(90deg, #00ff88, #0088ff);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}
.background-wrapper .about .about-text p {
  font-size: 1.2rem;
  color: #ddd;
  line-height: 1.8;
  margin-top: 0.5rem;
  opacity: 0.9;
}
.background-wrapper .about .about-text strong {
  color: var(--secondary-color);
}
.background-wrapper .about .about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.background-wrapper .about .about-image img {
  width: 350px;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--secondary-color);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
  transition: transform 0.3s ease;
}
.background-wrapper .about .about-image img:hover {
  transform: scale(1.05);
}
.background-wrapper .contact {
  padding: 6rem 0;
  text-align: center;
  background-color: none;
}
.background-wrapper .contact h2 {
  display: inline-block;
  padding-bottom: 1rem;
  font-size: 3rem;
  margin: 4rem 0;
  color: var(--secondary-color);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #00ff88, #0088ff);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  text-shadow: 0px 0px 15px var(--secondary-color);
  animation: glowPulse 2s infinite alternate ease-in-out;
}
.background-wrapper .contact h2::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 50%;
  height: 4px;
  background: linear-gradient(90deg, #00ff88, #0088ff);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}
.background-wrapper .contact .contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 4rem auto;
  gap: 2rem;
  flex-wrap: wrap;
}
.background-wrapper .contact .contact-info {
  margin-top: 2rem;
  flex: 1;
  color: #fff;
  text-align: left;
  font-size: 1rem;
}
.background-wrapper .contact .contact-info p {
  margin-bottom: 0.8rem;
  padding: 0.3rem 0;
  font-weight: 500;
}
.background-wrapper .contact .contact-info a {
  color: darkred;
  text-decoration: none;
  transition: color 0.3s ease;
}
.background-wrapper .contact .contact-info a:hover {
  color: var(--secondary-color);
}
.background-wrapper .contact .contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 400px;
  width: 100%;
}
.background-wrapper .contact .input-group {
  position: relative;
}
.background-wrapper .contact .input-group input, .background-wrapper .contact .input-group textarea {
  width: 100%;
  padding: 10px 0;
  font-size: 1rem;
  color: white;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--tierce-color);
  outline: none;
  transition: border-color 0.3s ease;
}
.background-wrapper .contact .input-group textarea {
  resize: none;
  height: 80px;
}
.background-wrapper .contact .input-group label {
  position: absolute;
  left: 0;
  top: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: all 0.3s ease;
}
.background-wrapper .contact .input-group input:focus ~ label,
.background-wrapper .contact .input-group textarea:focus ~ label,
.background-wrapper .contact .input-group input:valid ~ label,
.background-wrapper .contact .input-group textarea:valid ~ label {
  top: -15px;
  font-size: 0.9rem;
  color: var(--secondary-color);
}
.background-wrapper .contact .cta {
  background: linear-gradient(135deg, #00ff88, #00cc88);
  margin-top: 1rem;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
}
.background-wrapper .contact .cta:hover {
  background: linear-gradient(135deg, #00cc88, #00ff88);
  transform: translateY(-2px);
}
.background-wrapper .footer {
  color: white;
  padding: 3rem 1.5rem;
  text-align: center;
}
.background-wrapper .footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1250px;
  margin: auto;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.background-wrapper .footer .footer-logo {
  text-align: left;
}
.background-wrapper .footer .footer-logo h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
}
.background-wrapper .footer .footer-logo p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: bold;
}
.background-wrapper .footer .footer-socials {
  display: flex;
  gap: 2rem;
}
.background-wrapper .footer .footer-socials .social-icon {
  font-size: 1.8rem;
  color: white;
  transition: transform 0.4s ease-in-out, color 0.4s ease-in-out;
}
.background-wrapper .footer .footer-socials .social-icon:hover {
  transform: scale(1.2);
}
.background-wrapper .footer .footer-socials .social-icon:hover:first-child {
  color: darkorange;
}
.background-wrapper .footer .footer-socials .social-icon:hover:nth-child(2) {
  color: darkslateblue;
}
.background-wrapper .footer .footer-socials .social-icon:hover:last-child {
  color: green;
}
.background-wrapper .footer .footer-bottom {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

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

:root {
  --primary-bg: #001F3F;
  --secondary-bg: #00FF88;
  --primary-color: #ffffff;
  --secondary-color: #00FF88;
  --tierce-color: #000000;
  --color-for-hover: beige;
  --primary-fonts: "Montserrat", sans-serif;
  --secondary-fonts: "Merriweather", sans-serif;
  --primary-bg-light: #ffb597;
  --primary-color-light: #ffb597;
  --secondary-color-light: #00FF88;
  --primary-bg-dark: #001F3F;
  --primary-color-dark: #ffffff;
  --secondary-color-dark: #00FF88;
}

/* Mode clair */
.light-mode {
  color: var(--tierce-color);
  /* 🎨 Arrière-plan principal */
  /* 📌 SECTION À PROPOS */
  /* 📌 SECTION CONTACT */
  /* 📌 SECTION FOOTER */
}
.light-mode .header.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
}
.light-mode .header.scrolled .navbar .professionalIdentity a img {
  width: 110px;
  height: 110px;
}
.light-mode .header.scrolled .navbar .professionalIdentity .clock-section {
  border: solid 1px var(--primary-bg-light);
  font-size: 1.3rem;
  padding: 5px 20px;
}
.light-mode .header.scrolled .navbar .toggle-switch {
  position: relative;
  width: 150px;
  height: 50px;
}
.light-mode .header.scrolled .navbar .switch-label {
  width: 100px;
  height: 50px;
  border: 1px solid var(--primary-bg-light);
}
.light-mode .header .navbar .professionalIdentity a {
  text-decoration: none;
  width: 100%;
}
.light-mode .header .navbar .professionalIdentity a img {
  width: 150px;
  height: 150px;
}
.light-mode .header .navbar .professionalIdentity .clock-section {
  border: solid 2px var(--primary-bg-light) inset;
  color: var(--primary-color);
  box-shadow: 0 4px 18px var(--primary-bg-light);
  position: relative;
}
.light-mode .header .navbar .professionalIdentity .clock-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.light-mode .header .navbar .toggle-switch {
  border: solid 3px var(--primary-bg-light) inset;
  position: relative;
  width: 100px;
  height: 50px;
  --light: #eae7e7;
  --dark: #090a29;
}
.light-mode .header .navbar .nav-links li.active a {
  background: linear-gradient(135deg, var(--primary-bg-light), var(--tierce-color));
  box-shadow: 0 0 10px rgba(255, 94, 77, 0.7), 0 0 30px rgb(255, 165, 133);
}
.light-mode .header .navbar .nav-links .callToActionHeader .cta {
  background-color: var(--primary-bg-light);
  color: var(--tierce-color);
  box-shadow: 0 8px 20px var(--primary-bg-light);
}
.light-mode .header .navbar .nav-links .callToActionHeader .cta:hover {
  background-color: var(--color-for-hover);
  box-shadow: 0 8px 20px var(--color-for-hover);
  color: --tierce-color;
}
.light-mode .header .navbar .burger-menu .bar {
  background: var(--primary-color-light);
}
.light-mode .header .navbar .burger-menu .bar::before, .light-mode .header .navbar .burger-menu .bar::after {
  background: var(--primary-color-light);
}
.light-mode .hero {
  background: linear-gradient(135deg, #96bce8, #75a4d4, #578bc0);
  /* ✨ Effets visuels flottants avant et après */
  /* 🔵 Bulles animées */
  /* 📌 Conteneur principal contenant le texte et la photo */
}
.light-mode .hero::before, .light-mode .hero::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 50%);
  opacity: 0.5;
}
.light-mode .hero::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 60%);
  animation-duration: 30s;
}
.light-mode .hero .bubble {
  background-color: rgba(255, 255, 255, 0.4);
}
.light-mode .hero .hero-content .content {
  /* 🎤 Section Présentation */
}
.light-mode .hero .hero-content .content .presentation {
  /* 🛠️ Liste des compétences */
  /* 📌 Bouton d'appel à l'action */
}
.light-mode .hero .hero-content .content .presentation h1 .highlight {
  color: var(--primary-bg-light);
  animation: glow-light 2s infinite alternate;
}
.light-mode .hero .hero-content .content .presentation .role::before {
  background-color: var(--primary-bg-light);
}
.light-mode .hero .hero-content .content .presentation .skills li {
  background: rgba(0, 0, 0, 0.7);
  color: var(--primary-color-light);
}
.light-mode .hero .hero-content .content .presentation .skills li:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--primary-bg-light);
}
.light-mode .hero .hero-content .content .presentation .skills .specialSkills {
  color: var(--primary-color-light);
  background: rgba(0, 0, 0, 0.7);
}
.light-mode .hero .hero-content .content .presentation .skills .specialSkills:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--primary-bg-light);
}
.light-mode .hero .hero-content .content .presentation .cta {
  background-color: var(--primary-bg-light);
  box-shadow: 0 8px 20px var(--primary-bg-light);
}
.light-mode .hero .hero-content .content .presentation .cta:hover {
  background-color: var(--color-for-hover);
  box-shadow: 0 8px 20px var(--color-for-hover);
  transform: translateY(-3px);
}
.light-mode .background-wrapper {
  background: linear-gradient(135deg, #96bce8, #75a4d4, #578bc0);
}
.light-mode .background-wrapper .projects h2 {
  display: inline-block;
  padding-bottom: 1rem;
  font-size: 3rem;
  margin: 4rem 0;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, #ffb597, #000000);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  animation: none;
}
.light-mode .background-wrapper .projects h2::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 50%;
  height: 4px;
  background: linear-gradient(179deg, #ffb597, #000000);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 181, 151, 0.7);
}
.light-mode .about .about-text h2 {
  display: inline-block;
  padding-bottom: 1rem;
  font-size: 3rem;
  margin: 3rem 0;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, #ffb597, #000000);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  animation: none;
}
.light-mode .about .about-text h2::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 50%;
  height: 4px;
  background: linear-gradient(179deg, #ffb597, #000000);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 181, 151, 0.7);
}
.light-mode .about .about-text p {
  font-size: 1.2rem;
  color: var(--tierce-color);
  line-height: 1.8;
  margin-top: 0.5rem;
  opacity: 0.9;
}
.light-mode .about .about-text strong {
  color: var(--primary-color-light);
}
.light-mode .about .about-image img {
  width: 350px;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--primary-color-light);
  box-shadow: 0 0 20px var(--primary-color-light);
  transition: transform 0.3s ease;
}
.light-mode .about .about-image img:hover {
  transform: scale(1.05);
}
.light-mode .contact h2 {
  display: inline-block;
  padding-bottom: 1rem;
  font-size: 3rem;
  margin: 4rem 0;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, #ffb597, #000000);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  animation: none;
}
.light-mode .contact h2::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 50%;
  height: 4px;
  background: linear-gradient(179deg, #ffb597, #000000);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 181, 151, 0.7);
}
.light-mode .contact .contact-info {
  margin-top: 2rem;
  flex: 1;
  color: var(--tierce-color);
  text-align: left;
  font-size: 1rem;
}
.light-mode .contact .input-group {
  position: relative;
}
.light-mode .contact .input-group input:focus ~ label,
.light-mode .contact .input-group textarea:focus ~ label,
.light-mode .contact .input-group input:valid ~ label,
.light-mode .contact .input-group textarea:valid ~ label {
  color: var(--primary-color-light);
}
.light-mode .contact .input-group input, .light-mode .contact .input-group textarea {
  color: var(--tierce-color);
}
.light-mode .contact .cta {
  background: linear-gradient(135deg, #ffb597, #fdb193);
  margin-top: 1rem;
  color: var(--tierce-color);
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
}
.light-mode .contact .cta:hover {
  background: linear-gradient(135deg, #fdb193, #ffb597);
  transform: translateY(-2px);
}
.light-mode .footer {
  color: var(--tierce-color);
}
.light-mode .footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1250px;
  margin: auto;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--primary-bg-light);
}
.light-mode .footer .footer-logo {
  text-align: left;
}
.light-mode .footer .footer-logo h3 {
  font-size: 1.8rem;
  color: var(--primary-color-light);
}
.light-mode .footer .footer-logo p {
  font-size: 1rem;
  color: var(--tierce-color);
  font-weight: bold;
}
.light-mode .footer .footer-socials .social-icon {
  font-size: 1.8rem;
  color: var(--tierce-color);
  transition: transform 0.4s ease-in-out, color 0.4s ease-in-out;
}
.light-mode .footer .footer-socials .social-icon:hover {
  transform: scale(1.2);
}
.light-mode .footer .footer-socials .social-icon:hover:first-child {
  color: darkorange;
}
.light-mode .footer .footer-socials .social-icon:hover:nth-child(2) {
  color: darkslateblue;
}
.light-mode .footer .footer-socials .social-icon:hover:last-child {
  color: green;
}
.light-mode .footer .footer-bottom {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--tierce-color);
  text-align: center;
}

body {
  font-family: var(--primary-fonts);
  background-color: var(--primary-bg);
  color: var(--primary-color);
  line-height: 1.6;
}

/* Désactiver le défilement lorsque la pop-up est active */
body.popup-active {
  overflow: hidden;
  height: 100%;
  touch-action: none; /* Empêche le scroll tactile */
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes rotateClose {
  0% {
    transform: rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: rotate(90deg);
    opacity: 0.5;
  }
  100% {
    transform: rotate(180deg);
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(200px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Animation des bulles */
@keyframes float {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-200px) scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-400px) scale(0.8);
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
  }
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}
@keyframes glow {
  0% {
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.7);
  }
  100% {
    text-shadow: 0 0 30px rgb(0, 255, 204);
  }
}
@keyframes glow-light {
  0% {
    text-shadow: 0 0 10px rgba(255, 94, 77, 0.7);
  }
  100% {
    text-shadow: 0 0 30px rgb(255, 165, 133);
  }
}
@keyframes pulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.02);
  }
}
@keyframes glowPulse {
  0% {
    text-shadow: 0px 0px 10px rgba(0, 255, 136, 0.4);
  }
  100% {
    text-shadow: 0px 0px 25px rgba(0, 255, 136, 0.9);
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* ----------------------RESPONSIVE MODE MOYEN ECRAN
EN DESSOUS DE 1400 PIXELS, LES ELEMENTS S'ACTIVERONT
*/
@media screen and (max-width: 1400px) {
  .header {
    padding: 0 15px;
  }
  .header .navbar .professionalIdentity a {
    width: 100%;
  }
  .header .navbar .professionalIdentity a img {
    width: 130px;
    height: 130px;
  }
  .header .navbar .professionalIdentity .clock-section {
    font-size: 1.5rem;
    padding: 5px 25px;
  }
  .header .navbar .toggle-switch {
    width: 100px;
    height: 45px;
  }
  .header .navbar .nav-links li {
    margin: 0 10px;
  }
  .header .navbar .nav-links li a {
    padding: 8px 12px;
  }
  .header .navbar .nav-links .callToActionHeader {
    padding: 0 10px;
    margin-left: 2rem;
  }
  .header .navbar .nav-links .callToActionHeader .cta {
    padding: 8px 15px;
  }
  .header.scrolled .navbar .professionalIdentity a img {
    width: 100px;
    height: 100px;
  }
  .header.scrolled .navbar .professionalIdentity .clock-section {
    font-size: 1.2rem;
  }
  .hero {
    /* Bulles animées */
  }
  .hero .bubble:nth-child(2) {
    left: 20%;
    width: 50px;
    height: 50px;
    animation-duration: 12s;
    animation-delay: 2s;
  }
  .hero .bubble:nth-child(3) {
    left: 40%;
    width: 40px;
    height: 40px;
    animation-duration: 15s;
    animation-delay: 4s;
  }
  .hero .bubble:nth-child(4) {
    left: 60%;
    width: 50px;
    height: 50px;
    animation-duration: 8s;
    animation-delay: 1s;
  }
  .hero .bubble:nth-child(5) {
    left: 80%;
    width: 25px;
    height: 25px;
    animation-duration: 18s;
    animation-delay: 3s;
  }
  .hero .bubble:nth-child(6) {
    left: 10%;
    width: 40px;
    height: 40px;
    animation-duration: 20s;
    animation-delay: 2s;
  }
  .hero .bubble:nth-child(7) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-duration: 14s;
    animation-delay: 4s;
  }
  .hero .bubble:nth-child(8) {
    left: 75%;
    width: 50px;
    height: 50px;
    animation-duration: 22s;
    animation-delay: 1s;
  }
  .hero .bubble:nth-child(9) {
    left: 90%;
    width: 20px;
    height: 20px;
    animation-duration: 20s;
    animation-delay: 2s;
  }
  .hero .bubble:nth-child(10) {
    left: 25%;
    width: 60px;
    height: 60px;
    animation-duration: 25s;
    animation-delay: 4s;
  }
  .hero .hero-content {
    padding: 1.5rem;
  }
  .hero .hero-content .content {
    justify-content: space-around;
    gap: 2rem;
    /* Section Présentation */
    /* Section Image */
  }
  .hero .hero-content .content .presentation h1 {
    font-size: 3rem;
  }
  .hero .hero-content .content .presentation h1 .line {
    font-size: 1.4rem;
  }
  .hero .hero-content .content .presentation .role {
    font-size: 1.3rem;
    padding-bottom: 1.5rem;
  }
  .hero .hero-content .content .presentation .email {
    font-size: 1rem;
  }
  .hero .hero-content .content .presentation .skills {
    gap: 0.8rem;
  }
  .hero .hero-content .content .presentation .skills li {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
  .hero .hero-content .content .presentation .cta {
    padding: 8px 18px;
  }
  .hero .hero-content .content .pictureCreator .image-wrapper {
    width: 350px;
    height: 350px;
  }
  .hero .hero-content .content .pictureCreator .image-wrapper img {
    width: 130%;
    height: 130%;
  }
  .background-wrapper .projects {
    /* Pop-up Overlay */
  }
  .background-wrapper .projects h2 {
    font-size: 2.7rem;
  }
  .background-wrapper .projects h2::before {
    height: 3px;
  }
  .background-wrapper .projects .project-carousel {
    width: 80%;
    height: 500px;
  }
  .background-wrapper .projects .project-carousel .project-wrapper .project-card {
    flex: 0 0 230px;
  }
  .background-wrapper .projects .popup-overlay {
    /* Pop-up Container */
  }
  .background-wrapper .projects .popup-overlay .popup {
    max-width: 650px;
    width: 70%;
    /* Pop-up Content */
  }
  .background-wrapper .projects .popup-overlay .popup .popup-header .popup-title {
    font-size: 1.6rem;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-image {
    max-width: 115px;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos {
    gap: 20px;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos img {
    width: 35px;
    height: 35px;
  }
  .background-wrapper .about .about-text {
    max-width: 700px;
  }
  .background-wrapper .about .about-text h2 {
    font-size: 2.7rem;
  }
  .background-wrapper .about .about-text h2::before {
    height: 3px;
  }
  .background-wrapper .about .about-text p {
    font-size: 1rem;
    line-height: 2;
  }
  .background-wrapper .about .about-image {
    flex: 1;
  }
  .background-wrapper .about .about-image img {
    width: 330px;
    height: 330px;
  }
  .background-wrapper .contact h2 {
    font-size: 2.7rem;
  }
  .background-wrapper .contact h2::before {
    height: 3px;
  }
  .background-wrapper .contact .contact-container {
    max-width: 900px;
  }
  .background-wrapper .contact .input-group textarea {
    height: 100px;
  }
  .background-wrapper .footer .footer-container {
    max-width: 1100px;
  }
  .background-wrapper .footer .footer-logo h3 {
    font-size: 1.7rem;
  }
  .background-wrapper .footer .footer-socials {
    gap: 3rem;
  }
  .background-wrapper .footer .footer-socials .social-icon {
    font-size: 1.7rem;
  }
  .light-mode .header {
    padding: 0 15px;
  }
  .light-mode .header .navbar .professionalIdentity a {
    width: 100%;
  }
  .light-mode .header .navbar .professionalIdentity a img {
    width: 130px;
    height: 130px;
  }
  .light-mode .header .navbar .professionalIdentity .clock-section {
    font-size: 1.5rem;
    padding: 5px 25px;
  }
  .light-mode .header .navbar .toggle-switch {
    width: 100px;
    height: 45px;
  }
  .light-mode .header .navbar .nav-links li {
    margin: 0 10px;
  }
  .light-mode .header .navbar .nav-links li a {
    padding: 8px 12px;
  }
  .light-mode .header.scrolled .navbar .professionalIdentity a img {
    width: 100px;
    height: 100px;
  }
  .light-mode .header.scrolled .navbar .professionalIdentity .clock-section {
    font-size: 1.2rem;
  }
  .light-mode .background-wrapper .projects {
    /* Pop-up Overlay */
  }
  .light-mode .background-wrapper .projects h2 {
    font-size: 2.7rem;
  }
  .light-mode .background-wrapper .projects h2::before {
    height: 3px;
  }
  .light-mode .background-wrapper .projects .project-carousel {
    width: 80%;
    height: 500px;
  }
  .light-mode .background-wrapper .projects .project-carousel .project-wrapper .project-card {
    flex: 0 0 230px;
  }
  .light-mode .background-wrapper .projects .popup-overlay {
    /* Pop-up Container */
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup {
    max-width: 650px;
    width: 70%;
    /* Pop-up Content */
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-header .popup-title {
    font-size: 1.6rem;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-image {
    max-width: 115px;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos {
    gap: 20px;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos img {
    width: 35px;
    height: 35px;
  }
  .light-mode .background-wrapper .about .about-text {
    max-width: 700px;
  }
  .light-mode .background-wrapper .about .about-text h2 {
    font-size: 2.7rem;
  }
  .light-mode .background-wrapper .about .about-text p {
    font-size: 1rem;
    line-height: 2;
  }
  .light-mode .background-wrapper .about .about-image {
    flex: 1;
  }
  .light-mode .background-wrapper .about .about-image img {
    width: 330px;
    height: 330px;
  }
}
/* ----------------------RESPONSIVE MODE Petit écran
EN DESSOUS DE 1200 PIXELS, LES ELEMENTS S'ACTIVERONT
*/
@media screen and (max-width: 1200px) {
  .header {
    padding: 0 10px;
  }
  .header .navbar .professionalIdentity a {
    width: 100%;
  }
  .header .navbar .professionalIdentity a img {
    width: 120px;
    height: 120px;
  }
  .header .navbar .professionalIdentity .clock-section {
    font-size: 1.3rem;
    padding: 5px 15px;
  }
  .header .navbar .toggle-switch {
    width: 95px;
    height: 50px;
  }
  .header .navbar .nav-links li {
    margin: 0 10px;
  }
  .header .navbar .nav-links li a {
    padding: 8px 12px;
  }
  .header .navbar .nav-links .callToActionHeader {
    padding: 0 5px;
    margin-left: 1.5rem;
  }
  .header .navbar .nav-links .callToActionHeader .cta {
    padding: 7px 10px;
  }
  .header.scrolled .navbar .professionalIdentity a img {
    width: 100px;
    height: 100px;
  }
  .header.scrolled .navbar .professionalIdentity .clock-section {
    font-size: 1.2rem;
  }
  .header.scrolled .navbar .nav-links li {
    margin: 0 10px;
  }
  .header.scrolled .navbar .nav-links li a {
    padding: 8px 12px;
  }
  .header.scrolled .navbar .nav-links .callToActionHeader {
    padding: 0 5px;
    margin-left: 1.5rem;
  }
  .header.scrolled .navbar .nav-links .callToActionHeader .cta {
    padding: 7px 10px;
  }
  .hero {
    /* Bulles animées */
  }
  .hero .bubble:nth-child(2) {
    left: 20%;
    width: 45px;
    height: 45px;
    animation-duration: 12s;
    animation-delay: 2s;
  }
  .hero .bubble:nth-child(3) {
    left: 40%;
    width: 35px;
    height: 35px;
    animation-duration: 15s;
    animation-delay: 4s;
  }
  .hero .bubble:nth-child(4) {
    left: 60%;
    width: 45px;
    height: 45px;
    animation-duration: 8s;
    animation-delay: 1s;
  }
  .hero .bubble:nth-child(5) {
    left: 80%;
    width: 20px;
    height: 20px;
    animation-duration: 18s;
    animation-delay: 3s;
  }
  .hero .bubble:nth-child(6) {
    left: 10%;
    width: 35px;
    height: 35px;
    animation-duration: 20s;
    animation-delay: 2s;
  }
  .hero .bubble:nth-child(7) {
    left: 50%;
    width: 20px;
    height: 20px;
    animation-duration: 14s;
    animation-delay: 4s;
  }
  .hero .bubble:nth-child(8) {
    left: 75%;
    width: 45px;
    height: 45px;
    animation-duration: 22s;
    animation-delay: 1s;
  }
  .hero .bubble:nth-child(9) {
    left: 90%;
    width: 20px;
    height: 20px;
    animation-duration: 20s;
    animation-delay: 2s;
  }
  .hero .bubble:nth-child(10) {
    left: 25%;
    width: 50px;
    height: 50px;
    animation-duration: 25s;
    animation-delay: 4s;
  }
  .hero .hero-content .content {
    /* Section Présentation */
    /* Section Image */
  }
  .hero .hero-content .content .presentation h1 {
    font-size: 2.7rem;
  }
  .hero .hero-content .content .presentation h1 .line {
    font-size: 1.3rem;
  }
  .hero .hero-content .content .presentation .role {
    font-size: 1.25rem;
    padding-bottom: 2rem;
  }
  .hero .hero-content .content .presentation .email {
    font-size: 1rem;
  }
  .hero .hero-content .content .presentation .skills {
    gap: 0.8rem;
  }
  .hero .hero-content .content .presentation .skills li {
    font-size: 0.8rem;
    padding: 0.5rem;
  }
  .hero .hero-content .content .presentation .cta {
    padding: 6px 12px;
  }
  .hero .hero-content .content .pictureCreator .image-wrapper {
    width: 320px;
    height: 320px;
  }
  .hero .hero-content .content .pictureCreator .image-wrapper img {
    width: 130%;
    height: 130%;
  }
  .background-wrapper .projects {
    /* Pop-up Overlay */
  }
  .background-wrapper .projects h2 {
    font-size: 2.5rem;
  }
  .background-wrapper .projects h2::before {
    height: 3px;
  }
  .background-wrapper .projects .project-carousel {
    width: 75%;
    height: 500px;
  }
  .background-wrapper .projects .project-carousel .project-wrapper .project-card {
    flex: 0 0 220px;
  }
  .background-wrapper .projects .popup-overlay {
    /* Pop-up Container */
  }
  .background-wrapper .projects .popup-overlay .popup {
    max-width: 650px;
    width: 70%;
    /* Pop-up Content */
  }
  .background-wrapper .projects .popup-overlay .popup .popup-header .popup-title {
    font-size: 1.5rem;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-image {
    max-width: 110px;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies h4 {
    font-size: 1rem;
    margin: 20px;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos {
    gap: 20px;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos img {
    width: 33px;
    height: 33px;
  }
  .background-wrapper .about .about-container {
    display: flex;
    flex-direction: column; /* Empile les éléments */
    align-items: center; /* Centre les éléments horizontalement */
    text-align: center;
  }
  .background-wrapper .about .about-text {
    text-align: center;
    margin: 0 auto;
  }
  .background-wrapper .about .about-text h2 {
    text-align: center;
    font-size: 2.5rem;
  }
  .background-wrapper .about .about-text h2::before {
    height: 3px;
  }
  .background-wrapper .about .about-text p {
    font-size: 1rem;
    line-height: 2;
  }
  .background-wrapper .about .about-image img {
    width: 280px; /* Ajuste la taille de l'image pour s’adapter */
    height: 280px;
    margin-top: 50px; /* Ajoute un peu d’espace entre le texte et l’image */
  }
  .background-wrapper .contact h2 {
    font-size: 2.5rem;
  }
  .background-wrapper .contact h2::before {
    height: 3px;
  }
  .background-wrapper .contact .contact-container {
    max-width: 850px;
  }
  .background-wrapper .contact .input-group textarea {
    height: 100px;
  }
  .background-wrapper .footer .footer-container {
    max-width: 900px;
  }
  .background-wrapper .footer .footer-logo h3 {
    font-size: 1.6rem;
  }
  .background-wrapper .footer .footer-socials {
    gap: 3rem;
  }
  .background-wrapper .footer .footer-socials .social-icon {
    font-size: 1.6rem;
  }
  .light-mode .header {
    padding: 0 10px;
  }
  .light-mode .header .navbar .professionalIdentity a {
    width: 100%;
  }
  .light-mode .header .navbar .professionalIdentity a img {
    width: 120px;
    height: 120px;
  }
  .light-mode .header .navbar .professionalIdentity .clock-section {
    font-size: 1.3rem;
    padding: 5px 15px;
  }
  .light-mode .header .navbar .toggle-switch {
    width: 95px;
    height: 50px;
  }
  .light-mode .header .navbar .nav-links li {
    margin: 0 10px;
  }
  .light-mode .header .navbar .nav-links li a {
    padding: 8px 12px;
  }
  .light-mode .header.scrolled .navbar .professionalIdentity a img {
    width: 100px;
    height: 100px;
  }
  .light-mode .header.scrolled .navbar .professionalIdentity .clock-section {
    font-size: 1.2rem;
  }
  .light-mode .background-wrapper .projects {
    /* Pop-up Overlay */
  }
  .light-mode .background-wrapper .projects h2 {
    font-size: 2.5rem;
  }
  .light-mode .background-wrapper .projects h2::before {
    height: 3px;
  }
  .light-mode .background-wrapper .projects .project-carousel {
    width: 75%;
    height: 500px;
  }
  .light-mode .background-wrapper .projects .project-carousel .project-wrapper .project-card {
    flex: 0 0 220px;
  }
  .light-mode .background-wrapper .projects .popup-overlay {
    /* Pop-up Container */
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup {
    max-width: 650px;
    width: 70%;
    /* Pop-up Content */
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-header .popup-title {
    font-size: 1.5rem;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-image {
    max-width: 110px;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies h4 {
    font-size: 1rem;
    margin: 20px;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos {
    gap: 20px;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos img {
    width: 33px;
    height: 33px;
  }
  .light-mode .background-wrapper .about .about-container {
    display: flex;
    flex-direction: column; /* Empile les éléments */
    align-items: center; /* Centre les éléments horizontalement */
    text-align: center;
  }
  .light-mode .background-wrapper .about .about-text {
    text-align: center;
    margin: 0 auto;
  }
  .light-mode .background-wrapper .about .about-text h2 {
    text-align: center;
    font-size: 2.5rem;
  }
  .light-mode .background-wrapper .about .about-text h2::before {
    height: 3px;
  }
  .light-mode .background-wrapper .about .about-text p {
    font-size: 1rem;
    line-height: 2;
  }
  .light-mode .background-wrapper .about .about-image img {
    width: 280px; /* Ajuste la taille de l'image pour s’adapter */
    height: 280px;
    margin-top: 50px; /* Ajoute un peu d’espace entre le texte et l’image */
  }
  .light-mode .background-wrapper .contact h2 {
    font-size: 2.5rem;
  }
  .light-mode .background-wrapper .contact h2::before {
    height: 3px;
  }
  .light-mode .background-wrapper .contact .contact-container {
    max-width: 850px;
  }
  .light-mode .background-wrapper .contact .input-group textarea {
    height: 100px;
  }
  .light-mode .background-wrapper .footer .footer-container {
    max-width: 900px;
  }
  .light-mode .background-wrapper .footer .footer-logo h3 {
    font-size: 1.6rem;
  }
  .light-mode .background-wrapper .footer .footer-socials {
    gap: 3rem;
  }
  .light-mode .background-wrapper .footer .footer-socials .social-icon {
    font-size: 1.6rem;
  }
}
/* ----------------------RESPONSIVE MODE GRANDE TABLETTE
EN DESSOUS DE 1088 PIXELS, LES ELEMENTS S'ACTIVERONT
*/
@media screen and (max-width: 1088px) {
  .header .navbar .professionalIdentity a {
    width: 100%;
  }
  .header .navbar .professionalIdentity a img {
    width: 100px;
    height: 100px;
  }
  .header .navbar .professionalIdentity .clock-section {
    font-size: 1.3rem;
    padding: 5px 15px;
  }
  .header .navbar .toggle-switch {
    display: none;
    width: 95px;
    height: 50px;
  }
  .header .navbar .nav-links li {
    margin: 0 10px;
  }
  .header .navbar .nav-links li a {
    padding: 8px 12px;
  }
  .header .navbar .nav-links .callToActionHeader {
    padding: 0 5px;
    margin-left: 1.5rem;
  }
  .header .navbar .nav-links .callToActionHeader .cta {
    padding: 7px 10px;
  }
  .header.scrolled .navbar .professionalIdentity a img {
    width: 90px;
    height: 90px;
  }
  .header.scrolled .navbar .professionalIdentity .clock-section {
    font-size: 1.1rem;
  }
  .header.scrolled .navbar .nav-links li {
    margin: 0 10px;
  }
  .header.scrolled .navbar .nav-links li a {
    padding: 8px 12px;
  }
  .header.scrolled .navbar .nav-links .callToActionHeader {
    padding: 0 5px;
    margin-left: 1.5rem;
  }
  .header.scrolled .navbar .nav-links .callToActionHeader .cta {
    padding: 7px 10px;
  }
  .hero {
    /* Bulles animées */
  }
  .hero .bubble:nth-child(2) {
    left: 20%;
    width: 45px;
    height: 45px;
    animation-duration: 12s;
    animation-delay: 2s;
  }
  .hero .bubble:nth-child(3) {
    left: 40%;
    width: 35px;
    height: 35px;
    animation-duration: 15s;
    animation-delay: 4s;
  }
  .hero .bubble:nth-child(4) {
    left: 60%;
    width: 45px;
    height: 45px;
    animation-duration: 8s;
    animation-delay: 1s;
  }
  .hero .bubble:nth-child(5) {
    left: 80%;
    width: 20px;
    height: 20px;
    animation-duration: 18s;
    animation-delay: 3s;
  }
  .hero .bubble:nth-child(6) {
    left: 10%;
    width: 35px;
    height: 35px;
    animation-duration: 20s;
    animation-delay: 2s;
  }
  .hero .bubble:nth-child(7) {
    left: 50%;
    width: 20px;
    height: 20px;
    animation-duration: 14s;
    animation-delay: 4s;
  }
  .hero .bubble:nth-child(8) {
    left: 75%;
    width: 45px;
    height: 45px;
    animation-duration: 22s;
    animation-delay: 1s;
  }
  .hero .bubble:nth-child(9) {
    left: 90%;
    width: 20px;
    height: 20px;
    animation-duration: 20s;
    animation-delay: 2s;
  }
  .hero .bubble:nth-child(10) {
    left: 25%;
    width: 50px;
    height: 50px;
    animation-duration: 25s;
    animation-delay: 4s;
  }
  .hero .hero-content .content {
    /* Section Présentation */
    /* Section Image */
  }
  .hero .hero-content .content .presentation h1 {
    font-size: 2.4rem;
  }
  .hero .hero-content .content .presentation h1 .line {
    font-size: 1.2rem;
  }
  .hero .hero-content .content .presentation .role {
    font-size: 1.2rem;
    padding-bottom: 2rem;
  }
  .hero .hero-content .content .presentation .email {
    font-size: 1rem;
  }
  .hero .hero-content .content .presentation .skills {
    gap: 1rem;
  }
  .hero .hero-content .content .presentation .skills li {
    font-size: 0.8rem;
    padding: 0.5rem;
  }
  .hero .hero-content .content .presentation .toggle-switch {
    display: flex;
    margin: 1rem auto;
    justify-content: center;
    align-items: center;
    border: solid 3px var(--secondary-color) inset;
    position: relative;
    width: 100px;
    height: 50px;
    --light: #eae7e7;
    --dark: #090a29;
  }
  .hero .hero-content .content .presentation .switch-label {
    position: absolute;
    width: 100%;
    height: 50px;
    background-color: var(--dark);
    border-radius: 25px;
    cursor: pointer;
    border: 3px solid var(--dark);
  }
  .hero .hero-content .content .presentation .checkbox {
    position: absolute;
    display: none;
  }
  .hero .hero-content .content .presentation .slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    transition: 0.3s;
  }
  .hero .hero-content .content .presentation .checkbox:checked ~ .slider {
    background-color: var(--light);
  }
  .hero .hero-content .content .presentation .slider::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    box-shadow: inset 12px -4px 0px 0px var(--light);
    background-color: var(--dark);
    transition: all 0.5s ease-in-out;
  }
  .hero .hero-content .content .presentation .checkbox:checked ~ .slider::before {
    transform: translateX(50px);
    background-color: var(--dark);
    box-shadow: none;
  }
  .hero .hero-content .content .presentation .cta {
    padding: 6px 12px;
  }
  .hero .hero-content .content .pictureCreator .image-wrapper {
    width: 300px;
    height: 300px;
  }
  .hero .hero-content .content .pictureCreator .image-wrapper img {
    width: 130%;
    height: 130%;
  }
  .background-wrapper .projects {
    /* Pop-up Overlay */
  }
  .background-wrapper .projects h2 {
    font-size: 2.4rem;
  }
  .background-wrapper .projects h2::before {
    height: 2px;
  }
  .background-wrapper .projects .project-carousel {
    width: 65%;
    height: 400px;
  }
  .background-wrapper .projects .project-carousel .project-wrapper .project-card {
    flex: 0 0 200px;
  }
  .background-wrapper .projects .popup-overlay {
    /* Pop-up Container */
  }
  .background-wrapper .projects .popup-overlay .popup {
    max-width: 600px;
    width: 65%;
    /* Pop-up Content */
  }
  .background-wrapper .projects .popup-overlay .popup .popup-header .popup-title {
    font-size: 1.4rem;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-image {
    max-width: 100px;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies h4 {
    font-size: 1rem;
    margin: 20px;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos {
    gap: 20px;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos img {
    width: 31px;
    height: 31px;
  }
  .background-wrapper .about .about-container {
    display: flex;
    flex-direction: column; /* Empile les éléments */
    align-items: center; /* Centre les éléments horizontalement */
    text-align: center;
  }
  .background-wrapper .about .about-text {
    text-align: center;
    margin: 0 auto;
  }
  .background-wrapper .about .about-text h2 {
    text-align: center;
    font-size: 2.4rem;
  }
  .background-wrapper .about .about-text h2::before {
    height: 2px;
  }
  .background-wrapper .about .about-text p {
    font-size: 1rem;
    line-height: 2;
  }
  .background-wrapper .about .about-image img {
    width: 270px; /* Ajuste la taille de l'image pour s’adapter */
    height: 270px;
    margin-top: 50px; /* Ajoute un peu d’espace entre le texte et l’image */
  }
  .background-wrapper .contact h2 {
    font-size: 2.4rem;
  }
  .background-wrapper .contact h2::before {
    height: 2px;
  }
  .background-wrapper .contact .contact-container {
    max-width: 700px;
  }
  .background-wrapper .contact .input-group textarea {
    height: 100px;
  }
  .background-wrapper .footer .footer-container {
    max-width: 700px;
  }
  .background-wrapper .footer .footer-logo h3 {
    font-size: 1.4rem;
  }
  .background-wrapper .footer .footer-logo p {
    font-size: 0.9rem;
  }
  .background-wrapper .footer .footer-socials {
    gap: 3rem;
  }
  .background-wrapper .footer .footer-socials .social-icon {
    font-size: 1.4rem;
  }
  .light-mode .header {
    padding: 0 10px;
  }
  .light-mode .header .navbar .professionalIdentity a {
    width: 100%;
  }
  .light-mode .header .navbar .professionalIdentity a img {
    width: 100px;
    height: 100px;
  }
  .light-mode .header .navbar .professionalIdentity .clock-section {
    font-size: 1.3rem;
    padding: 5px 15px;
  }
  .light-mode .header .navbar .toggle-switch {
    width: 95px;
    height: 50px;
  }
  .light-mode .header .navbar .nav-links li {
    margin: 0 10px;
  }
  .light-mode .header .navbar .nav-links li a {
    padding: 8px 12px;
  }
  .light-mode .header.scrolled .navbar .professionalIdentity a img {
    width: 90px;
    height: 90px;
  }
  .light-mode .header.scrolled .navbar .professionalIdentity .clock-section {
    font-size: 1.1rem;
  }
  .light-mode .background-wrapper .projects {
    /* Pop-up Overlay */
  }
  .light-mode .background-wrapper .projects h2 {
    font-size: 2.4rem;
  }
  .light-mode .background-wrapper .projects h2::before {
    height: 2px;
  }
  .light-mode .background-wrapper .projects .project-carousel {
    width: 65%;
    height: 400px;
  }
  .light-mode .background-wrapper .projects .project-carousel .project-wrapper .project-card {
    flex: 0 0 200px;
  }
  .light-mode .background-wrapper .projects .popup-overlay {
    /* Pop-up Container */
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup {
    max-width: 600px;
    width: 60%;
    /* Pop-up Content */
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-header .popup-title {
    font-size: 1.4rem;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-image {
    max-width: 100px;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies h4 {
    font-size: 1rem;
    margin: 20px;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos {
    gap: 20px;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos img {
    width: 31px;
    height: 31px;
  }
  .light-mode .background-wrapper .about .about-container {
    display: flex;
    flex-direction: column; /* Empile les éléments */
    align-items: center; /* Centre les éléments horizontalement */
    text-align: center;
  }
  .light-mode .background-wrapper .about .about-text {
    text-align: center;
    margin: 0 auto;
  }
  .light-mode .background-wrapper .about .about-text h2 {
    text-align: center;
    font-size: 2.4rem;
  }
  .light-mode .background-wrapper .about .about-text h2::before {
    height: 2px;
  }
  .light-mode .background-wrapper .about .about-text p {
    font-size: 1rem;
    line-height: 2;
  }
  .light-mode .background-wrapper .about .about-image img {
    width: 270px; /* Ajuste la taille de l'image pour s’adapter */
    height: 270px;
    margin-top: 50px; /* Ajoute un peu d’espace entre le texte et l’image */
  }
  .light-mode .background-wrapper .contact h2 {
    font-size: 2.4rem;
  }
  .light-mode .background-wrapper .contact h2::before {
    height: 2px;
  }
  .light-mode .background-wrapper .contact .contact-container {
    max-width: 700px;
  }
  .light-mode .background-wrapper .contact .input-group textarea {
    height: 100px;
  }
  .light-mode .background-wrapper .footer .footer-container {
    max-width: 700px;
  }
  .light-mode .background-wrapper .footer .footer-logo h3 {
    font-size: 1.3rem;
  }
  .light-mode .background-wrapper .footer .footer-logo p {
    font-size: 0.9rem;
  }
  .light-mode .background-wrapper .footer .footer-socials {
    gap: 3rem;
  }
  .light-mode .background-wrapper .footer .footer-socials .social-icon {
    font-size: 1.4rem;
  }
}
/* ----------------------RESPONSIVE MODE TABLETTE
EN DESSOUS DE 920 PIXELS, LES ELEMENTS S'ACTIVERONT
*/
@media screen and (max-width: 920px) {
  .header .navbar .professionalIdentity a {
    width: 100%;
  }
  .header .navbar .professionalIdentity a img {
    width: 100px;
    height: 100px;
  }
  .header .navbar .professionalIdentity .clock-section {
    font-size: 1.2rem;
    padding: 5px 15px;
  }
  .header .navbar .toggle-switch {
    display: none;
    width: 95px;
    height: 50px;
  }
  .header .navbar .nav-links {
    display: none;
  }
  .header .navbar .burger-menu {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .navbar .burger-menu .bar {
    width: 35px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 5px;
    transition: all 0.4s ease-in-out;
    position: relative;
  }
  .header .navbar .burger-menu .bar::before, .header .navbar .burger-menu .bar::after {
    content: "";
    position: absolute;
    width: 35px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 5px;
    transition: all 0.4s ease-in-out;
  }
  .header .navbar .burger-menu .bar::before {
    transform: translateY(-10px);
  }
  .header .navbar .burger-menu .bar::after {
    transform: translateY(10px);
  }
  .header .navbar .burger-menu.active .bar {
    background: transparent;
  }
  .header .navbar .burger-menu.active .bar::before {
    transform: rotate(45deg);
    top: 0;
  }
  .header .navbar .burger-menu.active .bar::after {
    transform: rotate(-45deg);
    top: 0;
  }
  .header .navbar .nav-links {
    padding-top: 2rem;
    margin: 2rem 0;
    position: fixed;
    top: -500px;
    right: -500px;
    width: 500px;
    height: 500px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    opacity: 0;
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
    transform: translate(100%, -100%);
  }
  .header .navbar .nav-links li {
    margin: 5px 0;
  }
  .header .navbar .nav-links li a {
    font-size: 1.2rem;
    text-decoration: none;
  }
  .header .navbar .nav-links .callToActionHeader {
    margin: 1rem 0 0 0;
  }
  .header .navbar .nav-links.active {
    top: -89px;
    right: -89px;
    transform: translate(0%, 0%);
    opacity: 1;
  }
  .header .navbar .nav-links.closing {
    opacity: 0;
    transform: translate(100%, -100%);
  }
  .header.scrolled .navbar .professionalIdentity a img {
    width: 90px;
    height: 90px;
  }
  .header.scrolled .navbar .professionalIdentity .clock-section {
    font-size: 1.1rem;
  }
  .header.scrolled .navbar .nav-links li {
    margin: 0 10px;
  }
  .header.scrolled .navbar .nav-links li a {
    padding: 8px 12px;
  }
  .header.scrolled .navbar .nav-links .callToActionHeader {
    padding: 0 5px;
    margin-left: 1.5rem;
  }
  .header.scrolled .navbar .nav-links .callToActionHeader .cta {
    padding: 7px 10px;
  }
  .header.scrolled .navbar .burger-menu {
    width: 35px;
    height: 35px;
  }
  .header.scrolled .navbar .burger-menu .bar {
    width: 35px;
    height: 3px;
  }
  .header.scrolled .navbar .burger-menu .bar::before, .header.scrolled .navbar .burger-menu .bar::after {
    width: 35px;
    height: 3px;
  }
  .hero {
    /* Bulles animées */
  }
  .hero .bubble:nth-child(2) {
    left: 20%;
    width: 45px;
    height: 45px;
    animation-duration: 12s;
    animation-delay: 2s;
  }
  .hero .bubble:nth-child(3) {
    left: 40%;
    width: 35px;
    height: 35px;
    animation-duration: 15s;
    animation-delay: 4s;
  }
  .hero .bubble:nth-child(4) {
    left: 60%;
    width: 45px;
    height: 45px;
    animation-duration: 8s;
    animation-delay: 1s;
  }
  .hero .bubble:nth-child(5) {
    left: 80%;
    width: 20px;
    height: 20px;
    animation-duration: 18s;
    animation-delay: 3s;
  }
  .hero .bubble:nth-child(6) {
    left: 10%;
    width: 35px;
    height: 35px;
    animation-duration: 20s;
    animation-delay: 2s;
  }
  .hero .bubble:nth-child(7) {
    left: 50%;
    width: 20px;
    height: 20px;
    animation-duration: 14s;
    animation-delay: 4s;
  }
  .hero .bubble:nth-child(8) {
    left: 75%;
    width: 45px;
    height: 45px;
    animation-duration: 22s;
    animation-delay: 1s;
  }
  .hero .bubble:nth-child(9) {
    left: 90%;
    width: 20px;
    height: 20px;
    animation-duration: 20s;
    animation-delay: 2s;
  }
  .hero .bubble:nth-child(10) {
    left: 25%;
    width: 50px;
    height: 50px;
    animation-duration: 25s;
    animation-delay: 4s;
  }
  .hero .hero-content .content {
    /* Section Présentation */
    /* Section Image */
  }
  .hero .hero-content .content .presentation h1 {
    font-size: 2.4rem;
  }
  .hero .hero-content .content .presentation h1 .line {
    font-size: 1.2rem;
  }
  .hero .hero-content .content .presentation .role {
    font-size: 1.2rem;
    padding-bottom: 2rem;
  }
  .hero .hero-content .content .presentation .email {
    font-size: 1rem;
  }
  .hero .hero-content .content .presentation .skills {
    gap: 1rem;
  }
  .hero .hero-content .content .presentation .skills li {
    font-size: 0.8rem;
    padding: 0.5rem;
  }
  .hero .hero-content .content .presentation .toggle-switch {
    display: flex;
    margin: 1rem auto;
    justify-content: center;
    align-items: center;
    border: solid 3px var(--secondary-color) inset;
    position: relative;
    width: 100px;
    height: 50px;
    --light: #eae7e7;
    --dark: #090a29;
  }
  .hero .hero-content .content .presentation .switch-label {
    position: absolute;
    width: 100%;
    height: 50px;
    background-color: var(--dark);
    border-radius: 25px;
    cursor: pointer;
    border: 3px solid var(--dark);
  }
  .hero .hero-content .content .presentation .checkbox {
    position: absolute;
    display: none;
  }
  .hero .hero-content .content .presentation .slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    transition: 0.3s;
  }
  .hero .hero-content .content .presentation .checkbox:checked ~ .slider {
    background-color: var(--light);
  }
  .hero .hero-content .content .presentation .slider::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    box-shadow: inset 12px -4px 0px 0px var(--light);
    background-color: var(--dark);
    transition: all 0.5s ease-in-out;
  }
  .hero .hero-content .content .presentation .checkbox:checked ~ .slider::before {
    transform: translateX(50px);
    background-color: var(--dark);
    box-shadow: none;
  }
  .hero .hero-content .content .presentation .cta {
    padding: 6px 12px;
  }
  .hero .hero-content .content .pictureCreator .image-wrapper {
    width: 300px;
    height: 300px;
  }
  .hero .hero-content .content .pictureCreator .image-wrapper img {
    width: 130%;
    height: 130%;
  }
  .background-wrapper .projects {
    /* Pop-up Overlay */
  }
  .background-wrapper .projects h2 {
    font-size: 2.4rem;
  }
  .background-wrapper .projects h2::before {
    height: 2px;
  }
  .background-wrapper .projects .project-carousel {
    width: 65%;
    height: 400px;
  }
  .background-wrapper .projects .project-carousel .project-wrapper .project-card {
    flex: 0 0 200px;
  }
  .background-wrapper .projects .popup-overlay {
    /* Pop-up Container */
  }
  .background-wrapper .projects .popup-overlay .popup {
    max-width: 600px;
    width: 65%;
    /* Pop-up Content */
  }
  .background-wrapper .projects .popup-overlay .popup .popup-header .popup-title {
    font-size: 1.4rem;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-image {
    max-width: 100px;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies h4 {
    font-size: 1rem;
    margin: 20px;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos {
    gap: 20px;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos img {
    width: 31px;
    height: 31px;
  }
  .background-wrapper .about .about-container {
    display: flex;
    flex-direction: column; /* Empile les éléments */
    align-items: center; /* Centre les éléments horizontalement */
    text-align: center;
  }
  .background-wrapper .about .about-text {
    text-align: center;
    margin: 0 auto;
  }
  .background-wrapper .about .about-text h2 {
    text-align: center;
    font-size: 2.4rem;
  }
  .background-wrapper .about .about-text h2::before {
    height: 2px;
  }
  .background-wrapper .about .about-text p {
    font-size: 1rem;
    line-height: 2;
  }
  .background-wrapper .about .about-image img {
    width: 270px; /* Ajuste la taille de l'image pour s’adapter */
    height: 270px;
    margin-top: 50px; /* Ajoute un peu d’espace entre le texte et l’image */
  }
  .background-wrapper .contact h2 {
    font-size: 2.4rem;
  }
  .background-wrapper .contact h2::before {
    height: 2px;
  }
  .background-wrapper .contact .contact-container {
    max-width: 700px;
  }
  .background-wrapper .contact .input-group textarea {
    height: 100px;
  }
  .background-wrapper .footer .footer-container {
    max-width: 700px;
  }
  .background-wrapper .footer .footer-logo h3 {
    font-size: 1.4rem;
  }
  .background-wrapper .footer .footer-logo p {
    font-size: 0.9rem;
  }
  .background-wrapper .footer .footer-socials {
    gap: 3rem;
  }
  .background-wrapper .footer .footer-socials .social-icon {
    font-size: 1.4rem;
  }
  .light-mode .header {
    padding: 0 10px;
  }
  .light-mode .header .navbar .professionalIdentity a {
    width: 100%;
  }
  .light-mode .header .navbar .professionalIdentity a img {
    width: 100px;
    height: 100px;
  }
  .light-mode .header .navbar .professionalIdentity .clock-section {
    font-size: 1.2rem;
    padding: 5px 15px;
  }
  .light-mode .header .navbar .toggle-switch {
    width: 95px;
    height: 50px;
  }
  .light-mode .header .navbar .nav-links {
    background: rgba(0, 0, 0, 0.7);
  }
  .light-mode .header .navbar .nav-links li {
    margin: 5px 0;
  }
  .light-mode .header .navbar .nav-links li a {
    font-size: 1.2rem;
    text-decoration: none;
  }
  .light-mode .header.scrolled .navbar .professionalIdentity a img {
    width: 90px;
    height: 90px;
  }
  .light-mode .header.scrolled .navbar .professionalIdentity .clock-section {
    font-size: 1.1rem;
  }
  .light-mode .background-wrapper .projects {
    /* Pop-up Overlay */
  }
  .light-mode .background-wrapper .projects h2 {
    font-size: 2.4rem;
  }
  .light-mode .background-wrapper .projects h2::before {
    height: 2px;
  }
  .light-mode .background-wrapper .projects .project-carousel {
    width: 65%;
    height: 400px;
  }
  .light-mode .background-wrapper .projects .project-carousel .project-wrapper .project-card {
    flex: 0 0 200px;
  }
  .light-mode .background-wrapper .projects .popup-overlay {
    /* Pop-up Container */
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup {
    max-width: 600px;
    width: 60%;
    /* Pop-up Content */
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-header .popup-title {
    font-size: 1.4rem;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-image {
    max-width: 100px;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies h4 {
    font-size: 1rem;
    margin: 20px;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos {
    gap: 20px;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos img {
    width: 31px;
    height: 31px;
  }
  .light-mode .background-wrapper .about .about-container {
    display: flex;
    flex-direction: column; /* Empile les éléments */
    align-items: center; /* Centre les éléments horizontalement */
    text-align: center;
  }
  .light-mode .background-wrapper .about .about-text {
    text-align: center;
    margin: 0 auto;
  }
  .light-mode .background-wrapper .about .about-text h2 {
    text-align: center;
    font-size: 2.4rem;
  }
  .light-mode .background-wrapper .about .about-text h2::before {
    height: 2px;
  }
  .light-mode .background-wrapper .about .about-text p {
    font-size: 1rem;
    line-height: 2;
  }
  .light-mode .background-wrapper .about .about-image img {
    width: 270px; /* Ajuste la taille de l'image pour s’adapter */
    height: 270px;
    margin-top: 50px; /* Ajoute un peu d’espace entre le texte et l’image */
  }
  .light-mode .background-wrapper .contact h2 {
    font-size: 2.4rem;
  }
  .light-mode .background-wrapper .contact h2::before {
    height: 2px;
  }
  .light-mode .background-wrapper .contact .contact-container {
    max-width: 700px;
  }
  .light-mode .background-wrapper .footer .footer-container {
    max-width: 700px;
  }
  .light-mode .background-wrapper .footer .footer-logo h3 {
    font-size: 1.3rem;
  }
  .light-mode .background-wrapper .footer .footer-logo p {
    font-size: 0.9rem;
  }
  .light-mode .background-wrapper .footer .footer-socials {
    gap: 3rem;
  }
  .light-mode .background-wrapper .footer .footer-socials .social-icon {
    font-size: 1.4rem;
  }
}
/* ----------------------RESPONSIVE MODE TABLETTE
EN DESSOUS DE 800 PIXELS, LES ELEMENTS S'ACTIVERONT
*/
@media screen and (max-width: 800px) {
  .header .navbar .nav-links {
    padding-top: 2rem;
    margin: 2rem 0;
    position: fixed;
    top: -450px;
    right: -450px;
    width: 450px;
    height: 450px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    opacity: 0;
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
    transform: translate(100%, -100%);
  }
  .header .navbar .nav-links li {
    margin: 5px 0;
  }
  .header .navbar .nav-links li a {
    font-size: 1.1rem;
    text-decoration: none;
  }
  .header .navbar .nav-links .callToActionHeader {
    margin: 1rem 0 0 0;
  }
  .header .navbar .nav-links.active {
    top: -89px;
    right: -89px;
    transform: translate(0%, 0%);
    opacity: 1;
  }
  .header .navbar .nav-links.closing {
    opacity: 0;
    transform: translate(100%, -100%);
  }
  .hero .hero-content {
    position: relative;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    /* Image en arrière-plan */
    /* Texte centré en premier plan */
  }
  .hero .hero-content .pictureCreator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    z-index: -1;
    opacity: 0.5;
    filter: blur(3px);
  }
  .hero .hero-content .pictureCreator .image-wrapper {
    width: 300px;
    height: 300px;
  }
  .hero .hero-content .pictureCreator .image-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero .hero-content .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 85%;
    z-index: 2;
  }
  .hero .hero-content .content .presentation h1 {
    font-size: 2.2rem;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  }
  .hero .hero-content .content .presentation h1 .line {
    font-size: 1.4rem;
  }
  .hero .hero-content .content .presentation .role {
    font-size: 1.3rem;
  }
  .hero .hero-content .content .presentation .email {
    font-size: 1.1rem;
    color: white;
    opacity: 0.8;
  }
  .hero .hero-content .content .presentation .skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .hero .hero-content .content .presentation .skills li {
    font-size: 0.9rem;
  }
  .hero .hero-content .content .presentation .cta {
    margin-top: 2rem;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    text-transform: uppercase;
    transition: transform 0.2s ease, background 0.3s ease;
  }
  .background-wrapper .projects {
    position: relative;
    padding: 2rem;
    text-align: center;
    /* Galerie Scrollable */
    /* Pop-up Overlay */
    /* Flèche indicatrice en pleine largeur */
  }
  .background-wrapper .projects h2 {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #00ff88, #0088ff);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
  }
  .background-wrapper .projects .project-carousel {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    display: flex;
    gap: 2rem; /* Espacement ajusté */
    padding: 2rem;
    white-space: nowrap;
    scrollbar-width: none;
    position: relative;
  }
  .background-wrapper .projects .project-carousel::-webkit-scrollbar {
    display: none;
  }
  .background-wrapper .projects .project-carousel .project-wrapper {
    display: flex;
    margin-bottom: 1rem;
    gap: 50px; /* Ajustement de l'espacement entre projets */
  }
  .background-wrapper .projects .project-carousel .project-wrapper .project-card {
    flex: 0 0 75%;
    max-width: 200px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
    scroll-snap-align: start;
    cursor: pointer;
    border-radius: 15px;
  }
  .background-wrapper .projects .project-carousel .project-wrapper .project-card:active {
    transform: scale(0.97);
  }
  .background-wrapper .projects .project-carousel .project-wrapper .project-card img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
  }
  .background-wrapper .projects .project-carousel .project-wrapper .project-card h3 {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
  }
  .background-wrapper .projects .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10;
    animation: fadeIn 0.7s ease-in-out;
    /* Pop-up Container */
  }
  .background-wrapper .projects .popup-overlay .popup {
    margin-top: 6rem;
    background-color: var(--primary-color);
    padding: 25px;
    border-radius: 15px;
    max-width: 700px;
    width: 85%;
    animation: slideUp 0.5s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    /* Pop-up Content */
  }
  .background-wrapper .projects .popup-overlay .popup .popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-header .popup-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--tierce-color);
    text-align: center;
    flex-grow: 1;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-header .close-popup {
    font-size: 2.5rem;
    color: var(--tierce-color);
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-header .close-popup:hover {
    animation: rotateClose 0.4s ease-in-out;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content {
    padding-left: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-image {
    max-width: 100px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 15px;
    left: 15px;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-description {
    font-size: 1rem;
    color: #000;
    line-height: 1.6;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: red;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos img:hover {
    transform: scale(1.2);
  }
  .background-wrapper .projects .scroll-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -35px;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background: var(--tierce-color);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    opacity: 0.9;
  }
  .background-wrapper .projects .scroll-indicator::after {
    content: "➡️"; /* Icône de flèche */
    font-size: 2.5rem;
    margin-left: 10px;
  }
  .background-wrapper .about .about-container {
    display: flex;
    flex-direction: column; /* Empile les éléments */
    align-items: center; /* Centre les éléments horizontalement */
    text-align: center;
  }
  .background-wrapper .about .about-text h2 {
    text-align: center;
    font-size: 2.2rem;
  }
  .background-wrapper .about .about-text h2::before {
    height: 2px;
  }
  .background-wrapper .about .about-text p {
    font-size: 0.95rem;
    line-height: 2;
  }
  .background-wrapper .about .about-image img {
    width: 260px; /* Ajuste la taille de l'image pour s’adapter */
    height: 260px;
    margin-top: 50px; /* Ajoute un peu d’espace entre le texte et l’image */
  }
  .background-wrapper .contact {
    padding: 4rem 1rem;
  }
  .background-wrapper .contact h2 {
    font-size: 2.2rem;
    margin: 2rem 0;
  }
  .background-wrapper .contact .contact-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .background-wrapper .contact .contact-info p {
    font-size: 1.1rem;
    text-align: center;
  }
  .background-wrapper .contact .contact-form {
    margin-top: 3rem;
    width: 90%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .background-wrapper .contact .input-group {
    width: 100%;
  }
  .background-wrapper .contact .input-group input, .background-wrapper .contact .input-group textarea {
    width: 100%;
    font-size: 1rem;
  }
  .background-wrapper .contact .cta {
    width: 100%;
    max-width: 350px;
    margin: 2rem auto;
    padding: 12px;
    font-size: 1rem;
  }
  .background-wrapper .footer {
    padding: 2rem 1rem;
    text-align: center;
  }
  .background-wrapper .footer .footer-container {
    max-width: 500px;
    flex-direction: column;
    gap: 1.5rem;
  }
  .background-wrapper .footer .footer-logo {
    text-align: center;
  }
  .background-wrapper .footer .footer-logo h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
  }
  .background-wrapper .footer .footer-socials {
    justify-content: center;
    gap: 2.5rem;
  }
  .background-wrapper .footer .footer-socials .social-icon {
    font-size: 1.5rem;
  }
  .background-wrapper .footer .footer-bottom {
    font-size: 0.9rem;
  }
  .light-mode .hero .hero-content {
    position: relative;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    /* Image en arrière-plan */
    /* Texte centré en premier plan */
  }
  .light-mode .hero .hero-content .pictureCreator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    z-index: -1;
    opacity: 0.5;
    filter: blur(3px);
  }
  .light-mode .hero .hero-content .pictureCreator .image-wrapper {
    width: 300px;
    height: 300px;
  }
  .light-mode .hero .hero-content .pictureCreator .image-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .light-mode .hero .hero-content .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 85%;
    z-index: 2;
  }
  .light-mode .hero .hero-content .content .presentation h1 {
    font-size: 2.2rem;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  }
  .light-mode .hero .hero-content .content .presentation h1 .line {
    font-size: 1.4rem;
  }
  .light-mode .hero .hero-content .content .presentation .role {
    font-size: 1.3rem;
  }
  .light-mode .hero .hero-content .content .presentation .email {
    font-size: 1.1rem;
    color: white;
    opacity: 0.8;
  }
  .light-mode .hero .hero-content .content .presentation .skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .light-mode .hero .hero-content .content .presentation .skills li {
    font-size: 0.9rem;
  }
  .light-mode .hero .hero-content .content .presentation .cta {
    margin-top: 2rem;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    text-transform: uppercase;
    transition: transform 0.2s ease, background 0.3s ease;
  }
  .light-mode .background-wrapper .projects {
    position: relative;
    padding: 2rem;
    text-align: center;
    /* Galerie Scrollable */
    /* Pop-up Overlay */
    /* Flèche indicatrice en pleine largeur */
  }
  .light-mode .background-wrapper .projects h2 {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    margin-bottom: 3rem;
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
  }
  .light-mode .background-wrapper .projects .project-carousel {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    display: flex;
    gap: 2rem; /* Espacement ajusté */
    padding: 2rem;
    white-space: nowrap;
    scrollbar-width: none;
    position: relative;
  }
  .light-mode .background-wrapper .projects .project-carousel::-webkit-scrollbar {
    display: none;
  }
  .light-mode .background-wrapper .projects .project-carousel .project-wrapper {
    display: flex;
    margin-bottom: 1rem;
    gap: 50px; /* Ajustement de l'espacement entre projets */
  }
  .light-mode .background-wrapper .projects .project-carousel .project-card {
    flex: 0 0 75%;
    max-width: 300px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
    scroll-snap-align: start;
    cursor: pointer;
    border-radius: 15px;
  }
  .light-mode .background-wrapper .projects .project-carousel .project-card:active {
    transform: scale(0.97);
  }
  .light-mode .background-wrapper .projects .project-carousel .project-card img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
  }
  .light-mode .background-wrapper .projects .project-carousel .project-card h3 {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
  }
  .light-mode .background-wrapper .projects .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10;
    animation: fadeIn 0.7s ease-in-out;
    /* Pop-up Container */
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup {
    margin-top: 6rem;
    background-color: var(--primary-color);
    padding: 25px;
    border-radius: 15px;
    max-width: 700px;
    width: 85%;
    animation: slideUp 0.5s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    /* Pop-up Content */
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-header .popup-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--tierce-color);
    text-align: center;
    flex-grow: 1;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-header .close-popup {
    font-size: 2.5rem;
    color: var(--tierce-color);
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-header .close-popup:hover {
    animation: rotateClose 0.4s ease-in-out;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content {
    padding-left: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-image {
    max-width: 100px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 15px;
    left: 15px;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-description {
    font-size: 1rem;
    color: #000;
    line-height: 1.6;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: red;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos img:hover {
    transform: scale(1.2);
  }
  .light-mode .background-wrapper .projects .scroll-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -35px;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background: var(--tierce-color);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    opacity: 0.9;
  }
  .light-mode .background-wrapper .projects .scroll-indicator::after {
    content: "➡️"; /* Icône de flèche */
    font-size: 2.5rem;
    margin-left: 10px;
  }
  .light-mode .background-wrapper .about .about-container {
    display: flex;
    flex-direction: column; /* Empile les éléments */
    align-items: center; /* Centre les éléments horizontalement */
    text-align: center;
  }
  .light-mode .background-wrapper .about .about-text h2 {
    text-align: center;
    font-size: 2.2rem;
  }
  .light-mode .background-wrapper .about .about-text h2::before {
    height: 2px;
  }
  .light-mode .background-wrapper .about .about-text p {
    font-size: 0.95rem;
    line-height: 2;
  }
  .light-mode .background-wrapper .about .about-image img {
    width: 260px; /* Ajuste la taille de l'image pour s’adapter */
    height: 260px;
    margin-top: 50px; /* Ajoute un peu d’espace entre le texte et l’image */
  }
  .light-mode .background-wrapper .contact {
    padding: 4rem 1rem;
  }
  .light-mode .background-wrapper .contact h2 {
    font-size: 2.2rem;
    margin: 2rem 0;
  }
  .light-mode .background-wrapper .contact .contact-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .light-mode .background-wrapper .contact .contact-info p {
    font-size: 1.1rem;
    text-align: center;
  }
  .light-mode .background-wrapper .contact .contact-form {
    margin-top: 3rem;
    width: 90%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .light-mode .background-wrapper .contact .input-group {
    width: 100%;
  }
  .light-mode .background-wrapper .contact .input-group input, .light-mode .background-wrapper .contact .input-group textarea {
    width: 100%;
    font-size: 1rem;
  }
  .light-mode .background-wrapper .contact .cta {
    width: 100%;
    max-width: 350px;
    margin: 2rem auto;
    padding: 12px;
    font-size: 1rem;
  }
  .light-mode .background-wrapper .footer {
    padding: 2rem 1rem;
    text-align: center;
  }
  .light-mode .background-wrapper .footer .footer-container {
    max-width: 500px;
    flex-direction: column;
    gap: 1.5rem;
  }
  .light-mode .background-wrapper .footer .footer-logo {
    text-align: center;
  }
  .light-mode .background-wrapper .footer .footer-logo h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
  }
  .light-mode .background-wrapper .footer .footer-socials {
    justify-content: center;
    gap: 2.5rem;
  }
  .light-mode .background-wrapper .footer .footer-socials .social-icon {
    font-size: 1.5rem;
  }
  .light-mode .background-wrapper .footer .footer-bottom {
    font-size: 0.9rem;
  }
}
/* ----------------------RESPONSIVE MODE MOBILE
EN DESSOUS DE 550 PIXELS, LES ELEMENTS S'ACTIVERONT
*/
@media screen and (max-width: 550px) {
  .header .navbar .nav-links {
    padding-top: 2rem;
    margin: 2rem 0;
    position: fixed;
    top: -420px;
    right: -420px;
    width: 420px;
    height: 420px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
    transform: translate(100%, -100%);
  }
  .header .navbar .nav-links li {
    margin: 2px 0;
  }
  .header .navbar .nav-links li a {
    font-size: 1rem;
    text-decoration: none;
  }
  .header .navbar .nav-links .callToActionHeader {
    margin: 1rem 0 0 0;
  }
  .header .navbar .nav-links.active {
    top: -89px;
    right: -89px;
    transform: translate(0%, 0%);
    opacity: 1;
  }
  .header .navbar .nav-links.closing {
    opacity: 0;
    transform: translate(100%, -100%);
  }
  .header .navbar .burger-menu {
    top: 37px;
    width: 30px;
    height: 30px;
  }
  .header .navbar .burger-menu .bar {
    width: 30px;
    height: 3px;
  }
  .header .navbar .burger-menu .bar::before, .header .navbar .burger-menu .bar::after {
    width: 30px;
    height: 3px;
  }
  .header.scrolled .navbar .professionalIdentity a img {
    width: 90px;
    height: 90px;
  }
  .header.scrolled .navbar .professionalIdentity .clock-section {
    font-size: 1.1rem;
  }
  .header.scrolled .navbar .nav-links li {
    margin: 0 10px;
  }
  .header.scrolled .navbar .nav-links li a {
    padding: 8px 12px;
  }
  .header.scrolled .navbar .nav-links .callToActionHeader {
    padding: 0 5px;
    margin-left: 1.5rem;
  }
  .header.scrolled .navbar .nav-links .callToActionHeader .cta {
    padding: 7px 10px;
  }
  .header.scrolled .navbar .burger-menu {
    top: 32px;
    width: 30px;
    height: 30px;
  }
  .header.scrolled .navbar .burger-menu .bar {
    width: 30px;
    height: 3px;
  }
  .header.scrolled .navbar .burger-menu .bar::before, .header.scrolled .navbar .burger-menu .bar::after {
    width: 30px;
    height: 3px;
  }
  .hero .hero-content {
    position: relative;
    margin-top: 3rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    /* Image en arrière-plan */
    /* Texte centré en premier plan */
  }
  .hero .hero-content .pictureCreator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    z-index: -1;
    opacity: 0.5;
    filter: blur(3px);
  }
  .hero .hero-content .pictureCreator .image-wrapper {
    width: 300px;
    height: 300px;
  }
  .hero .hero-content .pictureCreator .image-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero .hero-content .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 95%;
    z-index: 2;
  }
  .hero .hero-content .content .presentation h1 {
    font-size: 2.5rem;
  }
  .hero .hero-content .content .presentation .role {
    font-size: 1.1rem;
  }
  .hero .hero-content .content .presentation .email {
    font-size: 1rem;
  }
  .hero .hero-content .content .presentation .skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .hero .hero-content .content .presentation .skills li {
    font-size: 0.75rem;
  }
  .hero .hero-content .content .presentation .cta {
    padding: 10px 15px;
    font-size: 0.9rem;
    box-shadow: 2px 4px 12px var(--secondary-color);
  }
  .background-wrapper .projects {
    position: relative;
    padding: 4rem 2.5rem;
    text-align: center;
    /* Galerie Scrollable */
    /* Pop-up Overlay */
    /* Flèche indicatrice en pleine largeur */
  }
  .background-wrapper .projects h2 {
    font-size: 1.8rem;
    margin-bottom: 4rem;
  }
  .background-wrapper .projects h2::before {
    height: 1px;
  }
  .background-wrapper .projects .project-carousel {
    width: 90%;
  }
  .background-wrapper .projects .project-carousel .project-wrapper .project-card {
    flex: 0 0 75%;
    max-width: 180px;
  }
  .background-wrapper .projects .popup-overlay {
    /* Pop-up Container */
  }
  .background-wrapper .projects .popup-overlay .popup {
    /* Pop-up Content */
  }
  .background-wrapper .projects .popup-overlay .popup .popup-header .popup-title {
    font-size: 1.4rem;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-header .close-popup {
    font-size: 2.2rem;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-image {
    max-width: 100px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 15px;
    left: 15px;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-description {
    font-size: 0.8rem;
    color: #000;
    line-height: 1.6;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies h4 {
    font-size: 1rem;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos {
    gap: 20px;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos img {
    width: 27px;
    height: 27px;
  }
  .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos img:hover {
    transform: scale(1.2);
  }
  .background-wrapper .projects .scroll-indicator::after {
    font-size: 2.2rem;
  }
  .background-wrapper .about .about-text h2 {
    text-align: center;
    font-size: 1.8rem;
  }
  .background-wrapper .about .about-text h2::before {
    height: 1px;
  }
  .background-wrapper .about .about-text p {
    font-size: 0.9rem;
    line-height: 2;
  }
  .background-wrapper .about .about-image img {
    width: 230px; /* Ajuste la taille de l'image pour s’adapter */
    height: 230px;
    margin-top: 30px; /* Ajoute un peu d’espace entre le texte et l’image */
  }
  .background-wrapper .contact {
    padding: 4rem 1rem;
  }
  .background-wrapper .contact h2 {
    font-size: 1.8rem;
    margin: 2rem 0;
  }
  .background-wrapper .contact .contact-info p {
    font-size: 1rem;
    text-align: center;
  }
  .background-wrapper .contact .contact-form {
    margin-top: 3rem;
    max-width: 370px;
  }
  .background-wrapper .contact .input-group input, .background-wrapper .contact .input-group textarea {
    font-size: 0.95rem;
  }
  .background-wrapper .contact .cta {
    width: 90%;
  }
  .background-wrapper .footer {
    padding: 3rem 1rem;
    text-align: center;
  }
  .background-wrapper .footer .footer-container {
    max-width: 400px;
    gap: 3rem;
  }
  .background-wrapper .footer .footer-logo {
    text-align: center;
  }
  .background-wrapper .footer .footer-logo h3 {
    font-size: 2rem;
    margin: 1rem 0;
  }
  .background-wrapper .footer .footer-socials {
    justify-content: center;
    gap: 2.5rem;
  }
  .background-wrapper .footer .footer-socials .social-icon {
    font-size: 1.7rem;
  }
  .background-wrapper .footer .footer-bottom {
    font-size: 0.9rem;
  }
  .light-mode .header .navbar .nav-links {
    padding-top: 2rem;
    margin: 2rem 0;
    position: fixed;
    top: -420px;
    right: -420px;
    width: 420px;
    height: 420px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
    transform: translate(100%, -100%);
  }
  .light-mode .header .navbar .nav-links li {
    margin: 2px 0;
  }
  .light-mode .header .navbar .nav-links li a {
    font-size: 1rem;
    text-decoration: none;
  }
  .light-mode .header .navbar .nav-links .callToActionHeader {
    margin: 1rem 0 0 0;
  }
  .light-mode .header .navbar .nav-links.active {
    top: -89px;
    right: -89px;
    transform: translate(0%, 0%);
    opacity: 1;
  }
  .light-mode .header .navbar .nav-links.closing {
    opacity: 0;
    transform: translate(100%, -100%);
  }
  .light-mode .hero .hero-content {
    position: relative;
    margin-top: 3rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    /* Image en arrière-plan */
    /* Texte centré en premier plan */
  }
  .light-mode .hero .hero-content .pictureCreator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    z-index: -1;
    opacity: 0.5;
    filter: blur(3px);
  }
  .light-mode .hero .hero-content .pictureCreator .image-wrapper {
    width: 300px;
    height: 300px;
  }
  .light-mode .hero .hero-content .pictureCreator .image-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .light-mode .hero .hero-content .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 95%;
    z-index: 2;
  }
  .light-mode .hero .hero-content .content .presentation h1 {
    font-size: 2.5rem;
  }
  .light-mode .hero .hero-content .content .presentation .role {
    font-size: 1.1rem;
  }
  .light-mode .hero .hero-content .content .presentation .email {
    font-size: 1rem;
  }
  .light-mode .hero .hero-content .content .presentation .skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .light-mode .hero .hero-content .content .presentation .skills li {
    font-size: 0.75rem;
  }
  .light-mode .hero .hero-content .content .presentation .cta {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  .light-mode .background-wrapper .projects {
    position: relative;
    padding: 4rem 2.5rem;
    text-align: center;
    /* Galerie Scrollable */
    /* Pop-up Overlay */
    /* Flèche indicatrice en pleine largeur */
  }
  .light-mode .background-wrapper .projects h2 {
    font-size: 1.8rem;
    margin-bottom: 4rem;
  }
  .light-mode .background-wrapper .projects h2::before {
    height: 1px;
  }
  .light-mode .background-wrapper .projects .project-carousel {
    width: 90%;
  }
  .light-mode .background-wrapper .projects .project-carousel .project-wrapper .project-card {
    flex: 0 0 75%;
    max-width: 180px;
  }
  .light-mode .background-wrapper .projects .popup-overlay {
    /* Pop-up Container */
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup {
    /* Pop-up Content */
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-header .popup-title {
    font-size: 1.4rem;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-header .close-popup {
    font-size: 2.2rem;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-image {
    max-width: 100px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 15px;
    left: 15px;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-description {
    font-size: 0.8rem;
    color: #000;
    line-height: 1.6;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies h4 {
    font-size: 1rem;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos {
    gap: 20px;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos img {
    width: 27px;
    height: 27px;
  }
  .light-mode .background-wrapper .projects .popup-overlay .popup .popup-content .popup-technologies .technologies-logos img:hover {
    transform: scale(1.2);
  }
  .light-mode .background-wrapper .projects .scroll-indicator::after {
    font-size: 2.2rem;
  }
  .light-mode .background-wrapper .about .about-text h2 {
    text-align: center;
    font-size: 1.8rem;
  }
  .light-mode .background-wrapper .about .about-text h2::before {
    height: 1px;
  }
  .light-mode .background-wrapper .about .about-text p {
    font-size: 0.9rem;
    line-height: 2;
  }
  .light-mode .background-wrapper .about .about-image img {
    width: 230px; /* Ajuste la taille de l'image pour s’adapter */
    height: 230px;
    margin-top: 30px; /* Ajoute un peu d’espace entre le texte et l’image */
  }
  .light-mode .background-wrapper .contact {
    padding: 4rem 1rem;
  }
  .light-mode .background-wrapper .contact h2 {
    font-size: 1.8rem;
    margin: 2rem 0;
  }
  .light-mode .background-wrapper .contact .contact-info p {
    font-size: 1rem;
    text-align: center;
  }
  .light-mode .background-wrapper .contact .contact-form {
    margin-top: 3rem;
    max-width: 370px;
  }
  .light-mode .background-wrapper .contact .input-group input, .light-mode .background-wrapper .contact .input-group textarea {
    font-size: 0.95rem;
  }
  .light-mode .background-wrapper .contact .cta {
    width: 90%;
  }
  .light-mode .background-wrapper .footer {
    padding: 3rem 1rem;
    text-align: center;
  }
  .light-mode .background-wrapper .footer .footer-container {
    max-width: 400px;
    gap: 3rem;
  }
  .light-mode .background-wrapper .footer .footer-logo {
    text-align: center;
  }
  .light-mode .background-wrapper .footer .footer-logo h3 {
    font-size: 2rem;
    margin: 1rem 0;
  }
  .light-mode .background-wrapper .footer .footer-socials {
    justify-content: center;
    gap: 2.5rem;
  }
  .light-mode .background-wrapper .footer .footer-socials .social-icon {
    font-size: 1.7rem;
  }
  .light-mode .background-wrapper .footer .footer-bottom {
    font-size: 0.9rem;
  }
}
/* ----------------------RESPONSIVE MODE PETIT MOBILE
EN DESSOUS DE 400 PIXELS, LES ELEMENTS S'ACTIVERONT
*/
@media screen and (max-width: 400px) {
  .hero .hero-content {
    margin-top: 7rem;
    padding-bottom: 2rem;
    /* Texte centré en premier plan */
  }
  .hero .hero-content .content .presentation h1 {
    font-size: 2.2rem;
  }
  .hero .hero-content .content .presentation .role {
    font-size: 1rem;
  }
  .hero .hero-content .content .presentation .email {
    font-size: 0.9rem;
  }
  .hero .hero-content .content .presentation .cta {
    padding: 8px 12px;
  }
  .light-mode .hero .hero-content {
    margin-top: 7rem;
    padding-bottom: 2rem;
    /* Texte centré en premier plan */
  }
  .light-mode .hero .hero-content .content .presentation h1 {
    font-size: 2.2rem;
  }
  .light-mode .hero .hero-content .content .presentation .role {
    font-size: 1rem;
  }
  .light-mode .hero .hero-content .content .presentation .email {
    font-size: 0.9rem;
  }
  .light-mode .hero .hero-content .content .presentation .cta {
    padding: 8px 12px;
  }
}/*# sourceMappingURL=style.css.map */