* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    font-family: 'Space Grotesk', sans-serif;
    color: #111;
    text-align: center;
    padding: 2rem;
  }
  
  .contact-container h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
  }
  
  .contact-container p {
    margin: 0.5rem 0;
    font-size: 1rem;
  }
  
  .contact-container a {
    color: black;
    text-decoration: none;
    border-bottom: 1px solid black;
    transition: opacity 0.2s;
  }
  
  .contact-container a:hover {
    opacity: 0.6;
  }


  .about-container {
    padding-top: 200px; /* adapte cette valeur selon la hauteur de ton header */
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 800px;
    margin: 0 auto;
  }



  .about-container h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
  }
  
  .about-container p {
    margin: 0 20% 0;
    font-size: 1rem;
    text-align: justify;
  }
  
  .about-container a {
    color: black;
    text-decoration: none;
    border-bottom: 1px solid black;
    transition: opacity 0.2s;
  }
  
  .about-container a:hover {
    opacity: 0.6;
  }













  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 10;
    backdrop-filter: blur(10px);
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo img {
    height: 80px;
    width: auto;
  }
  
  .menu {
    display: flex;
    gap: 2rem;
  }
  
  .menu a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
  }
  
  .menu a:hover {
    color: #000;
  }




  /* Start https://www.cursors-4u.com */ * {cursor: url(https://cur.cursors-4u.net/sports/spo-1/spo16.ani), url(https://cur.cursors-4u.net/sports/spo-1/spo16.png), auto !important;} /* End https://www.cursors-4u.com */











  /* Menu burger caché par défaut sur desktop */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #111;
}

/* Responsive mobile */
@media screen and (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    top: 100px; /* ajuste selon la hauteur de ton header */
    right: 0;
    width: 100%;
    flex-direction: column;
    background: white;
    padding: 1rem 2rem;
    z-index: 10;
  }

  .menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}