/* ============================================================
   FSRS — Clubs Page CSS
   Refonte Design 2025
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Oswald:wght@400;500;600;700&display=swap');

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

:root {
    --primary:       #2E8B57;
    --primary-dark:  #1a3a2f;
    --primary-mid:   #236b45;
    --primary-light: #f0f7f3;
    --gold:          #FFD700;
    --gold-dark:     #e6c200;
    --white:         #FFFFFF;
    --off-white:     #F9FAFB;
    --gray-100:      #f8f9fa;
    --gray-200:      #e9ecef;
    --gray-300:      #dee2e6;
    --gray-700:      #495057;
    --text-dark:     #1a1a2e;
    --text-body:     #374151;
    --text-muted:    #6B7280;

    --font-body:    'Montserrat', sans-serif;
    --font-display: 'Oswald', sans-serif;

    --radius-sm:   4px;
    --radius-md:   10px;
    --radius-lg:   14px;
    --radius-xl:   22px;
    --radius-pill: 50px;
    --radius-full: 9999px;

    --shadow-sm:    0 1px 4px rgba(0,0,0,0.06);
    --shadow-md:    0 6px 24px rgba(0,0,0,0.08);
    --shadow-lg:    0 16px 48px rgba(0,0,0,0.12);
    --shadow-green: 0 14px 45px rgba(46,139,87,0.22);
    --shadow-gold:  0 8px 30px rgba(255,215,0,0.38);

    --ease:     all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

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

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-7px); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

/* ══════════════════════════════════════════════════════════
   BASE
   ══════════════════════════════════════════════════════════ */
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background: var(--off-white);
}

img { display: block; max-width: 100%; }

/* ══════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════ */
header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.18);
    transition: var(--ease);
}

header.scrolled {
    padding: 0.4rem 0;
    background: rgba(26,58,47,0.92);
    backdrop-filter: blur(16px) saturate(160%);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,215,0,0.12);
}

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

header .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
}

header .logo img {
    height: 58px;
    width: auto;
    border-radius: var(--radius-md);
    transition: var(--ease);
}

header.scrolled .logo img { height: 46px; }

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

header nav ul li a {
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-md);
    position: relative;
    transition: var(--ease);
    display: block;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
}

header nav ul li a:hover,
header nav ul li a.active {
    color: var(--gold);
    background: rgba(255,215,0,0.08);
}

header nav ul li a:hover::after,
header nav ul li a.active::after {
    width: calc(100% - 1.8rem);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

.hamburger .bar {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: var(--radius-full);
    transition: var(--ease);
    display: block;
}

.hamburger.active .bar:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* ══════════════════════════════════════════════════════════
   PAGE BANNER — Hero clubs
   ══════════════════════════════════════════════════════════ */
.page-banner {
    background-size: cover;
    background-position: center;
    padding: 9rem 2rem 7rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
    margin-bottom: -2rem;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(26,58,47,0.85) 0%,
        rgba(46,139,87,0.55) 60%,
        rgba(0,0,0,0.65) 100%
    );
    z-index: 1;
}

/* Formes géométriques décoratives */
.page-banner::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,215,0,0.10) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    animation: fadeInUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.page-banner-eyebrow {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(255,215,0,0.12);
    border: 1px solid rgba(255,215,0,0.25);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1.2rem;
}

.page-banner h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--white);
}

.page-banner h1 span {
    color: var(--gold);
}

.page-banner p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   CARTE DES CLUBS
   ══════════════════════════════════════════════════════════ */
.clubs-map {
    padding: 5rem 0 2.5rem;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.map-container {
    position: relative;
    height: 490px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    transition: var(--ease-out);
}

.map-container:hover {
    box-shadow: var(--shadow-green);
}

#map {
    width: 100%;
    height: 100%;
    z-index: 1;
}

.map-controls {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 300px;
}

/* Search box */
.search-box {
    display: flex;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 24px rgba(0,0,0,0.16);
    transition: var(--ease);
}

.search-box:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(46,139,87,0.22);
    border-color: rgba(46,139,87,0.2);
}

.search-box input {
    padding: 1rem 1.2rem;
    border: none;
    width: 100%;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.93rem;
    color: var(--text-dark);
    outline: none;
}

.search-box input::placeholder { color: var(--text-muted); }

.search-box button {
    padding: 0 1.4rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-box button:hover {
    background: var(--gold);
    color: var(--primary-dark);
}

/* Légende carte */
.map-legend {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    padding: 1.2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}

.map-legend h4 {
    margin-bottom: 0.9rem;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-700);
    font-weight: 700;
}

.map-legend div {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
}

.map-legend div:last-child { margin-bottom: 0; }

.icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    border: 2px solid var(--white);
    flex-shrink: 0;
}

.icon.skate  { background: var(--gold); }
.icon.roller { background: var(--primary); }
.icon.mixed  { background: linear-gradient(135deg, var(--gold) 50%, var(--primary) 50%); }

/* ══════════════════════════════════════════════════════════
   LISTE DES CLUBS
   ══════════════════════════════════════════════════════════ */
.clubs-list {
    padding: 4rem 0 6rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-light) 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title h2 {
    font-family: var(--font-display);
    color: var(--primary-dark);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.8rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.8rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 4px;
    background: linear-gradient(135deg, var(--gold) 0%, #FFA500 100%);
    border-radius: var(--radius-full);
}

.section-title p {
    color: var(--text-muted);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    margin-top: 0.5rem;
}

/* ── FILTRES — style pill/chip moderne ── */
.clubs-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--white);
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border: 2px solid rgba(46,139,87,0.10);
    transition: var(--ease-out);
}

.filter-group:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(46,139,87,0.14);
    transform: translateY(-2px);
}

.filter-group:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(255,215,0,0.15);
}

.filter-group label {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.filter-group select {
    padding: 0.3rem 0.5rem;
    border: none;
    font-family: var(--font-body);
    font-size: 0.92rem;
    background: transparent;
    color: var(--text-body);
    cursor: pointer;
    font-weight: 600;
    outline: none;
    min-width: 140px;
}

/* Chips de filtre rapide */
.filter-chips {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.chip {
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-pill);
    border: 2px solid rgba(46,139,87,0.25);
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--ease);
    font-family: var(--font-body);
    letter-spacing: 0.04em;
}

.chip:hover,
.chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.chip.gold-chip:hover,
.chip.gold-chip.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-dark);
}

/* ── GRILLE CLUBS ── */
.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 1rem;
}

/* Club Card */
.club-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 28px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--ease-spring);
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
}

.club-card:hover {
    box-shadow: var(--shadow-green);
    transform: translateY(-12px);
}

/* Image avec overlay gradient au hover */
.club-image {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
    background: var(--gray-200);
}

.club-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.club-card:hover .club-image img {
    transform: scale(1.1);
}

/* Overlay gradient sombre au hover */
.club-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26,58,47,0.0) 30%,
        rgba(26,58,47,0.65) 100%
    );
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: 1;
}

.club-card:hover .club-image::before {
    opacity: 1;
}

/* Gradient permanent en bas */
.club-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,0.45));
    z-index: 1;
}

/* Badges */
.club-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    gap: 0.55rem;
    z-index: 3;
}

.badge {
    color: var(--white);
    font-size: 0.72rem;
    padding: 0.38rem 0.95rem;
    border-radius: var(--radius-pill);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 3px 12px rgba(0,0,0,0.22);
    backdrop-filter: blur(4px);
}

.badge.skate {
    background: var(--gold);
    color: var(--text-dark);
}

.badge.roller {
    background: var(--primary);
}

.badge.mixed {
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
}

/* Badge discipline avec couleurs distinctes */
.badge.artistique  { background: #7C3AED; }
.badge.vitesse     { background: #EA580C; }
.badge.freestyle   { background: #0284C7; }
.badge.hockey      { background: #059669; }
.badge.skateboard  { background: #DC2626; }

/* Club info */
.club-info {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.club-info h3 {
    font-family: var(--font-display);
    color: var(--primary-dark);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.9rem;
    transition: var(--ease);
}

.club-card:hover .club-info h3 {
    color: var(--primary);
}

.club-meta {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.club-meta p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.club-meta i {
    color: var(--primary);
    width: 15px;
    text-align: center;
}

/* Discipline tags — couleur par type */
.club-disciplines {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.4rem;
}

.discipline-tag {
    background: rgba(46,139,87,0.09);
    color: var(--primary);
    padding: 0.38rem 0.85rem;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--ease);
    border: 1px solid rgba(46,139,87,0.12);
}

.discipline-tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Couleurs spécifiques par discipline */
.discipline-tag.artistique { background: rgba(124,58,237,0.09); color: #7C3AED; border-color: rgba(124,58,237,0.15); }
.discipline-tag.vitesse    { background: rgba(234,88,12,0.09);  color: #EA580C; border-color: rgba(234,88,12,0.15); }
.discipline-tag.freestyle  { background: rgba(2,132,199,0.09);  color: #0284C7; border-color: rgba(2,132,199,0.15); }
.discipline-tag.hockey     { background: rgba(5,150,105,0.09);  color: #059669; border-color: rgba(5,150,105,0.15); }
.discipline-tag.skateboard { background: rgba(220,38,38,0.09);  color: #DC2626; border-color: rgba(220,38,38,0.15); }

/* Boutons d'action */
.club-actions {
    display: flex;
    gap: 0.9rem;
    margin-top: auto;
}

.club-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: var(--ease-out);
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.club-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(46,139,87,0.22);
}

.club-actions .btn-primary:hover {
    background: linear-gradient(135deg, var(--gold) 0%, #FFA500 100%);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.club-actions .btn-text {
    background: var(--gray-100);
    color: var(--primary-dark);
    border: 1px solid var(--gray-200);
}

.club-actions .btn-text:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: rgba(46,139,87,0.2);
}

/* ══════════════════════════════════════════════════════════
   BECOME CLUB — Fond vert avec forme angulaire
   ══════════════════════════════════════════════════════════ */
.become-club {
    margin: 5rem auto 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 55%, var(--primary) 100%);
    border-radius: var(--radius-xl);
    padding: 5rem 2rem;
    max-width: 860px;
    color: var(--white);
    box-shadow: 0 20px 55px rgba(26,58,47,0.35);
    position: relative;
    overflow: hidden;
    /* Forme angulaire via clip-path */
    clip-path: polygon(0 0, 100% 0, 100% 88%, 93% 100%, 7% 100%, 0 88%);
}

/* Cercle doré décoratif haut droit */
.become-club::before {
    content: '';
    position: absolute;
    top: -70px;
    right: -70px;
    width: 260px;
    height: 260px;
    background: rgba(255,215,0,0.10);
    border-radius: 50%;
    pointer-events: none;
}

/* Cercle vert décoratif bas gauche */
.become-club::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    pointer-events: none;
}

/* Ligne dorée en haut */
.become-club-inner {
    position: relative;
    z-index: 1;
}

.become-club-eyebrow {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(255,215,0,0.12);
    border: 1px solid rgba(255,215,0,0.3);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1.2rem;
}

.become-club h3 {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}

.become-club p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.become-club .btn-secondary {
    background: linear-gradient(135deg, var(--gold) 0%, #FFA500 100%);
    color: var(--primary-dark);
    font-weight: 800;
    border: none;
    padding: 1.1rem 3.5rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--ease-out);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 8px 28px rgba(255,215,0,0.4);
    text-decoration: none;
    display: inline-block;
}

.become-club .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 3rem 2rem 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), #FFA500, var(--gold));
}

footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

footer h3 {
    font-family: var(--font-display);
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

footer .footer-links {
    list-style: none;
    padding: 0;
}

footer .footer-links li {
    margin-bottom: 0.7rem;
}

footer .footer-links a {
    color: rgba(255,255,255,0.80);
    text-decoration: none;
    font-size: 0.92rem;
    transition: var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

footer .footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.10);
    padding-top: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255,255,255,0.62);
    font-size: 0.88rem;
}

.legal-links a {
    color: rgba(255,255,255,0.62);
    text-decoration: none;
    margin: 0 0.6rem;
    font-size: 0.88rem;
    transition: var(--ease);
}

.legal-links a:hover {
    color: var(--gold);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════════ */

/* ── 1200px ── */
@media (max-width: 1200px) {
    .clubs-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
}

/* ── 1024px ── */
@media (max-width: 1024px) {
    .page-banner { clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); }
    .map-controls { width: 250px; }
    .clubs-grid { gap: 2rem; }
}

/* ── 768px ── */
@media (max-width: 768px) {
    header .container { flex-wrap: wrap; padding: 0.75rem 1.5rem; }

    header nav ul {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background: var(--primary-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        transition: left 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        gap: 0;
        z-index: 999;
    }

    header nav ul.active { left: 0; }

    header nav ul li {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    header nav ul li a {
        display: block;
        padding: 0.9rem 1rem;
        font-size: 1rem;
        border-radius: var(--radius-md);
    }

    .hamburger { display: flex; }

    .page-banner {
        padding: 7rem 1.5rem 5rem;
        clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
    }

    .map-container { height: 460px; }

    .map-controls {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        padding: 1rem;
        background: var(--gray-100);
        border-radius: var(--radius-lg);
        margin-bottom: 1rem;
    }

    .clubs-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 0.9rem;
    }

    .filter-group {
        border-radius: var(--radius-lg);
        justify-content: space-between;
    }

    .become-club {
        padding: 4rem 1.5rem;
        margin-left: 1rem;
        margin-right: 1rem;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 93% 100%, 7% 100%, 0 90%);
    }
}

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

    header .logo img { height: 48px; }

    .page-banner {
        padding: 6rem 1rem 4rem;
        clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
    }

    .page-banner h1 { font-size: 2rem; }
    .page-banner p  { font-size: 0.95rem; }

    .clubs-map { padding: 3rem 0 2rem; }
    .map-container { height: 360px; }

    .clubs-list { padding: 3rem 0 4rem; }

    .clubs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .club-image { height: 195px; }

    .club-info {
        padding: 1.4rem;
    }

    .club-actions { flex-direction: column; }

    .become-club {
        padding: 3.5rem 1.2rem;
        margin-left: 0.75rem;
        margin-right: 0.75rem;
        clip-path: none;
        border-radius: var(--radius-xl);
    }

    .become-club h3 { font-size: 1.5rem; }

    .become-club .btn-secondary {
        padding: 1rem 2rem;
        font-size: 0.92rem;
    }

    footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ── 360px ── */
@media (max-width: 360px) {
    .club-info h3 { font-size: 1.1rem; }
    .club-meta { font-size: 0.82rem; }
    .discipline-tag { font-size: 0.72rem; padding: 0.3rem 0.65rem; }
    .page-banner h1 { font-size: 1.7rem; }
}

/* ── Accessibilité ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .page-banner { clip-path: none; }
    .become-club { clip-path: none; }
}
