/*Header*/
.nav-header {
  display: flex;
  background-color: brown;
  align-items: center;
}

.nav-ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: auto;
  
}

.nav-item {
  height: 100%;
}

.nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  font-size: larger;
  height: 100%;
  text-decoration: none;
  color: white;
  background-color: brown;

}

.nav-button:hover {
  background-color: rgb(211, 66, 8);
}

.logo img {
  height: 50px;
  width: auto;
  display: flex;
}

.header-logo {
  padding: 15px;
}

.title {
  margin: 0px;
  background-color: rgb(255, 255, 255);
  text-align: center;
  font-weight: bold;
  font-size: 60px;
}

/*Footer*/
footer {
  text-align: center;
  padding: 15px;
  margin-top: 30px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  max-height: 85px;
}

/*Acceuil*/
:root{
--gold:#eab308;
--chess-dark:#111827;
--shadow:0 10px 25px rgba(0,0,0,.10), 0 2px 10px rgba(0,0,0,.06);
}
.woluwe-hero-h{ display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:2rem; padding:2rem; background:#fff; }


.pieces-h{ display:flex; gap:1rem; }
.piece{ width:80px; height:80px; display:grid; place-items:center; font-size:3rem; border-radius:12px; background:#fff; box-shadow:var(--shadow); }
.piece.dark{ color:var(--chess-dark); }
.piece.light{ color:var(--gold); }


.woluwe-title{ font:700 3rem/1.1 system-ui, sans-serif; color:var(--chess-dark); letter-spacing:0.1em; }


.sun svg{ width:120px; height:120px; }
.sun .core{ fill:rgba(234,179,8,.15); stroke:var(--gold); stroke-width:3; }
.sun .rays line{ stroke:var(--gold); stroke-width:4; stroke-linecap:round; }


@media(max-width:700px){
.piece{ width:60px; height:60px; font-size:2rem; }
.woluwe-title{ font-size:2rem; }
.sun svg{ width:80px; height:80px; }
}

.image-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.image-center img {
    max-width: 60%;
    height: auto;
}
/* Horaire */
/* .horaire {
  background-color: #fdf2e9;
  border: 2px solid brown;
  border-radius: 10px;
  padding: 15px;
  width: fit-content;
  margin: 20px auto;
  font-family: Arial, sans-serif;
  font-size: 18px;
  text-align: left;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}



.jourEtHeure {
  padding: 8px 12px;
  margin: 5px 0;
  background-color: #ffe5b4;
  border-radius: 5px;
  color: #333;
  font-weight: bold;
}

.horaire {
  display: inline-block;
  justify-content: center;
  margin: 20px auto;
  padding: 15px 25px;
  background-color: #fff8e1;
  border: 2px solid #b22222; 
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.15);
  font-family: Arial, sans-serif;
} */

/* Cadre autour des horaires */
.horaire {
  display: flex;
  justify-content: center;
  margin: 20px auto;
}

.horaire ul {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 15px 25px;
  margin: 0;
  background: #fff8e1;             /* fond jaune clair */
  border: 2px solid #b22222;       /* contour rouge thème */
  border-radius: 12px;
  box-shadow: 2px 4px 10px rgba(0,0,0,0.1);
}

/* Badges horaires */
.jourEtHeure {
  background: #b22222;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}





/* Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colonnes */
  gap: 16px; /* espace entre cartes */
}

@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .grid { grid-template-columns: 1fr; }
}

.person {
  text-align: center;
  padding-top: 20px;
}

.person .details {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.9rem;
}

.person .details li {
  margin: 4px 0;
}

.person img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 3px solid #FFD700;
}
.person h3 {
  margin: 8px 0 4px;
  color: #880000;
}
.person .role {
  color: #555;
  font-size: .95rem;
}

/*Hero*/
.hero {
  font-size: 25px;
  text-align: center;
}




/* ===========================
   CONTACT — styles scopés
   =========================== */

/* ===== Contact page ===== */
.contact-page{
  max-width: 780px;
  margin: 48px auto;
  padding: 28px 32px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
  position: relative;
}

/* petite bande d’accent en haut */
.contact-page::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:6px;
  border-radius:16px 16px 0 0;
  background: linear-gradient(90deg, #b22222, #ffd54f);
}

.contact-intro{
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: #333;
}


.info-list{
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 12px;
}

/* Chaque ligne = une “carte” cliquable */
.info-list li{
  position: relative;
  padding: 14px 16px 14px 54px;
  border-radius: 12px;
  background: #fff8e1;              /* jaune doux */
  border: 1px solid #f2cf72;
  transition: transform .15s ease, box-shadow .15s ease;
}
.info-list li:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}

/* Icônes via pseudo-éléments (pas besoin de changer le HTML) */
.info-list li::before{
  content: "✉️";
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
}
.info-list li:nth-child(2)::before{ content: "👥"; }  /* réseau social */
.info-list li:nth-child(3)::before{ content: "📞"; }  /* téléphone */

.info-list a{
  text-decoration: none;
  color: #b22222;                    /* rouge thème */
  font-weight: 700;
}
.info-list a:hover{ text-decoration: underline; }

/* Responsive léger */
@media (max-width: 520px){
  .contact-page{ padding: 22px 18px; }
  .info-list li{ padding-left: 50px; }
}

.contact-icon {
  height: 24px;
  width: 24px;
  vertical-align: middle;
  margin-right: 8px;
}

/* Cas général : garde la place pour l’icône */
.info-list li {
  padding-left: 54px;
}

/* Cas sans icône (ex: Facebook avec son propre logo) */
.info-list li.no-icon {
  padding-left: 16px;  /* réduit l’espace */
}
.no-icon::before {
  content: none !important;  /* supprime l’icône */
}

/* ================== */
/*   Section Horaire  */
/* ================== */
.horaire ul {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 15px 25px;
  margin: 20px auto;
  list-style: none;
  background: #fff8e1;
  border: 2px solid #b22222;
  border-radius: 12px;
  box-shadow: 2px 4px 10px rgba(0,0,0,0.1);
}

.jourEtHeure {
  background: #b22222;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}

/* ================== */
/*   Mise en page     */
/* ================== */
.content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}

h2 {
  margin: 28px 0 18px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 28px;
}
@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ============================
   INTERCLUBS — Guide d’accès
   ============================ */

.access-guide{
  max-width: 1100px;
  margin: 40px auto;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.access-guide h3{
  margin: 0 0 8px;
  font-size: 1.9rem;
  text-align: center;
}

.access-intro{
  margin: 0 0 20px;
  text-align: center;
  color: #555;
}

/* grille des étapes */
.access-steps{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* carte d’étape */
.step{
  background: #fffdf7;
  border: 1px solid #f2cf72;
  border-radius: 12px;
  overflow: hidden;
  transition: transform .12s ease, box-shadow .12s ease;
  display: flex;
  flex-direction: column;
}
.step:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(0,0,0,.10);
}

/* zone image — montre l’image EN ENTIER sans recadrer */
.step .media{
  height: 220px;                   /* hauteur uniforme des vignettes */
  background: #fff;                /* “letterbox” propre autour si besoin */
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f2cf72;
}
.step .media img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;             /* pas de crop */
  display: block;
}

/* légendes */
.caption{
  padding: 10px 12px 12px;
}
.caption strong{
  display: block;
  color: #b22222;
  margin-bottom: 4px;
}
.caption span{
  color: #444;
  font-size: .95rem;
}

/* note sous la grille */
.access-note{
  margin-top: 16px;
  padding: 10px 12px;
  background: #fff8e1;
  border: 1px solid #f2cf72;
  border-radius: 10px;
  color: #333;
}

/* Responsive */
@media (max-width: 1100px){
  .access-guide{ padding: 20px; }
}
@media (max-width: 980px){
  .access-steps{ grid-template-columns: repeat(2, 1fr); }
  .step .media{ height: 220px; }
}
@media (max-width: 560px){
  .access-steps{ grid-template-columns: 1fr; }
  .step .media{ height: 220px; }
}


/* ============================
   INTERCLUBS — Calendrier
   ============================ */
.interclubs {
  margin: 40px auto 0;       /* espace au-dessus */
  padding: 20px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  max-width: 1000px;         /* limite la largeur du cadre */
}


.interclubCalender {
  max-width: 100%;           /* responsive */
  height: auto;
  border-radius: 8px;        /* arrondis doux sur l’image */
}

/* Titres de sous-sections cohérents */
.section-title {
  margin: 0 0 16px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #b22222;
  text-align: center;
  position: relative;
  padding-bottom: 6px;
}

/* petite ligne décorative sous le titre */
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #b22222, #ffd54f);
  border-radius: 2px;
}
