/*
  Description : Ceci est l'histoire du club de mon site.
  Auteur : Esteban Crausaz
  Date de création : 09.01.2026
  */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: Arial, sans-serif;
  background:#f2f2f2;
}

nav{
  width: 980px;
  max-width: calc(100% - 60px);
  margin: 24px auto 0;
  background: white;
  border: 1px solid #e5e5e5;
  border-bottom: none;
  padding: 12px 0;
  text-align: center;
}

nav a{
  color: #2b5db7;
  text-decoration: underline;
  font-size: 14px;
  margin: 0 10px;
}

main.page{
  width: 980px;
  max-width: calc(100% - 60px);
  margin: 0 auto 24px;
  background: white;
  border: 1px solid #e5e5e5;
  padding: 30px 40px;
}

.hero{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.hero h1{
  font-size: 55px;
  font-weight: bold;
}

.hero-logo{
  width: 60px;
}

.bloc{
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.texte{
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
  color: #222;
}

.image{
  flex: 1;
}

.image img{
  width: 100%;
  max-width: 520px;
  border: 1px solid #ddd;
  display: block;
}

.bloc:nth-of-type(even){
  flex-direction: row-reverse;
}

@media (max-width: 800px){
  main.page{
    padding: 20px;
  }

  .hero{
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
    text-align: center;
  }

  .hero h1{
    font-size: 40px;
  }

  .bloc{
    flex-direction: column !important;
    gap: 20px;
  }

  .image img{
    max-width: 100%;
  }
}




