* {
  margin: 0;
  padding: 0;
}

html {
  overflow-y: scroll;
}


body {
  font-family: 'Coolvetica Rg', sans-serif;
  background-color: #000000;
  color: white;
}

header {
  position: sticky;
  top: 0;
  background: #000000;
  backdrop-filter: blur(8px);
  padding: 0px 40px;
  display: flex;
  align-items: center;
  z-index: 1000;
  border-bottom: 2px solid #89CFF0;
}


nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #89CFF0;
}

.logo-link {
  margin-right: auto;
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  width: 70px;
  padding : 10px;
}

.footer {
  color: #ffffff;
  padding: 20px 0;
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.footer-container {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.footer-line {
  width: 100vw;
  max-width: 800px;
  border: none;
  border-top: 3px solid #89CFF0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.footer-text {
  display: inline-block;
  background-color: #000000;
  padding: 0 30px;
  position: relative;
  z-index: 2;
  font-size: 15px;
}



h1 {
      font-size: 50px;
      margin-bottom: 15px;
      margin-top: 50px;
      text-align: center;
    }


.content {
  display: flex;
  justify-content: center;
  margin: 60px auto;
}
.propos-content {
  display: flex;
  flex-direction: row; /* Texte à gauche, photo à droite */
  align-items: center;
  gap: 40px;
  background-color: #0a0a23;
  border: 1px solid #ffffff;
  border-radius: 10px;
  padding: 30px 40px;
  box-shadow: 0 0 10px #89CFF0aa;
  max-width: 900px;
  width: 100%;
}

.propos-text {
  flex: 1;
  color: white;
}

.propos-photo img {
  width: 280px;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 8px #89CFF0aa;
}

.propos-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
    padding: 10px 15px;
    border: 2px solid #89CFF0;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

.btn:hover {
  background-color: #89CFF0;
  color: #000000;
}




/* --- Media Queries pour la responsivité --- */

@media (max-width: 768px) {
  header {
    padding: 0px 20px; /* Réduire le padding du header sur petits écrans */
  }

  nav ul {
    gap: 15px; /* Réduire l'espacement des liens de navigation */
  }

  h1 {
    font-size: 40px; /* Réduire la taille du titre */
    margin-top: 30px;
  }

  .propos-content {
    flex-direction: column; /* La photo passe au-dessus du texte */
    text-align: center; /* Centrer le texte pour les petits écrans */
    padding: 20px 25px; /* Ajuster le padding */
    gap: 30px; /* Ajuster l'espacement entre les éléments */
  }

  .propos-photo {
    /* Pour centrer l'image si elle n'est pas déjà un bloc flex */
    width: 100%; /* L'image prend toute la largeur disponible */
    display: flex;
    justify-content: center;
    order: -1; /* Place la photo avant le texte dans le flux */
  }

  .propos-photo img {
    width: 200px; /* Taille plus petite pour la photo sur mobile */
    height: 250px; /* Ajuster la hauteur en conséquence */
  }

  .propos-text {
    text-align: center; /* S'assurer que le texte est bien centré */
  }

  .propos-buttons {
    justify-content: center; /* Centrer les boutons */
    margin-top: 20px; /* Ajuster l'espacement au-dessus des boutons */
    width: 100%; /* S'assurer que les boutons occupent l'espace */
  }

  .btn {
    width: calc(50% - 10px); /* Pour que les boutons soient sur une ligne si deux, ou empilés */
    box-sizing: border-box; /* Inclure padding et border dans la largeur */
    margin: 5px 0; /* Un peu d'espacement vertical entre les boutons si empilés */
  }
}

/* Optionnel: Media Query pour les très petits écrans (smartphones) */
@media (max-width: 480px) {
  .btn {
    width: 100%; /* Chaque bouton prend toute la largeur */
  }

  nav ul {
    flex-direction: column; /* Les éléments de navigation s'empilent */
    align-items: center; /* Centrer les éléments */
    gap: 10px;
  }

  header {
    flex-direction: column; /* Le logo au-dessus de la nav */
    padding: 15px 10px;
  }

  .logo-link {
    margin-right: 0;
    margin-bottom: 10px;
  }
}