/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f5f5;
    color: #111111;
}


/* =====================================================
   NAVIGATION
===================================================== */

nav {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: #111111;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

nav ul {
    min-height: 56px;

    display: flex;
    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 4px;

    padding: 4px 15px;

    list-style: none;
}

nav li {
    list-style: none;
}

nav a {
    display: flex;
    align-items: center;

    gap: 6px;

    padding: 10px 9px;

    border-radius: 6px;

    color: #ffffff;

    text-decoration: none;

    font-size: 0.88rem;
    font-weight: bold;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

nav a:hover {
    background: #e30613;
    color: #ffffff;
}


/* =====================================================
   HERO / BANNIÈRE PRINCIPALE
===================================================== */

.hero {
    position: relative;

    min-height: 733px;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 50px 20px;

    overflow: hidden;

    text-align: center;

    color: #ffffff;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.55),
            rgba(120, 0, 0, 0.35)
        ),
        url("./fond-banniere-volley.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* Effet lumineux rouge */

.hero::before {
    display: none;
}


/* Effet sombre diagonal */

.hero::after {
    display: none;
}


/* Contenu du hero */

.hero-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 900px;

    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 0 auto;
}


/* =====================================================
   LOGO
===================================================== */

.hero-logo {
    display: block;

    width: 280px;
    max-width: 70%;

    height: auto;

    margin: 0 auto 22px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 8px 12px rgba(0, 0, 0, 0.35)
        );
}


/* =====================================================
   TEXTE DU HERO
===================================================== */

.hero-label {
    margin-bottom: 15px;

    font-size: 0.95rem;

    font-weight: 500;

    letter-spacing: 0.5px;

    text-transform: uppercase;
}


.hero h1 {
    margin-bottom: 18px;

    font-size: clamp(3.2rem, 7vw, 5.8rem);

    line-height: 0.95;

    font-weight: 900;

    letter-spacing: -2px;

    text-shadow:
        0 6px 20px rgba(0, 0, 0, 0.55);
}

.hero h1 span {
    color: #ffffff;
}


.hero-subtitle {
    max-width: 800px;

    margin: 0 auto 28px;

    font-size: 1.2rem;

    line-height: 1.5;

    text-shadow:
        0 3px 10px rgba(0, 0, 0, 0.45);
}

/* =====================================================
   BOUTONS
===================================================== */

.hero-buttons {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 5px;

    flex-wrap: wrap;
}

.button {
    display: inline-block;

    padding: 14px 28px;

    border-radius: 30px;

    background: #f00616;

    color: #ffffff;

    text-decoration: none;

    font-size: 1rem;

    font-weight: bold;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.button:hover {
    background: #b9000c;

    transform: translateY(-2px);
}


/* Deuxième bouton */

.button-secondary {
    background: #f00616;

    border: none;
}

.button-secondary:hover {
    background: #b9000c;

    color: #ffffff;
}


/* =====================================================
   SECTION PRINCIPALE
===================================================== */

.section {
    max-width: 1400px;

    margin: 0 auto;

    padding: 60px 30px;
}

.section-title {
    margin-bottom: 35px;

    text-align: center;
}

.section-title h2 {
    font-size: 2rem;

    font-weight: 800;
}

.title-line {
    width: 45px;

    height: 3px;

    margin: 12px auto 0;

    background: #e30613;
}


/* =====================================================
   CARTES
===================================================== */

.cards {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.card {
    min-height: 240px;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 25px 20px;

    text-align: center;

    background: #ffffff;

    border-radius: 10px;

    border-bottom: 4px solid #e30613;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.10);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.15);
}


/* =====================================================
   ICÔNES
===================================================== */

.card-icon {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 60px;
    height: 60px;

    margin-bottom: 12px;

    font-size: 2rem;
}

/* Carte entière utilisée comme lien */

a.card-link {
    color: #111111;
    text-decoration: none;
}

a.card-link:visited {
    color: #111111;
    text-decoration: none;
}

a.card-link:hover {
    color: #111111;
    text-decoration: none;
}

a.card-link h3,
a.card-link p {
    color: inherit;
    text-decoration: none;
}

/* =====================================================
   TEXTE DES CARTES
===================================================== */

.card h3 {
    margin-bottom: 12px;

    font-size: 1.1rem;

    line-height: 1.3;
}

.card p {
    font-size: 0.95rem;

    line-height: 1.55;

    color: #333333;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    padding: 30px 20px;

    text-align: center;

    background: #111111;

    color: #ffffff;
}


.footer-content {
    max-width: 1000px;

    margin: 0 auto;
}


.footer-content p {
    margin-bottom: 8px;
}


.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 20px;

    flex-wrap: wrap;

    margin: 20px 0;
}


.footer-links a {
    color: #ffffff;

    text-decoration: none;

    font-weight: bold;

    font-size: 0.9rem;
}


.footer-links a:hover {
    color: #e30613;
}


.footer-copyright {
    margin-top: 15px;

    color: #aaaaaa;

    font-size: 0.8rem;
}

/* =====================================================
   PAGE CLUB - BANDEAU
===================================================== */

.page-hero {
    position: relative;

    min-height: 390px;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 45px 20px;

    overflow: hidden;

    text-align: center;

    color: #ffffff;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.40),
            rgba(70, 0, 0, 0.35)
        ),
        url("./fond-banniere-volley.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.page-hero-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 850px;

    margin: 0 auto;
}


.page-hero-logo {
    width: 130px;
    height: auto;

    margin-bottom: 15px;

    filter:
        drop-shadow(
            0 6px 10px rgba(0, 0, 0, 0.30)
        );
}


.page-hero-label {
    margin-bottom: 10px;

    font-size: 0.8rem;

    font-weight: bold;

    letter-spacing: 2px;
}


.page-hero h1 {
    margin-bottom: 15px;

    font-size: clamp(3rem, 7vw, 5rem);

    font-weight: 900;

    line-height: 1;

    text-shadow:
        0 5px 18px rgba(0, 0, 0, 0.55);
}


.page-hero-subtitle {
    max-width: 700px;

    margin: auto;

    font-size: 1.1rem;

    line-height: 1.6;

    text-shadow:
        0 3px 10px rgba(0, 0, 0, 0.50);
}


/* =====================================================
   MENU PAGE CLUB
===================================================== */

.club-menu {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

    margin-bottom: 60px;
}


.club-menu-card {
    min-height: 210px;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 25px 20px;

    text-align: center;

    text-decoration: none;

    color: #111111;

    background: #ffffff;

    border-radius: 10px;

    border-bottom: 4px solid #e30613;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.10);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.club-menu-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.15);
}


.club-menu-card:visited {
    color: #111111;
}


.club-menu-icon {
    margin-bottom: 12px;

    font-size: 2rem;
}


.club-menu-card h3 {
    margin-bottom: 12px;

    font-size: 1.15rem;
}


.club-menu-card p {
    color: #444444;

    font-size: 0.95rem;

    line-height: 1.5;
}


/* =====================================================
   CONTENU PAGE CLUB
===================================================== */

.club-content-section {
    max-width: 1050px;

    margin: 0 auto 35px;

    padding: 45px;

    background: #ffffff;

    border-radius: 12px;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.08);

    scroll-margin-top: 80px;
}


.club-content-text {
    max-width: 850px;

    margin: auto;
}


.club-small-title {
    margin-bottom: 8px;

    color: #e30613;

    font-size: 0.78rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.club-content-section h2 {
    margin-bottom: 20px;

    font-size: 2rem;
}


.club-content-section p {
    margin-bottom: 14px;

    color: #444444;

    font-size: 1rem;

    line-height: 1.7;
}

/* =====================================================
   BUREAU DU CLUB
===================================================== */

.bureau-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

    margin-top: 30px;
}


.bureau-member {
    min-height: 190px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 25px 15px;

    text-align: center;

    background: #f7f7f7;

    border-radius: 10px;

    border-bottom: 4px solid #e30613;
}


.bureau-icon {
    margin-bottom: 12px;

    font-size: 2rem;
}


.bureau-member h3 {
    margin-bottom: 10px;

    font-size: 1.05rem;
}


.bureau-name {
    margin-bottom: 0 !important;

    color: #e30613 !important;

    font-size: 1rem !important;

    font-weight: 800;
}

/* =====================================================
   CHARTE & VALEURS
===================================================== */

.values-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

    margin-top: 30px;
}


.value-item {
    min-height: 220px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 25px 18px;

    text-align: center;

    background: #f7f7f7;

    border-radius: 10px;

    border-bottom: 4px solid #e30613;
}


.value-icon {
    margin-bottom: 12px;

    font-size: 2rem;
}


.value-item h3 {
    margin-bottom: 10px;

    font-size: 1.05rem;
}


.value-item p {
    margin-bottom: 0;

    font-size: 0.9rem;

    line-height: 1.5;
}

/* =====================================================
   ONGLET ACTIF NAVIGATION
===================================================== */

nav a.nav-active {
    background: #e30613;
}

/* =====================================================
   PAGE ÉQUIPES
===================================================== */

.team-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

    margin-bottom: 50px;
}


.team-card {
    position: relative;

    min-height: 260px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 35px 25px;

    text-align: center;

    background: #ffffff;

    border-radius: 12px;

    border-bottom: 4px solid #e30613;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.10);
}


.team-number {
    position: absolute;

    top: 15px;
    right: 18px;

    color: #dddddd;

    font-size: 1.4rem;

    font-weight: 900;
}


.team-icon {
    margin-bottom: 15px;

    font-size: 2.4rem;
}


.team-card h3 {
    margin-bottom: 15px;

    font-size: 1.4rem;
}


.team-card p {
    color: #444444;

    font-size: 0.95rem;

    line-height: 1.6;
}


/* =====================================================
   ENTRAÎNEMENT COMMUN
===================================================== */

.training-block {
    max-width: 1050px;

    display: flex;
    align-items: center;

    gap: 30px;

    margin: 0 auto;

    padding: 40px;

    background: #ffffff;

    border-radius: 12px;

    border-left: 5px solid #e30613;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.08);
}


.training-icon {
    flex-shrink: 0;

    font-size: 3rem;
}


.training-content h2 {
    margin-bottom: 15px;

    font-size: 1.8rem;
}


.training-content p {
    margin-bottom: 10px;

    color: #444444;

    line-height: 1.6;
}

/* =====================================================
   PAGE MATCHS & ENTRAÎNEMENTS
===================================================== */

.schedule-block {
    max-width: 1050px;

    display: flex;
    align-items: flex-start;

    gap: 30px;

    margin: 0 auto 60px;

    padding: 40px;

    background: #ffffff;

    border-radius: 12px;

    border-left: 5px solid #e30613;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.08);
}


.schedule-icon {
    flex-shrink: 0;

    font-size: 3rem;
}


.schedule-content {
    width: 100%;
}


.schedule-content h2 {
    margin-bottom: 15px;

    font-size: 1.8rem;
}


.schedule-content p {
    margin-bottom: 12px;

    color: #444444;

    line-height: 1.6;
}


.schedule-details {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

    margin-top: 25px;
}


.schedule-details div {
    padding: 18px;

    background: #f7f7f7;

    border-radius: 8px;

    text-align: center;
}


.schedule-details strong {
    display: block;

    margin-bottom: 8px;
}


.schedule-details span {
    color: #444444;

    font-size: 0.95rem;
}


.matches-section {
    max-width: 1050px;

    margin: 0 auto;
}


.matches-empty {
    padding: 45px 25px;

    text-align: center;

    background: #ffffff;

    border-radius: 12px;

    border-bottom: 4px solid #e30613;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.08);
}


.matches-empty-icon {
    margin-bottom: 15px;

    font-size: 2.5rem;
}


.matches-empty h3 {
    margin-bottom: 12px;

    font-size: 1.4rem;
}


.matches-empty p {
    color: #444444;

    line-height: 1.6;
}

/* =====================================================
   PAGE ACTUALITÉS
===================================================== */

.news-card {
    max-width: 1050px;

    display: grid;

    grid-template-columns:
        320px 1fr;

    margin: 0 auto;

    overflow: hidden;

    background: #ffffff;

    border-radius: 12px;

    border-bottom: 4px solid #e30613;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.10);
}


.news-image {
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 380px;

    padding: 35px;

    background: #111111;
}


.news-image img {
    width: 100%;
    max-width: 230px;

    height: auto;

    object-fit: contain;
}


.news-content {
    padding: 40px;
}


.news-meta {
    margin-bottom: 10px;

    color: #e30613;

    font-size: 0.8rem;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.news-content h2 {
    margin-bottom: 25px;

    font-size: 2rem;
}


.news-content p {
    margin-bottom: 15px;

    color: #444444;

    font-size: 1rem;

    line-height: 1.7;
}


.news-ending {
    margin-top: 25px;
}

/* =====================================================
   PAGE ÉVÉNEMENTS
===================================================== */

.events-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

    margin-bottom: 50px;
}


.event-card {
    min-height: 250px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 30px 25px;

    text-align: center;

    background: #ffffff;

    border-radius: 12px;

    border-bottom: 4px solid #e30613;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.10);
}


.event-icon {
    margin-bottom: 15px;

    font-size: 2.5rem;
}


.event-card h3 {
    margin-bottom: 15px;

    font-size: 1.3rem;
}


.event-card p {
    color: #444444;

    font-size: 0.95rem;

    line-height: 1.6;
}


.events-coming {
    max-width: 1050px;

    margin: 0 auto;

    padding: 40px;

    text-align: center;

    background: #ffffff;

    border-radius: 12px;

    border-left: 5px solid #e30613;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.08);
}


.events-coming-icon {
    margin-bottom: 12px;

    font-size: 2.7rem;
}


.events-coming h2 {
    margin-bottom: 15px;

    font-size: 1.8rem;
}


.events-coming p {
    color: #444444;

    line-height: 1.6;
}

/* =====================================================
   PAGE GALERIE
===================================================== */

.gallery-categories {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

    margin-bottom: 50px;
}


.gallery-category {
    min-height: 240px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 30px 25px;

    text-align: center;

    background: #ffffff;

    border-radius: 12px;

    border-bottom: 4px solid #e30613;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.10);
}


.gallery-category-icon {
    margin-bottom: 15px;

    font-size: 2.5rem;
}


.gallery-category h3 {
    margin-bottom: 15px;

    font-size: 1.3rem;
}


.gallery-category p {
    color: #444444;

    font-size: 0.95rem;

    line-height: 1.6;
}


.gallery-coming {
    max-width: 1050px;

    margin: 0 auto;

    padding: 45px 30px;

    text-align: center;

    background: #ffffff;

    border-radius: 12px;

    border-left: 5px solid #e30613;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.08);
}


.gallery-coming-icon {
    margin-bottom: 15px;

    font-size: 3rem;
}


.gallery-coming h2 {
    margin-bottom: 15px;

    font-size: 1.8rem;
}


.gallery-coming p {
    color: #444444;

    line-height: 1.6;
}

/* =====================================================
   PAGE INSCRIPTION
===================================================== */

.join-intro {
    max-width: 1050px;

    display: flex;
    align-items: center;

    gap: 30px;

    margin: 0 auto 45px;

    padding: 40px;

    background: #ffffff;

    border-radius: 12px;

    border-left: 5px solid #e30613;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.08);
}


.join-intro-icon {
    flex-shrink: 0;

    font-size: 3rem;
}


.join-intro-content h2 {
    margin-bottom: 15px;

    font-size: 1.8rem;
}


.join-intro-content p {
    margin-bottom: 12px;

    color: #444444;

    line-height: 1.6;
}

.join-documents-button {
    margin-top: 15px;
}

/* ÉTAPES */

.join-steps {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

    margin-bottom: 50px;
}


.join-step {
    position: relative;

    min-height: 260px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 35px 25px;

    text-align: center;

    background: #ffffff;

    border-radius: 12px;

    border-bottom: 4px solid #e30613;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.10);
}


.join-step-number {
    position: absolute;

    top: 15px;
    right: 18px;

    color: #dddddd;

    font-size: 1.5rem;

    font-weight: 900;
}


.join-step-icon {
    margin-bottom: 15px;

    font-size: 2.5rem;
}


.join-step h3 {
    margin-bottom: 15px;

    font-size: 1.25rem;
}


.join-step p {
    color: #444444;

    font-size: 0.95rem;

    line-height: 1.6;
}


/* HORAIRES */

.join-training {
    max-width: 1050px;

    margin: 0 auto;

    padding: 40px;

    text-align: center;

    background: #ffffff;

    border-radius: 12px;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.08);
}


.join-training h2 {
    margin-bottom: 25px;

    font-size: 1.8rem;
}


.join-training-details {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}


.join-training-details div {
    padding: 20px;

    background: #f7f7f7;

    border-radius: 8px;

    border-bottom: 3px solid #e30613;
}


.join-training-details strong {
    display: block;

    margin-bottom: 8px;
}


.join-training-details span {
    color: #444444;
}

/* =====================================================
   PAGE CONTACT
===================================================== */

.contact-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;

    margin-bottom: 50px;
}


.contact-card {
    min-height: 260px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 30px 25px;

    text-align: center;

    background: #ffffff;

    border-radius: 12px;

    border-bottom: 4px solid #e30613;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.10);
}


.contact-icon {
    margin-bottom: 15px;

    font-size: 2.5rem;
}


.contact-card h3 {
    margin-bottom: 15px;

    font-size: 1.3rem;
}


.contact-card p {
    color: #444444;

    font-size: 0.95rem;

    line-height: 1.6;
}


.contact-info a {
    color: #e30613;
   
    text-decoration: none;
   
    font-weight: 800;
}


.contact-info a:hover {
    text-decoration: underline;
}


/* BLOC BIENVENUE */

.contact-welcome {
    max-width: 1050px;

    display: flex;
    align-items: center;

    gap: 30px;

    margin: 0 auto;

    padding: 40px;

    background: #ffffff;

    border-radius: 12px;

    border-left: 5px solid #e30613;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.08);
}


.contact-welcome-icon {
    flex-shrink: 0;

    font-size: 3rem;
}


.contact-welcome h2 {
    margin-bottom: 15px;

    font-size: 1.8rem;
}


.contact-welcome p {
    margin-bottom: 10px;

    color: #444444;

    line-height: 1.6;
}

/* =====================================================
   DOCUMENTS D'INSCRIPTION
===================================================== */

.registration-info {
    max-width: 1050px;

    margin: 0 auto 45px;

    padding: 40px;

    background: #ffffff;

    border-radius: 12px;

    border-left: 5px solid #e30613;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.08);
}


.registration-info h2 {
    margin-bottom: 18px;

    font-size: 1.8rem;
}


.registration-info p {
    margin-bottom: 10px;

    color: #444444;

    line-height: 1.6;
}


/* CARTES DOCUMENTS */

.registration-documents {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-bottom: 50px;
}


.document-card {
    min-height: 300px;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 30px 22px;

    text-align: center;

    background: #ffffff;

    border-radius: 12px;

    border-bottom: 4px solid #e30613;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.10);
}


.document-icon {
    margin-bottom: 15px;

    font-size: 2.5rem;
}


.document-card h3 {
    margin-bottom: 15px;

    font-size: 1.2rem;
}


.document-card p {
    flex-grow: 1;

    margin-bottom: 20px;

    color: #444444;

    font-size: 0.95rem;

    line-height: 1.6;
}


.document-button {
    display: inline-block;

    padding: 11px 18px;

    border-radius: 25px;

    background: #e30613;

    color: #ffffff;

    text-decoration: none;

    font-size: 0.9rem;

    font-weight: bold;
}


.document-button:hover {
    background: #b9000c;
}


.document-disabled {
    background: #999999;
}


/* CHECKLIST */

.registration-checklist {
    max-width: 1050px;

    margin: 0 auto;

    padding: 40px;

    background: #ffffff;

    border-radius: 12px;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.08);
}


.registration-checklist h2 {
    margin-bottom: 25px;

    font-size: 1.8rem;
}


.checklist-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}


.checklist-grid div {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 18px;

    background: #f7f7f7;

    border-radius: 8px;
}


.checklist-grid span {
    color: #e30613;

    font-size: 1.4rem;

    font-weight: 900;
}


.checklist-grid p {
    color: #444444;

    line-height: 1.5;
}

/* =====================================================
   INFOS PRATIQUES ACCUEIL
===================================================== */

.home-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;

    margin-top: 50px;
}


.home-highlight {
    min-height: 260px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 30px 25px;

    text-align: center;

    background: #ffffff;

    border-radius: 12px;

    border-top: 4px solid #e30613;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.10);
}


.home-highlight-icon {
    margin-bottom: 10px;

    font-size: 2.2rem;
}


.home-highlight h3 {
    margin-bottom: 12px;

    font-size: 1.3rem;
}


.home-highlight p {
    margin-bottom: 15px;

    color: #444444;

    line-height: 1.6;
}


.home-highlight-link {
    margin-top: auto;

    padding: 10px 18px;

    border-radius: 25px;

    background: #e30613;

    color: #ffffff;

    text-decoration: none;

    font-size: 0.9rem;

    font-weight: bold;
}


.home-highlight-link:visited {
    color: #ffffff;
}


.home-highlight-link:hover {
    background: #b9000c;

    color: #ffffff;
}

/* =====================================================
   TABLETTES
===================================================== */

@media (max-width: 1100px) {

    nav a {
        font-size: 0.82rem;

        padding: 9px 7px;
    }

    .hero {
        min-height: 680px;
    }

    .cards {
        grid-template-columns:
            repeat(2, 1fr);
    }
   
   .club-menu {
    grid-template-columns:
        repeat(2, 1fr);
   }
}


/* =====================================================
   TÉLÉPHONES
===================================================== */

@media (max-width: 700px) {

    nav ul {
        gap: 2px;

        padding: 5px;
    }

    nav a {
        padding: 7px 5px;

        font-size: 0.72rem;
    }


    .hero {
        min-height: 650px;

        padding: 45px 20px;
    }


    .hero-logo {
        width: 210px;

        margin-bottom: 20px;
    }


    .hero-label {
        font-size: 0.72rem;

        letter-spacing: 1px;
    }


    .hero h1 {
        font-size: clamp(2.8rem, 13vw, 4rem);

        letter-spacing: -1px;
    }


    .hero-subtitle {
        font-size: 1rem;

        max-width: 500px;
    }


    .hero-buttons {
        flex-direction: column;

        width: 100%;

        gap: 10px;
    }


    .hero-buttons .button {
        width: 100%;

        max-width: 280px;

        text-align: center;
    }


    .section {
        padding: 45px 15px;
    }


    .section-title h2 {
        font-size: 1.7rem;
    }


    .cards {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 12px;
    }


    .card {
        min-height: 250px;

        padding: 20px 12px;
    }


    .card h3 {
        font-size: 0.95rem;
    }


    .card p {
        font-size: 0.85rem;
    }

   .page-hero {
    min-height: 330px;
   }
   
   .page-hero-logo {
       width: 100px;
   }
   
   .club-menu {
       grid-template-columns:
           repeat(2, 1fr);
   
       gap: 12px;
   }
   
   .club-menu-card {
       min-height: 200px;
   
       padding: 20px 12px;
   }
   
   .club-content-section {
       padding: 30px 20px;
   }
   
   .club-content-section h2 {
       font-size: 1.6rem;
   }

   .club-stats {
    grid-template-columns:
        repeat(2, 1fr);
   }

   .team-grid {
       grid-template-columns: 1fr;
   }
   
   .training-block {
       flex-direction: column;
   
       padding: 30px 20px;
   
       text-align: center;
   }
   .news-card {
       grid-template-columns: 1fr;
   }
   
   
   .news-image {
       min-height: 250px;
   }
   
   
   .news-image img {
       max-width: 170px;
   }
   
   
   .news-content {
       padding: 30px 20px;
   }
   
   
   .news-content h2 {
       font-size: 1.6rem;
   }

   .events-grid {
       grid-template-columns: 1fr;
   }
   
   
   .events-coming {
       padding: 30px 20px;
   }

   .gallery-categories {
       grid-template-columns: 1fr;
   }
   
   
   .gallery-coming {
       padding: 30px 20px;
   }

   .join-intro {
       flex-direction: column;
   
       padding: 30px 20px;
   
       text-align: center;
   }
   
   
   .join-steps {
       grid-template-columns: 1fr;
   }
   
   
   .join-training {
       padding: 30px 20px;
   }
   
   
   .join-training-details {
       grid-template-columns: 1fr;
   }
   .contact-grid {
       grid-template-columns: 1fr;
   }
   
   
   .contact-welcome {
       flex-direction: column;
   
       padding: 30px 20px;
   
       text-align: center;
   }

   .registration-info {
       padding: 30px 20px;
   }
   
   
   .registration-documents {
       grid-template-columns: 1fr;
   }
   
   
   .registration-checklist {
       padding: 30px 20px;
   }
   
   
   .checklist-grid {
       grid-template-columns: 1fr;
   }

   .bureau-grid {
       grid-template-columns:
           repeat(2, 1fr);
   }

   .values-grid {
       grid-template-columns:
           repeat(2, 1fr);
   }

   .home-highlights {
       grid-template-columns: 1fr;
   }
}


/* =====================================================
   PETITS TÉLÉPHONES
===================================================== */

@media (max-width: 420px) {

    nav a {
        font-size: 0.68rem;

        padding: 6px 4px;
    }


    .hero {
        min-height: 620px;
    }


    .hero-logo {
        width: 175px;
    }


    .hero h1 {
        font-size: 2.7rem;
    }


    .cards {
        grid-template-columns: 1fr;
    }

   .club-menu {
       grid-template-columns: 1fr;
      }

   .club-stats {
       grid-template-columns: 1fr;
      }

   .values-grid {
       grid-template-columns: 1fr;
   }
}
/* =====================================================
   CHIFFRES CLÉS DU CLUB
===================================================== */

.club-stats {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

    margin-top: 35px;
}


.club-stat {
    min-height: 130px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 22px 15px;

    text-align: center;

    background: #f7f7f7;

    border-radius: 10px;

    border-bottom: 4px solid #e30613;
}


.club-stat-number {
    display: block;

    margin-bottom: 7px;

    color: #e30613;

    font-size: 2rem;

    font-weight: 900;
}


.club-stat-place {
    font-size: 1.6rem;
}


.club-stat-label {
    color: #333333;

    font-size: 0.9rem;

    font-weight: bold;

    line-height: 1.4;
}

.card-link {
    color: #111111;
    text-decoration: none;
}

.card-link:visited {
    color: #111111;
}


/* =====================================================
   CORRECTIONS MOBILE
===================================================== */

@media (max-width: 700px) {

    .club-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        width: 100%;
    }

    .club-stat {
        width: 100%;
        min-width: 0;
        padding: 20px 10px;
    }

    .club-stat-number {
        font-size: 1.7rem;
    }

    .club-stat-place {
        font-size: 1.3rem;
    }

    .club-stat-label {
        font-size: 0.85rem;
    }

    .schedule-block {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 20px;
        padding: 25px 18px;
        text-align: left;
    }

    .schedule-icon {
        align-self: center;
    }

    .schedule-content {
        width: 100%;
        min-width: 0;
    }

    .schedule-details {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 10px;
    }

    .schedule-details div {
        width: 100%;
        min-width: 0;
        padding: 15px;
    }
}


/* =====================================================
   PETITS TÉLÉPHONES
===================================================== */

@media (max-width: 420px) {

    .club-stats {
        grid-template-columns: 1fr;
    }

}

/* =====================================================
   INFOS PRATIQUES ACCUEIL
===================================================== */

.home-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;

    margin-top: 50px;
}


.home-highlight {
    min-height: 260px;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 30px 25px;

    text-align: center;

    background: #ffffff;

    border-radius: 12px;

    border-top: 4px solid #e30613;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.10);
}


.home-highlight-icon {
    margin-bottom: 10px;

    font-size: 2.2rem;
}


.home-highlight h3 {
    margin-bottom: 12px;

    font-size: 1.3rem;
}


.home-highlight p {
    margin-bottom: 15px;

    color: #444444;

    line-height: 1.6;
}


.home-highlight-link {
    display: inline-block;

    margin-top: auto;

    padding: 10px 18px;

    border-radius: 25px;

    background: #e30613;

    color: #ffffff;

    text-decoration: none;

    font-size: 0.9rem;

    font-weight: bold;
}


.home-highlight-link:visited {
    color: #ffffff;
}


.home-highlight-link:hover {
    background: #b9000c;

    color: #ffffff;
}


/* =====================================================
   INFOS PRATIQUES ACCUEIL - MOBILE
===================================================== */

@media (max-width: 700px) {

    .home-highlights {
        grid-template-columns: 1fr;
    }

}
