* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/**------------gestion des liens-a-------------**/
a { 
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
     color: #0E7CEF;
    overflow-x: hidden;

    text-decoration: none;
}



:root {
    --primary-color: #0b68cb;
    --secondary-color: #3b90ec;
    --accent-color: #ff6b35;
    --light-bg: #f8fffe;
    --dark-text: #2c3e50;
    --light-text: #7f8c8d;
    --white: #ffffff;
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    background: var(--light-bg);
    overflow-x: hidden;
}

/* HEADER MODERNE */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
    padding: 1rem 0;

}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-light);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

nav a:hover {
    color: var(--secondary-color);
    background: rgba(0, 159, 122, 0.1);
}

.btn-contact {
    background: linear-gradient(135deg, var(--accent-color), #e55a2b) !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px !important;
    font-weight: 600;
    box-shadow: var(--shadow-light);
    transform: translateY(0);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, #e55a2b, var(--accent-color)) !important;
}

/**---bandeau content section ----**/




.bandeau-img {
    display: flex;
    justify-content: space-between; /* espace égal entre les images et les bords */
    align-items: center;
    margin-top: 100px;
    padding: 0px 5px; /* petit espace à gauche/droite */

   
}


.bandeau-img a:first-child {
    margin-left: 50vh;  /* décale l'image de gauche */
   
}

.bandeau-img a:last-child {
    margin-right: 50vh; /* décale l'image de droite */
   
}


.bandeau-img img {
    height: 10vh; /* hauteur fixe */
    width: auto;  /* largeur proportionnelle */
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    background-color: white; /* si tu veux garder la même logique */
}

.bandeau-img img:hover {
    transform: scale(1.05); /* petit zoom au survol */
}
    


.bandeau-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.bandeau-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.bandeau-content p {
    font-size: 1.2rem;
}



/* HERO SECTION MODERNE */
.hero {
    min-height: 0vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8f8f5 100%);
    position: relative;
    overflow: hidden;
    margin-top: 2px;
    padding:0.2rem 3rem; /* 1rem en haut/bas, 2rem à gauche/droite */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23006b5c" opacity="0.05"/><circle cx="75" cy="25" r="1.5" fill="%23009f7a" opacity="0.03"/><circle cx="50" cy="75" r="1" fill="%23006b5c" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.6;
}

.hero-container {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 2px;
   
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
    

}


.hero h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content .club-name {
    color: black !important;
    -webkit-text-fill-color: black !important;
    background: none !important;
}

.hero p {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px #0E7CEF;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    animation: slideInRight 0.8s ease-out;
}

.hero-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}


/** bandeau concours du vendredi **/

.bandeau-overlay {
    flex-basis: 100%; /* occupe toute la ligne du flex */
    order: 2; /* le place entre .hero-content (order 1) et .hero-visual (order 3) */
    background: #ff6b35;
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    align-items: center;
     margin: 2rem auto; /* auto pour centrer */
    max-width: 600px; /* largeur max */
    
        
}

.bandeau-overlay a {
    color: #093769;
    text-decoration: underline;
    margin-left: 0.5rem;
}

.bandeau-overlay a:hover {
    color: #fff176;
}
@keyframes pulse-luminosite {
    0% {
        transform: scale(1);
        opacity: 0.9;
        box-shadow: 0 0 5px #85b5e9, 0 0 10px #0E7CEF;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
        box-shadow: 0 0 15px #85b5e9, 0 0 10px #0E7CEF;
    }
    100% {
        transform: scale(1);
        opacity: 0.9;
        box-shadow: 0 0 5px #85b5e9, 0 0 10px #0E7CEF;
    }
}

.bandeau-overlay {
    animation: pulse-luminosite 2s ease-in-out infinite;
}

/** --- **/
.hero-card::before {
    content: '';
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 64px;      /* taille adaptée */
    height: 64px;
    background: url('boule.png') no-repeat center center;
    background-size: contain;
    opacity: 0.5;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: block;
}

.stat-label {
    color: var(--light-text);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* SECTIONS MODERNES */
.section {
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.info-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
   padding-top: 3rem;
   align-items: center;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

/**------info linkx liens pages interne ---**/

/* container des boutons */
.btn-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 0.6rem;
  width: 100%;
  margin-top: 1rem;
  justify-items: center; /* centre horizontalement chaque cellule */
}

/* style bouton (amélioration de ton .info-btn existant) */
.info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  min-width: 140px;
  max-width: 100%;
  border-radius: 10px;
  background: var(--primary-color);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease;
  box-sizing: border-box;
  margin: 5px;
  
}

/* hover */
.info-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

/* responsive : sur petits écrans, 1 colonne et boutons pleine largeur */
@media (max-width: 600px) {
  .btn-group {
    grid-template-columns: 1fr;
  }
  .info-btn {
    width: 100%;
    min-width: 0;
  }
}

/**---**/

.info-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.info-details {
    color: var(--light-text);
    line-height: 1.4;
}
.info-details a {
    
     font-size:1rem;
}


.info-details p {
    text-transform: uppercase;
     font-weight: bold;
     color: #0b68cb;
     font-size: 0.9rem;
}

.info-details strong {
    color: var(--dark-text);
    display: block;
    margin-bottom: 0.5rem;
    
}

/**-----page club css **/

.presclub {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
   padding: 1.5rem;
   color: #0b68cb;
   text-align: center;
   font-size: 1rem;
}

.presclub h1 {
    font-size: 2.5rem;
}



.presclub :before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.presclub img {
    max-width: 80%;  /* ne dépasse jamais la largeur du parent */
    height: auto;     /* garde les proportions */
    border-radius: var(--border-radius); 

}




/* GALLERY MODERNE */
.gallery {
    background: var(--white);
    padding: 2rem 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    
}

.gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--light-bg), #e8f8f5);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--secondary-color);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 10px 5px 5px  #0E7CEF;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
    box-shadow: 10px 5px 5px  #e55a2b ;
}

.gallery-item::after {
    content: ' ' attr(data-index);
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-size: 0.9rem;
    color: var(--light-text);
}

/* --- Galerie Photo --- */
.gallery-photo-container {
    max-width: 1200px;
    margin: 140px auto 50px; /* Décale vers le bas à cause du header fixe */
    padding: 0 1rem;
    padding-top: 100px;
    }

.gallery-photo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.2rem;
}

.gallery-photo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-photo img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 1rem;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.lightbox:target {
    display: flex;
}

/* --- Responsive Ajustement --- */
@media (max-width: 768px) {
    .gallery-photo-container {
        margin-top: 120px;
    }
    .gallery-photo img {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .gallery-photo img {
        height: 140px;
    }
}



/** gallery sponsos **/
.sponso {
    background: var(--white);
    padding: 2rem 2rem;
  
}

.sponso-img {
    padding: 2rem 2rem 2rem 2rem;
}

.sponso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    
}

.sponso-item {
    aspect-ratio: 2;
    background: linear-gradient(135deg, var(--light-bg), #e8f8f5);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--secondary-color);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 10px 5px 5px  #0E7CEF;
    padding: 0rem 2rem 0rem 2rem;
}

.sponso-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
    box-shadow: 10px 5px 5px  #e55a2b ;
}

.sponso-item::after {
    content: ' ' attr(data-index);
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-size: 0.9rem;
    color: var(--light-text);
}

/* CONTACT MODERNE */
.contact {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem 2rem;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
    max-width: 500px;
    margin: 3rem auto 0;
}

.form-group {
    position: relative;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 1.25rem;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.contact input::placeholder,
.contact textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact input:focus,
.contact textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.contact button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* FOOTER MODERNE */


footer {
    background: var(--dark-text);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    color: #e55a2b;
}

footer .social-icons {
    margin-top: 5px;
}

footer .social-icons a {
    display: inline-block;
    margin: 0 10px;
    transition: transform 0.3s;
}

footer .social-icons a:hover {
    transform: scale(1.1);
}

/** style de la page files **/

.fiches {
  text-align: center;
  padding: 100px 20px;
   background-image: url('terrain3.jpg'); /* ici ton image */
  background-size: cover;      /* pour que l'image couvre toute la section */
  background-position: center; /* centrage de l'image */
  background-repeat: no-repeat;/* pour ne pas répéter l'image */
   position: relative;
  z-index: 1; /* pour que le contenu reste au-dessus de l'overlay */
}
.fiches h2 {

    
    z-index: 0;
    color: #ffffff;
   background: var(--dark-text);
}

.fiches::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
   z-index: 0;
}

.boules-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* toujours 3 colonnes sur écran normal */
  gap: 15px;
  justify-items: center;
  margin-top: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
 
}
.boule {
  width: 150%; /* largeur maximale de la cellule */
  max-width: 160px; /* ne dépasse pas 120px */
  aspect-ratio: 1 / 1; /* garde la boule ronde */
  background: radial-gradient(circle at 30% 30%, #6daef4, #0b68cb);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 15px rgba(0,0,0,0.35);
  position: relative;
 transition: transform 0.3s, box-shadow 0.3s, box-shadow 0.6s, filter 0.6s;
  cursor: pointer;
  padding: 10px;
  box-sizing: border-box;
}

/* Animation de hover */
.boule:hover {
  transform: scale(1.15) rotate(-3deg);
  box-shadow: 0 15px 25px rgba(0,0,0,0.5), 0 0 20px 5px rgba(0,150,255,0.5);
  filter: brightness(1.2);
}

/* Animation de pulse continue */
.boule::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  box-shadow: 0 0 15px rgba(0,150,255,0.4);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none; /* <-- ajoute ça */
}

.boule:hover::after {
  animation: pulse 1.2s infinite;
  opacity: 1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 0.3; }
  100% { transform: scale(1); opacity: 0.6; }
}

.boule p {
  color: white;
  font-weight: bold;
  margin: 0 0 8px 0;
  text-align: center;
  font-size: 1.5vh;
}
.btn-download {
  padding: 5px 10px;
  background: white;
  color: #0b68cb;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  transition: background 0.3s, transform 0.3s;
}
.btn-download:hover {
  background: #ffe5dc;
  transform: scale(1.1);
}

/* Optionnel : ajuste le texte sur petits écrans */

@media (max-width: 768px) {
  .boules-container {
    grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur tablette */
  }
}

@media (max-width: 500px) {
  .boules-container {
    grid-template-columns:(2, 1fr); /* 1 colonne sur mobile */
  }
}

.boule {

  aspect-ratio: 1 / 1;
   border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 15px rgba(0,0,0,0.35);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  padding: 10px;
  box-sizing: border-box;
}





.btn-download {
  padding: 5px 10px;
  background: white;
  color: #d9552c;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  transition: background 0.3s, transform 0.3s;
}

.btn-download:hover {
  background: #ffe5dc;
  transform: scale(1.1);
}
/* ANIMATIONS */

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
       
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hero {
        margin-top: 2px;
        
        padding: 1.2rem 1rem 1.2rem 2rem ;
        margin-right: 20;
       
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        display: block;
        padding-top: 0;
     
    }
    

    .hero-stats .stat-item .stat-number {
        font-size: 3rem;
    }

       .hero-stats .stat-item .stat-label {
        font-size: 0.8rem;
    }
    
    
    .hero-visual span {
        font-size: 0.8rem;
        
    }

    .stat-label {
        font-size: 1rem;
    }


    .hero h2 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section {
        padding: 4rem 1rem;
    }

    /** media query organigramme **/
    .presclub img {
    max-width: 100%;  /* ne dépasse jamais la largeur du parent */
    height: auto;     /* garde les proportions */
    border-radius: var(--border-radius); /* optionnel, pour arrondir comme le reste */
    
}}


/* MOBILE HAMBURGER */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    margin: 3px 0;
    transition: var(--transition);
}


@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
       
    }

    nav {
        display: none;
    }

    nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: var(--shadow-light);
        padding: 1rem;
    }

    nav.active ul {
        flex-direction: column;
        gap: 1rem;
    }
    .bandeau-img {              
        gap: 15px;                /* espace entre elles */
    }

    .bandeau-img a:first-child,
    .bandeau-img a:last-child {
        margin: 0; /* on enlève les marges de bord */
        padding-left: 20px;
        padding-right: 20px;
    }
    .info-details p {
    text-transform: uppercase;
     font-weight: bold;
     color: #0b68cb;
     font-size: 0.9rem;
}
.info-details a {
    
     font-size:1rem;
}

.hero-content .club-name {
    color: black !important;
    -webkit-text-fill-color: black !important;
    background: none !important;
    font-size: 2rem;
}
.hero-content h2 {
    font-size: 1.5rem;

}

 .hero {
        padding: 1rem 1rem;
    }
.hero-content .club-name {
    color: black !important;
    -webkit-text-fill-color: black !important;
    background: none !important;
    font-size: 1.8rem;
}
.logo a {
    font-size: 1.2rem;
}


}

