/* Fond du body */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap');



/* Mettez ça AU DÉBUT de votre CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
}


body {
  background-image: url("img/fond-site-web.webp"); /* Assure-toi que le chemin est correct */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed; /* pour effet parallaxe */
  font-family: 'Space Grotesk', sans-serif;
  color: rgb(11, 8, 8); /* couleur du texte si ton fond est sombre */
  position: relative;
  z-index: 0; /* L'image de fond doit être tout en bas de l'empilement */
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Overlay semi-transparent */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Ombre à 50% de transparence */
  z-index: 1; /* L'overlay doit être juste au-dessus de l'image de fond */
}

/* Pour que le contenu ne soit pas caché derrière l'overlay */
body > *:not(.overlay) {
  position: relative;
  z-index: 2; /* Tous les autres éléments doivent être au-dessus de l'overlay */
}

/* Hero Section */
.hero-section {
  position: relative;
  background: transparent; /* Pour laisser le fond visible derrière */
  height: 100vh; /* Hauteur de la section en fonction de la taille de l'écran */
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Aligné en haut */
  color: white;
  padding-top: 50px; /* Espace pour ta photo */
}

/* Contenu de la section */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
  position: relative;
}

/* Photo profil avec masque arrondi */
.hero-image1 {
  width: 250px; /* Taille de l'image de ta tête */
  height: 250px;

  border-radius: 50%;
  overflow: hidden; /* Cache la partie qui dépasse */
  border: 4px solid white; /* Bordure blanche pour effet */
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3); /* Ombre douce autour de l'image */
  margin-bottom: 20px; /* Espace entre l'image et le texte */
  transition: transform 0.3s ease;
}

.hero-image1 img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Garde l'image bien recadrée */
}

/* Titre et texte */
.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.hero-content p {
  font-size: 1.2rem;
  font-weight: 400;
  color: #ccc;
  max-width: 90%;
  font-family: 'Lora', serif;
}

/* Effet au survol de l'image */
.hero-image1:hover {
  transform: scale(1.05); /* Légère augmentation de la taille de l'image au survol */
}

/* Responsive */
@media (max-width: 768px) {
  .hero-image1 {
    width: 150px;
    height: 150px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
  .header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* au lieu de center */
    padding-top: 0.5rem;
  }
  .mobile-logo {
    height: 50px; /* Base height for larger screens */
    width: auto; /* Width maintains proportions */
    object-fit: contain;
    position: absolute;
    top: 25px;
    right: 20px;
}

@media screen and (max-width: 768px) {
    .mobile-logo {
        height: 70px; /* Increased height for mobile view */
        top: 20px; /* Adjusted position for the larger logo */
        right: 20px;
    }
}

}
/* === GLOBAL === */



/* Reset CSS pour éliminer les marges du navigateur */
#header-pc {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  background: #12161e;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
  height: 130px;
  width: 100%;
  margin: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#header-pc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  height: 100%;
  background: #12161e;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  z-index: -1;
}
*/

/* Le reste du CSS reste inchangé */
#menu-pc {
  display: flex;
  align-items: center;
  justify-content: center;

}


/* LOGO */
#logo-header {
  height: 65px;
  transition: transform 0.3s ease;
}
#logo-header:hover {
  transform: scale(1.1);
}

/* BARRE VERTICALE */
.vertical-bar {
  width: 2px;
  height: 30px;
  background-color: #00bfff;
  margin: 0 20px;
}

/* MENU PC */
#menu-pc ul {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
#menu-pc li a {
  position: relative;
  padding: 10px;
  font-weight: bold;
  font-size: 18px;
  color: #00bfff;
  text-decoration: none;
  transition: color 0.3s ease;
}
#menu-pc li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #f7931a;
  transition: width 0.3s ease-in-out;
}
#menu-pc li a:hover::after {
  width: 100%;
}
#menu-pc li a:hover {
  color: #f7931a;
}
#menu-pc li a::before {
  content: ".";
  opacity: 0;
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s ease, right 0.3s ease;
  font-size: 18px;
  color: #f7931a;
}
#menu-pc li a:hover::before {
  opacity: 1;
  right: -20px;
}

/* === MENU MOBILE === */
/* Header pour les petits écrans (mobile) */
/* Header mobile */
/* Header mobile */
#header-tel {
  display: none; /* Par défaut, on cache ce header */
  background: #12161e ;
  padding: 10px 25px;
  justify-content: flex-start; /* Aligner à gauche le contenu dans le header */
  align-items: center; /* Centrer verticalement les éléments */
  position: relative;
  width: 100%;
  z-index: 10;

}

/* Assurer que le background couvre correctement */
#header-tel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw; /* Prendre toute la largeur de la fenêtre */
  height: 100%; /* Prendre toute la hauteur de l'élément parent */
  background: #12161e; /* Arrière-plan sombre */
  z-index: -1; /* Placer l'arrière-plan derrière le contenu */
}

/* Affichage du bouton et des éléments du header */
@media (max-width: 768px) {
  #header-tel {
    display: flex; /* Affichage en flexbox pour mobile */
  }

  /* Menu button */
  .menu-button {
    font-size: 28px;
    color: #00bfff;
    background: none;
    border: 2px solid #00bfff;
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    display: flex; /* Utiliser flexbox pour le bouton */
    align-items: center; /* Centrer le texte */
    justify-content: center; /* Centrer le texte */
    padding: 10px 20px; /* Ajuster la taille du bouton */
    margin-left: 10px; /* Espacement à gauche pour éloigner du bord */
  }

  /* Effet de survol pour le bouton */
  .menu-button:hover {
    background-color: #00bfff;
    color: #fff;
  }
}



.menu-button:hover {
  background-color: #00bfff;
  color: #fbfbfb;
}

.menu {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100vh;
  background: #0f111a;
  padding: 30px 20px;
  transition: left 0.3s ease-in-out;
  z-index: 999;
  box-shadow: 2px 0 10px rgba(0,0,0,0.4);

}
.menu.active {
  left: 0;
}
.menu ul {
  list-style: none;
  margin-top: 60px;
  padding: 0;
}
.menu li {
  margin: 30px 0;
}
.menu li a {
  font-size: 20px;
  font-weight: 600;
  color: #00bfff;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.menu li a:hover {
  color: #f7931a;
}
.menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #f7931a;
  transition: width 0.3s;
}
.menu li a:hover::after {
  width: 100%;
}
.menu li a::before {
  content: "";
  opacity: 0;
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s ease, right 0.3s ease;
  font-size: 18px;
  color: #f7931a;
}
.menu li a:hover::before {
  opacity: 1;
  right: -35px;
}

/* === RESPONSIVE === */
@media screen and (max-width: 768px) {
  #header-pc {
    display: none;
  }
  #header-tel {
    display: flex;
    z-index: 1000;
  }
}



/* Bouton croix pour fermer le menu mobile */
.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 26px;
  background: none;
  color: #00bfff;
  border: none;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s ease;
}

.close-button:hover {
  color: #f7931a;

}
.cta-button1 {

  align-items: center;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: bold;
  color: #00bfff;
  background-color: transparent;
  border: 2px solid #00bfff;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
  text-decoration: none;
}
.cta-button1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background-color: #f7931a; /* Bitcoin orange */
  z-index: -1;
  transition: width 0.4s ease;
}

.cta-button1:hover::before {
  width: 100%;
}

.cta-button1:hover {
  color: #ffffff; /* Ton fond sombre pour contraste */
  border-color: #f7931a;
}
.cta-button {
  padding: 12px 30px;
  font-size: 18px;
  font-weight: bold;
  color: #00bfff;
  background-color: transparent;
  border: 2px solid #00bfff;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
  text-decoration: none;
  align-items: center;
}
@media (max-width: 768px) {
  .cta-button {
    padding: 10px 25px;
    font-size: 16px;
  }
}

.cta-button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background-color: #f7931a; /* Bitcoin orange */
  z-index: -1;
  transition: width 0.4s ease;
}

.cta-button:hover::before {
  width: 100%;
}

.cta-button:hover {
  color: #ffffff; /* Ton fond sombre pour contraste */
  border-color: #f7931a;
}
/* Style de la section contenant le texte */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  padding-top: 100px;
  max-width: 100%;
}

/* Titre principal */
.typewriter {
  font-size: 120px; /* Taille de la police */
  color: #00bfff; /* Couleur du texte */
  white-space: nowrap; /* Empêche le texte de se casser sur plusieurs lignes */
  overflow: hidden; /* Cache le texte qui déborde */
  border-right: 4px solid black; /* Curseur */
  width: 0%; /* Au départ, aucun texte visible */
  font-family: 'Space Grotesk', sans-serif;
  animation: typewriter 3s steps(40) 0s 1 normal both, blink 0.75s step-end infinite; /* Animation du texte */
}
.typewriter {
  font-size: 80px;

  font-weight: bold;
  color: #e7f3f7;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
}

.highlight-orange {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.highlight-orange::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 60%;
  background: #ffa500;
  opacity: 0.7;
  transform: scaleX(0);
  transform-origin: left;
  animation: highlightDraw 1s ease-out forwards;
  animation: highlightDraw 1s ease-out forwards, shake 0.6s infinite ease-in-out;
}

  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-1px); }
    75% { transform: translateX(1px); }
  }



/* Animation surligneur */
@keyframes highlightDraw {
  to {
    transform: scaleX(1);
  }
}

/* Animation de la machine à écrire */
@keyframes typewriter {
  from {
    width: 0%; /* Aucun texte au début */
  }
  to {
    width: 100%; /* Affichage complet du texte */
  }
}

/* Clignotement du curseur */
@keyframes blink {
  0% {
    border-right: 4px solid transparent;
  }
  50% {
    border-right: 4px solid transparent;
  }
  100% {
    border-right: 4px solid transparentk;
  }
}
@keyframes highlightDraw {
  to {
    transform: scaleX(1);
  }
}

/* 🔥 Responsive: tailles adaptables */
@media (max-width: 1200px) {
  .typewriter {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .typewriter {
    font-size: 25px; /* Taille réduite pour s'adapter mieux aux petites tailles d'écrans */



  }

  .line {
    border-right: 2px solid black;
  }
}


@media (max-width: 480px) {
  .typewriter {
    font-size: 28px;
  }
  .line {
    border-right: 2px solid black;
  }
}
.separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 40px;
  gap: 20px;
}

.separator .line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, #00bfff, transparent);
  opacity: 0.6;
}

.avatar.emoji {
  font-size: 36px;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
    margin-bottom: 15px;
    text-align: center; /* Centrage du texte */
  }
}

/* Animation glow/pulse */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px #00bfff88;
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00bfffcc;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px #00bfff88;
  }
}
@media (max-width: 480px) {
  .separator .avatar img {
    width: 40px;
    height: 40px;
  }
}
/* Section Skills - Style avancé pour portfolio de développeur */
#skills {
  color: #f1f1f1;
  padding: 60px 20px;
  font-family: 'Space Grotesk', sans-serif;

  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  #skills {
      margin-top: 0px; /* Aucune marge en haut de la section sur les écrans mobiles */
      color: #f1f1f1;
  }

}

#skills .container {
  position: relative;
  z-index: 1;
}

#skills h2 {
  font-size: 3.5rem;
  color: #00e0ff;
  text-transform: uppercase;
  margin-bottom: 50px;
  letter-spacing: 4px;
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

#skills h2::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #00e0ff, transparent);
  bottom: -15px;
  left: 20%;
  border-radius: 2px;
}

.skill-bars {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 900px;
  margin: auto;
  perspective: 1000px;
}

.skill-bar {
  background: rgba(30, 30, 30, 0.7);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 224, 255, 0.2);
  position: relative;
  height: 60px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 224, 255, 0.1);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.skill-bar:hover {
  transform: rotateX(5deg) scale(1.02);
  box-shadow: 0 0 30px rgba(0, 224, 255, 0.4);
}

.skill-name {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  z-index: 2;
  color: #f1f1f1;
  font-size: 1.2rem;
  text-shadow: 0 0 8px rgba(0, 224, 255, 0.8);
  transition: all 0.3s ease;
}

.skill-bar:hover .skill-name {
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: #00e0ff;
}

/* Effet de remplissage fluide avec un bleu dégradé */
.skill-level {
  height: 60px;
  width: 0; /* La largeur commence à 0 */
  background: linear-gradient(90deg, rgba(100, 181, 255, 0.7), rgba(0, 77, 150, 0.7));


  border-radius: 16px 0 0 16px;
  transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1); /* Animation fluide */
  position: relative;
  box-shadow: inset 0 0 20px rgba(16, 0, 0, 0.2);
}

/* Effet de pulsation lumineux (facultatif) */
@keyframes flicker {
  0% { box-shadow: 0 0 5px #00e0ff, 0 0 10px #00e0ff, 0 0 15px #00e0ff; }
  50% { box-shadow: 0 0 10px #00e0ff, 0 0 20px #00e0ff, 0 0 30px #00e0ff; }
  100% { box-shadow: 0 0 5px #00e0ff, 0 0 10px #00e0ff, 0 0 15px #00e0ff; }
}

/* Affichage du pourcentage de compétence */
.skill-bar::after {
  content: attr(data-level) '%';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  color: #00e0ff;
  font-weight: bold;
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(0, 224, 255, 0.5);
  opacity: 0;
  transition: opacity 0s ease;
}

.skill-bar:hover::after {
  opacity: 0;
}

/* Animation d'entrée des barres */
@keyframes slideIn {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.skill-bar {
  animation: slideIn 0.6s ease forwards;
  opacity: 0;
}

.skill-bar:nth-child(1) { animation-delay: 0.1s; }
.skill-bar:nth-child(2) { animation-delay: 0.3s; }
.skill-bar:nth-child(3) { animation-delay: 0.5s; }
.skill-bar:nth-child(4) { animation-delay: 0.7s; }
.skill-bar:nth-child(5) { animation-delay: 0.9s; }

@media screen and (max-width: 768px) {
  #skills {
    padding: 40px 15px;
    margin-top: 40px;
  }

  #skills h2 {
    font-size: 2.5rem;
    margin-bottom: 35px;
  }

  .skill-bars {
    gap: 25px;
  }

  .skill-name {
    font-size: 1.1rem;
    left: 15px;
  }

  .skill-bar::after {
    font-size: 1.1rem;
    right: 15px;
  }
}

.quote-banner {
  width: 100vw;
  height: 200px; /* Hauteur ajustable selon le rendu souhaité */
  background-image: url('background.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  margin-top: 30px;
  box-shadow: inset 0 0 100px rgba(9, 48, 97, 0.5); /* pour contraste si le fond est lumineux */
}

.quote-text {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  max-width: 90%;
  line-height: 1.4;
  text-shadow: 0 2px 5px rgba(0,0,0,0.6); /* Pour lisibilité sur fond chargé */
}
@media (max-width: 768px) {
  .quote-banner {
    height: auto;
    padding: 40px 20px;
  }

  .quote-text {
    font-size: 1.3rem;
    line-height: 1.5;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .quote-text {
    font-size: 1.1rem;
  }
}
.neon-text {
  color: #00f2ff;
  text-shadow: 0 0 5px #00f2ff, 0 0 10px #00f2ff, 0 0 20px #00f2ff;
  animation: pulse-neon 2s infinite ease-in-out;
  font-weight: bold;
}

@keyframes pulse-neon {
  0%, 100% { text-shadow: 0 0 5px #00f2ff; }
  50% { text-shadow: 0 0 20px #00f2ff, 0 0 40px #00f2ff; }
}
/* Conteneur des flèches */
.arrow-wrapper {
  position: relative;
  width: 100%;
  height: 80px; /* Ajuste la hauteur des flèches */
  margin-bottom: 0; /* Retirer le chevauchement excessif avec la section suivante */
  z-index: 1;
}

/* Flèches diagonales */
.arrow {
  position: absolute;
  width: 60px; /* Ajuste la taille des flèches */
  height: 60px;
  border: solid #00f2ff;
  border-width: 0 6px 6px 0;
  opacity: 0.8;
  animation: move-arrow 2s infinite alternate ease-in-out;
}

/* Flèche de gauche */
.arrow-left {
  top: 50%;
  left: 10%;
  transform: translateY(-50%) rotate(0deg); /* Centre la flèche */
}

/* Flèche de droite */
.arrow-right {
  top: 50%;
  right: 10%;
  transform: translateY(-50%) rotate(0deg); /* Centre la flèche */
}

/* Animation fluide */
@keyframes move-arrow {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(10px) rotate(7deg);
  }
}

/* Animation spécifique pour la flèche droite */
.arrow-right {
  animation: move-arrow-right 2s infinite alternate ease-in-out;
}

@keyframes move-arrow-right {
  0% {
    transform: translateY(0) rotate(90deg);
  }
  100% {
    transform: translateY(10px) rotate(97deg);
  }
}

/* Ajustements pour les petits écrans (responsive) */
@media (max-width: 768px) {
  .arrow {
    width: 40px; /* Réduire la taille des flèches */
    height: 40px;
    border-width: 0 4px 4px 0; /* Ajuster l'épaisseur des bordures */
  }

  .arrow-left, .arrow-right {
    top: 45%; /* Ajuster la position verticale sur mobile */
  }
}

/* Footer Futuriste Web3 - Portfolio Dev Freelance */
/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

main {
  flex: 1;
}

/* Styles principaux du footer */
.footer {
  color: #e0f7ff;
  padding: 60px 20px 40px;
  font-family: 'Space Grotesk', 'Orbitron', sans-serif;
  position: relative;
  overflow: hidden;
  width: 100%;
  z-index: 1;
}

/* Effet de grille */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: -1;
}

/* Ligne supérieure avec effet glitch */
.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    #00f2ff 0%,
    #00c3ff 15%,
    #00f2ff 25%,
    #8f00ff 40%,
    #00f2ff 50%,
    #00f2ff 60%,
    #00f2ff 80%,
    #8f00ff 100%
  );
  background-size: 300% 100%;
  box-shadow:
    0 0 8px rgba(0, 242, 255, 0.6),
    0 0 12px rgba(0, 242, 255, 0.4);
  opacity: 0.9;
  animation: moveGradient 6s linear infinite;
  z-index: 5;
}

/* Container principal */
.footer-container {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* Section branding */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00f2ff, #8f00ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 8px rgba(0, 242, 255, 0.3);
  letter-spacing: 2px;
}

.footer-tagline {
  font-size: 0.9rem !important;
  font-weight: 300 !important;
  margin-bottom: 20px;
  color: #a0c3d9 !important;
  max-width: 370px;
  line-height: 1.6;
}

/* Sections de liens */
.footer-links-section {
  position: relative;
}

.footer-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
  letter-spacing: 1px;
}

.footer-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #00f2ff, transparent);
  border-radius: 3px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-link {
  color: #c0d8e8;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 20px;
  font-size: 1.05rem;
}

.footer-link::before {
  content: '>';
  position: absolute;
  left: 0;
  color: #00f2ff;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #00f2ff;
  transform: translateX(7px);
  text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

.footer-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Contact items */
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: #c0d8e8;
  transition: all 0.3s ease;
}

.contact-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00f2ff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.contact-item:hover {
  color: #00f2ff;
  transform: translateX(5px);
}

.contact-item:hover .contact-icon {
  transform: scale(1.2);
  text-shadow: 0 0 10px #00f2ff;
}

/* Social links */
.social-links {
  display: flex;
  gap: 18px;
  margin-top: 25px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 242, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c0d8e8;
  font-size: 1.2rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  z-index: 1;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #00f2ff, #8f00ff);
  opacity: 0;
  z-index: -1;
  transform: scale(0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-link:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 242, 255, 0.4);
}

.social-link:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* Tech badges */
.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.tech-badge {
  padding: 5px 12px;
  background: rgba(0, 242, 255, 0.1);
  border: 1px solid rgba(0, 242, 255, 0.2);
  border-radius: 20px;
  font-size: 0.85rem;
  color: #00f2ff;
  transition: all 0.3s ease;
}

.tech-badge:hover {
  background: rgba(0, 242, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 242, 255, 0.3);
}

/* Availability badge */
.availability-badge {
  display: block;
  width: fit-content;
  background: rgba(0, 255, 117, 0.1);
  border: 1px solid rgba(0, 255, 117, 0.3);
  border-radius: 20px;
  padding: 5px 15px;
  color: #00ff75;
  font-size: 0.9rem;
  margin: 30px 0 0;
}

.availability-badge::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff75;
  box-shadow: 0 0 10px #00ff75;
  animation: pulse 2s infinite;
}

/* Footer bottom */
.footer-bottom {
  position: relative;
  margin-top: 50px;
  padding-top: 30px;
  text-align: center;
  color: #90a4b8;
  font-size: 0.95rem;
  z-index: 10;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(0, 242, 255, 0.3),
    rgba(143, 0, 255, 0.3),
    rgba(0, 242, 255, 0.3),
    transparent
  );
  transform: translateX(-50%);
}

.footer-rights {
  margin-bottom: 15px;
}

.footer-credits a {
  color: #00f2ff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-credits a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #00f2ff;
  transition: all 0.3s ease;
}

.footer-credits a:hover {
  text-shadow: 0 0 8px rgba(0, 242, 255, 0.5);
}

.footer-credits a:hover::after {
  width: 100%;
}

/* Animations */
@keyframes moveGradient {
  0% { background-position: 0% 0; }
  100% { background-position: 300% 0; }
}

@keyframes pulse {
  0% { opacity: 0.6; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 0.6; transform: scale(0.9); }
}

@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 30px 30px; }
}

@keyframes glitchLine {
  0%, 100% { opacity: 1; }
  33% { opacity: 0.8; }
  66% { opacity: 0.5; }
  77% { opacity: 0.9; }
  88% { opacity: 0.7; }
}

/* Responsive design */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 15px 30px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-tagline {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-section-title {
    text-align: center;
  }

  .footer-section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-link {
    justify-content: center;
    padding-left: 0;
  }

  .footer-link::before {
    display: none;
  }

  .contact-item {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .availability-badge {
    margin: 30px auto 0;
  }

  .tech-badges {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 12px 25px;
  }

  .footer-logo {
    font-size: 2.2rem;
  }

  .footer-section-title {
    font-size: 1.15rem;
  }

  .social-links {
    gap: 10px;
  }

  .social-link {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}



/* Style du titre */
#h1-titre {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin: 3rem 0;
  color: #f8f8f8;
  letter-spacing: 1px;
  position: relative;
}

#h1-titre::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #00bfff;
  border-radius: 2px;
}

/* Style du formulaire */
#form-style {
  max-width: 650px;
  width: 100%;
  margin: 0 auto 3rem;
  padding: 2rem;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

#contactForm {
  display: flex;
  flex-direction: column;
}

#contactForm label {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 1.5rem;
  border: 1px solid #5c5c5c;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

#contactForm input:focus,
#contactForm textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

#contactForm textarea {
  min-height: 150px;

  resize: vertical;
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
  color: #aaa;
  font-weight: 300;
}

/* Style du bouton */
#button-style {
  display: flex;
  justify-content: flex-end;
}

#button-form {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

#button-form:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#button-form:active {
  transform: translateY(0);
}

/* Media Queries pour responsive design */
/* Grand écran (ordinateurs, plus grands que 1200px) */
@media (min-width: 1201px) {
  #form-style {
    padding: 2.5rem;
  }
}

/* Écrans moyens (ordinateurs portables, 992px à 1200px) */
@media (max-width: 1200px) {
  #h1-titre {
    font-size: 2.2rem;
  }
}

/* Tablettes (768px à 991px) */
@media (max-width: 991px) {
  #h1-titre {
    font-size: 2rem;
    margin: 2.5rem 0;
  }

  #form-style {
    max-width: 90%;
  }
}

/* Petites tablettes et grands smartphones (576px à 767px) */
@media (max-width: 767px) {
  #h1-titre {
    font-size: 1.8rem;
    margin: 2rem 0;
  }

  #form-style {
    padding: 1.5rem;
    max-width: 100%;
  }

  #button-style {
    justify-content: center;
  }

  #button-form {
    width: 100%;
    max-width: 300px;
  }
}

/* Smartphones (moins de 576px) */
@media (max-width: 575px) {
  #h1-titre {
    font-size: 1.5rem;
    margin: 1.5rem 0;
  }

  #h1-titre::after {
    width: 60px;
    height: 3px;
  }

  #form-style {
    padding: 1.25rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }

  #contactForm label {
    font-size: 0.9rem;
  }

  #contactForm input,
  #contactForm textarea {
    padding: 10px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  #contactForm textarea {
    min-height: 120px;
  }

  #button-form {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Très petits écrans (moins de 360px) */
@media (max-width: 359px) {
  #h1-titre {
    font-size: 1.3rem;
  }

  #form-style {
    padding: 1rem;
  }

  #contactForm input,
  #contactForm textarea {
    padding: 8px;
  }
}
.about-main {
  font-family: 'Montserrat', sans-serif;
  padding: 60px 20px;

  color: #222;
}

.about-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;

  color: white;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    padding: 0 15px;
  }

  .about-text h1 {
    font-size: 2.2rem;
    text-align: center;
  }

  .about-text h2 {
    font-size: 1.2rem;
    text-align: center;
  }

  .about-text p {
    font-size: 1rem;
    text-align: justify;
  }

  .about-image {
    text-align: center;
  }

  .about-image img {
    max-width: 90%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .about-text h1 {
    font-size: 1.8rem;
  }

  .about-text h2 {
    font-size: 1rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .about-main {
    padding: 40px 15px;
  }

  .about-hero {
    padding: 40px 0;
  }
}

.skills-section {
  padding: 60px 0;

  text-align: center;
}

.skills-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #ffffff;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.skills-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .skills-section {
    text-align: center; /* Centrer le texte de la section */
  }

  .skills-grid {
    display: flex;
    flex-direction: column; /* Empiler les éléments de la grille verticalement */
    align-items: center; /* Centrer les éléments horizontalement */
    justify-content: center; /* Aligner verticalement au centre */
  }

  .skill-card {
    margin-bottom: 20px; /* Espacer les cartes */
    width: 80%; /* Ajuster la largeur des cartes pour qu'elles ne prennent pas toute la largeur de l'écran */
  }

  .skill-icon {
    font-size: 40px; /* Ajuster la taille de l'icône */
  }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.skill-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;

  /* Centrage vertical */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%; /* Pour s'assurer qu'il prend toute la largeur de sa cellule grid */
}

.skill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.skill-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #00f2ff;
}

.skill-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.skill-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

/* Tablettes */
@media screen and (max-width: 992px) {
  .section-title {
    font-size: 2.2rem;
  }

  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
  }

  .skill-card {
    padding: 25px;
  }

  .skill-icon {
    font-size: 2.2rem;
  }

  .skill-card h3 {
    font-size: 1.3rem;
  }
}

/* Grands mobiles */
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .skill-card {
    padding: 20px;
    border-radius: 15px;
  }

  .skill-icon {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .skill-card h3 {
    font-size: 1.2rem;
  }
}

/* Petits mobiles */
@media screen and (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .skills-grid {
    grid-template-columns: 1fr; /* Une seule colonne sur petits écrans */
    gap: 15px;
  }

  .skill-card {
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    width: 100%; /* Prendre toute la largeur en mobile */
    min-height: 180px; /* Hauteur minimale pour assurer l'espace pour le centrage */
  }

  .skill-card:hover {
    transform: translateY(-5px);
  }

  .skill-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .skill-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .skill-card p {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
}

/* Très petits écrans */
@media screen and (max-width: 360px) {
  .section-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .skill-card {
    padding: 12px;
    border-radius: 10px;
    min-height: 160px;
  }

  .skill-icon {
    font-size: 1.6rem;
  }

  .skill-card h3 {
    font-size: 1rem;
  }

  .skill-card p {
    font-size: 0.85rem;
  }
}
.progress-bar {
  width: 100%;
  background-color: #eee;
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, #00f2ff, #6e00ff);
  width: 0;
  border-radius: 5px;
  animation: fillProgress 2s ease forwards;
}

@keyframes fillProgress {
  0% { width: 0; }
  100% { width: var(--progress-width); }
}



.animated-brand {
  font-style: italic;
  font-weight: bold;
  color: #00bfff;
  animation: riseFade 1.2s ease-out forwards;
  display: inline-block;
  opacity: 0;
}

@keyframes riseFade {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.animated-brand {
  font-style: italic;
  font-weight: bold;
  color: #00bfff;
  animation: riseFade 1.2s ease-out forwards;
  display: inline-block;
  opacity: 0;
}

@keyframes riseFade {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.timeline-section {
  padding: 60px 20px;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 60px;
  border-left: 3px solid #00bfff;
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateX(-50px);  /* Commence à gauche de manière invisible */
  animation: slideIn 0.6s forwards;  /* Animation pour faire apparaître et glisser les éléments */
}

.timeline-item:nth-child(1) {
  animation-delay: 0.2s;
}

.timeline-item:nth-child(2) {
  animation-delay: 0.4s;
}

.timeline-item:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes slideIn {
  0% {
    transform: translateX(-50px); /* Début : 50px à gauche */
    opacity: 0;
  }
  100% {
    transform: translateX(0);  /* Fin : position normale */
    opacity: 1;
  }
}

.timeline-dot {
  position: absolute;
  top: 25px;
  left: -45px;
  width: 30px; /* Ajuste la largeur du logo */
  height: 30px; /* Ajuste la hauteur du logo */
  background-image: url('img/cardano.png'); /* Remplace par l'URL de l'image ou le chemin local */
  background-size: cover; /* Assure que l'image couvre tout l'espace du cercle */
  background-position: center; /* Centre l'image dans le cercle */
  border-radius: 50%; /* Garder l'image dans une forme ronde */
  border: 3px solid white; /* Bordure blanche autour de l'image */

}

@media screen and (max-width: 768px) {
  .timeline-dot {
    width: 25px; /* Réduire la taille du logo */
    height: 25px;
  }
}

.timeline-content {
  background: white;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  position: relative;
}

.timeline-content:hover {
  transform: translateY(-5px);
}

.timeline-content h3 {
  margin-top: 0;
  color: #00bfff;
  font-size: 20px;
}

.timeline-date {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #888;
  margin-bottom: 8px;
}

:focus-visible {
  outline: 2px solid 00bfff; /* vert par exemple */
  outline-offset: 4px;
  border-radius: 4px;
  transition: outline 0.2s ease-in-out;
}



/* --- Responsive Design pour mobiles --- */

/* Ajustements pour écrans <= 768px */
@media (max-width: 768px) {
  /* Ajustement général des paddings et marges */
  body, .hero-section, .about-main, .skills-section {
    padding: 20px;
  }

  /* Redimensionner l'image de profil */
  .hero-image1 {
    width: 150px;
    height: 150px;
  }

  /* Réduction de la taille des titres */
  .hero-content h1,
  .about-text h1,
  .section-title,
  #h1-titre {
    font-size: 2rem;
  }

  /* Ajustement des paragraphes */
  .hero-content p,
  .about-text p,
  .skill-card p {
    font-size: 1rem;
  }

  /* Menu mobile bouton plus accessible */
  .menu-button, .close-button {
    font-size: 24px;
    padding: 8px 12px;
  }
}

/* Ajustements pour écrans <= 480px */
@media (max-width: 480px) {
  .hero-image1 {
    width: 120px;
    height: 120px;
  }

  .typewriter {
    font-size: 24px;
  }

  .hero-content p,
  .about-text p,
  .skill-card p {
    font-size: 0.95rem;
  }

  .footer-logo {
    font-size: 2rem;
  }

  .quote-text {
    font-size: 1.1rem;
  }
}

/* Ajustements pour écrans <= 360px */
@media (max-width: 360px) {
  .hero-content h1,
  .about-text h1,
  .section-title {
    font-size: 1.6rem;
  }

  .cta-button {
    padding: 8px 20px;
    font-size: 14px;
  }
}

/* Ajustements pour écrans <= 320px */
@media (max-width: 320px) {
  .hero-content h1,
  .about-text h1,
  .section-title {
    font-size: 1.4rem;
  }

  .hero-content p,
  .about-text p,
  .skill-card p {
    font-size: 0.9rem;
  }

  .menu-button, .close-button {
    font-size: 22px;
  }
}



/* --- Corrections supplémentaires demandées --- */

/* Fixer le header mobile en haut de l'écran */
@media (max-width: 768px) {
  #header-tel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 18px;
    background: #12161e;
  }

  /* Pour éviter que le contenu passe sous le header fixe */
  body {
    padding-top: 80px; /* hauteur approximative du header */
  }
}

/* Uniformiser le footer sur toutes les pages */
.footer {
  position: relative;
  bottom: 0;
  width: 100%;

  padding: 50px 20px;
  font-family: 'Space Grotesk', 'Orbitron', sans-serif;
  color: #e0f7ff;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.footer-bottom {
  margin-top: 30px;
  font-size: 0.9rem;
  color: #90a4b8;
}
