/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Typo globale */
  body {
    font-family: 'Space Grotesk', sans-serif;
    background: #fff;
    color: #111;
    line-height: 1.6;
  }
  
  /* Header */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  }
  
  /* Conteneur de navigation */
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Logo */
  .logo img {
    height: 60px;
    width: auto;
  }
  
  /* Menu desktop */
  .menu {
    display: flex;
    gap: 1.5rem;
  }
  
  .menu a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
  }
  
  .menu a:hover {
    color: #000;
  }
  
  /* Bouton hamburger (mobile) */
  .menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    user-select: none;
  }
  
  /* Contenu principal */
  .about-container {
    padding: 140px 1.5rem 2rem; /* 140px pour passer sous le header */
    max-width: 800px;
    margin: 0 auto;
  }
  
  .about-container h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .about-container p {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  
  /* Lien externe */
  .about-container a {
    color: #111;
    text-decoration: underline;
  }
  
  .about-container a:hover {
    color: #000;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .menu {
      display: none;
      flex-direction: column;
      background: white;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      padding: 1rem 2rem;
      border-top: 1px solid #ddd;
    }
  
    .menu.show {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .nav-container {
      flex-wrap: wrap;
    }
  }
  

  /* 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 */
