/* =============================================
   424 BARBELL — POWERLIFTING CLUB NEUCHÂTEL
   style.css
   ============================================= */

/* =====================
   CUSTOM FONTS
   ===================== */
@font-face {
    font-family: 'OldLondon';
    src: url('fonts/old_london/OldLondon.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* =====================
   VARIABLES & RESET
   ===================== */
:root {
    --bg-primary:    #0D0D0D;
    --bg-secondary:  #111111;
    --bg-card:       #161616;
    --accent:        #E63C2F;
    --accent-dark:   #B82E23;
    --text-primary:  #F0F0F0;
    --text-secondary:#808080;
    --border:        #222222;
    --font-gothic:   'OldLondon', 'UnifrakturMaguntia', cursive;
    --font-title:    'Barlow Condensed', sans-serif;
    --font-body:     'Inter', sans-serif;
    --max-width:     1200px;
    --nav-height:    64px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* =====================
   TYPOGRAPHY
   ===================== */
h2 {
    font-family: var(--font-title);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: 0.01em;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h3 {
    font-family: var(--font-title);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: clamp(1.4rem, 3vw, 2rem);
}

h4 {
    font-family: var(--font-title);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
}

/* =====================
   LAYOUT
   ===================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
}

section {
    padding: 100px 0;
}

.section-dark {
    background-color: var(--bg-secondary);
}

/* =====================
   SECTION HEADERS
   ===================== */
.section-header {
    margin-bottom: 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin-bottom: 18px;
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 2px;
    background-color: var(--accent);
    flex-shrink: 0;
}

.section-desc {
    margin-top: 18px;
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.8;
}

/* =====================
   BUTTONS
   ===================== */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--accent);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background-color 0.2s, transform 0.15s;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-1px);
    color: #fff;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(255,255,255,0.25);
    transition: border-color 0.2s;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--text-secondary);
}

.btn-outline {
    display: inline-block;
    padding: 13px 28px;
    background-color: transparent;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--border);
    transition: border-color 0.2s, color 0.2s;
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* =====================
   NAVIGATION
   ===================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background-color: rgba(13, 13, 13, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
    height: 100%;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 40px;
    width: auto;
    /* Logo blanc sur fond transparent — filtre pour assurer la lisibilité */
    filter: brightness(0) invert(1);
}

#nav-toggle {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    padding: 6px;
    z-index: 10;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text-primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

#nav-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
#nav-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
#nav-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.btn-nav {
    padding: 8px 20px !important;
    background-color: var(--accent) !important;
    color: #fff !important;
    font-weight: 600 !important;
    transition: background-color 0.2s !important;
}

.btn-nav:hover {
    background-color: var(--accent-dark) !important;
    color: #fff !important;
}

/* =====================
   HERO
   ===================== */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: calc(var(--nav-height) + 60px) 28px 80px;
    position: relative;
    overflow: hidden;

    /* Image de fond — néon 424 Barbell */
    background-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.65) 50%,
            rgba(0, 0, 0, 0.80) 100%
        ),
        url('images/neonBackground.jpeg');
    background-size: cover;
    background-position: center 22%;
    background-repeat: no-repeat;
}

/* Barre rouge verticale gauche */
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--accent) 25%, var(--accent) 75%, transparent);
}

.hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero-tag::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 2px;
    background-color: var(--accent);
}

/* Titre hero */
#hero h1 {
    line-height: 0.9;
    margin-bottom: 20px;
    color: var(--text-primary);
}

#hero h1 em {
    display: block;
    font-family: var(--font-gothic);
    font-style: normal;
    font-weight: normal;
    font-size: clamp(4rem, 11vw, 8rem);
    color: var(--text-primary);
    letter-spacing: 0.05em;
    line-height: 0.85;
}

#hero h1 .gothic {
    display: block;
    font-family: var(--font-gothic);
    font-weight: 400;
    font-size: clamp(3.5rem, 10vw, 7.5rem);
    color: var(--text-primary);
    letter-spacing: 0.02em;
    line-height: 1;
}

.hero-sub {
    font-family: var(--font-title);
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-secondary);
    font-size: 1rem;
    animation: bounce 2.5s ease-in-out infinite;
    z-index: 1;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
    50%       { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* =====================
   CLUB SECTION
   ===================== */
.club-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 48px;
}

.club-left .section-header {
    margin-bottom: 24px;
}

.club-left p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.85;
    font-size: 0.97rem;
}

.club-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.85;
    font-size: 0.97rem;
}

.club-text strong {
    color: var(--text-primary);
}

.club-text a {
    color: var(--accent);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.club-text a:hover {
    border-color: var(--accent);
}

.club-stats {
    display: flex;
    flex-direction: column;
}

.stat {
    padding: 36px;
    border: 1px solid var(--border);
    margin-bottom: -1px;
    background-color: var(--bg-card);
    transition: background-color 0.2s;
}

.stat:hover {
    background-color: #1c1c1c;
}

.stat-number {
    display: block;
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
}

/* Photo groupe + fondateurs côte à côte */
.club-team {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

/* Photo de groupe */
.club-photo {
    overflow: hidden;
    border: 1px solid var(--border);
}

.club-photo img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center 55%;
    display: block;
    transition: transform 0.5s ease;
}

.club-photo:hover img {
    transform: scale(1.02);
}

/* Fondateurs */
.founders-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.founders-section > .section-tag {
    margin-bottom: 0;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.founder-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    padding: 28px 20px;
    text-align: center;
    transition: border-color 0.2s, background-color 0.2s;
}

.founder-card:hover {
    border-color: var(--accent);
    background-color: #1c1c1c;
}

.founder-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 2px solid var(--border);
    transition: border-color 0.2s;
}

.founder-card:hover .founder-photo {
    border-color: var(--accent);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.founder-card strong {
    display: block;
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.founder-card span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

/* =====================
   DISCIPLINE SECTION
   ===================== */
.lifts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: var(--border);
}

.lift-card {
    background-color: var(--bg-secondary);
    padding: 52px 44px;
    position: relative;
    overflow: hidden;
    transition: background-color 0.25s;
}

.lift-card:hover {
    background-color: #141414;
}

.lift-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.lift-card:hover::after {
    transform: scaleX(1);
}

.lift-number {
    display: block;
    font-family: var(--font-title);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(230, 60, 47, 0.12);
    line-height: 1;
    margin-bottom: 12px;
}

.lift-card h3 {
    font-size: 1.7rem;
    margin-bottom: 18px;
    color: var(--text-primary);
}

.lift-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
}

/* =====================
   LA SALLE SECTION
   ===================== */
.salle-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.salle-gallery figure {
    overflow: hidden;
    border: 1px solid var(--border);
    margin: 0;
}

.salle-gallery figure img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.salle-gallery figure:hover img {
    transform: scale(1.03);
}

/* =====================
   ADHÉSION SECTION
   ===================== */
.adhesion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 36px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background-color: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.info-item strong {
    display: block;
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.info-item p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}

.adhesion-cta {
    padding: 48px;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
}

.adhesion-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.adhesion-cta > p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

.adhesion-cta .btn-primary,
.adhesion-cta .btn-secondary {
    display: block;
    text-align: center;
    width: 100%;
    margin-bottom: 12px;
}

/* =====================
   EQUIPMENT SECTION
   ===================== */
.equipment-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.equipment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background-color: var(--border);
}

.equipment-item {
    background-color: var(--bg-secondary);
    padding: 28px 24px;
    border-left: 3px solid transparent;
    transition: background-color 0.2s, border-color 0.2s;
}

.equipment-item:hover {
    background-color: #141414;
    border-left-color: var(--accent);
}

.equipment-item h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
}

.equipment-item p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.65;
}

/* Photo de la salle */
.equipment-photo {
    overflow: hidden;
    border: 1px solid var(--border);
    height: 100%;
    min-height: 400px;
}

.equipment-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.equipment-photo:hover img {
    transform: scale(1.03);
}

/* =====================
   SPONSORS SECTION
   ===================== */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 72px;
}

.sponsor-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s;
    position: relative;
}

.sponsor-card:hover {
    border-color: #3a3a3a;
}

.sponsor-featured {
    border-color: var(--accent);
}

.sponsor-featured:hover {
    border-color: var(--accent);
}

.sponsor-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    background-color: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 4px 10px;
}

.sponsor-tier {
    display: block;
    font-family: var(--font-title);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin-bottom: 14px;
}

.sponsor-price {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 32px;
}

.sponsor-price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.sponsor-benefits {
    flex: 1;
    margin-bottom: 32px;
}

.sponsor-benefits li {
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.88rem;
    position: relative;
    padding-left: 18px;
}

.sponsor-benefits li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.sponsor-benefits li:last-child {
    border-bottom: none;
}

/* Logos sponsors actuels */
.current-sponsors {
    border-top: 1px solid var(--border);
    padding-top: 56px;
    text-align: center;
}

.current-sponsors h3 {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 36px;
}

.sponsors-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.sponsor-logo-box {
    padding: 20px 40px;
    border: 1px solid var(--border);
    background-color: var(--bg-card);
    transition: border-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logo-box:hover {
    border-color: var(--text-secondary);
}

.sponsor-logo-box img {
    height: 48px;
    width: auto;
    /* Inversion pour logo noir sur fond sombre */
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.2s;
}

.sponsor-logo-box:hover img {
    opacity: 1;
}

/* =====================
   FOOTER
   ===================== */
footer {
    background-color: #080808;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    padding: 72px 0 52px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.8;
}

.footer-col h4 {
    color: var(--text-primary);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--text-primary);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.78rem;
    padding-bottom: 36px;
}

/* =====================
   RESPONSIVE — TABLET
   ===================== */
@media (max-width: 1024px) {
    .club-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .adhesion-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .club-stats {
        flex-direction: row;
    }

    .stat {
        flex: 1;
        margin-bottom: 0;
        margin-right: -1px;
    }

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

    .lift-card {
        padding: 40px 36px;
    }

    .equipment-layout {
        grid-template-columns: 1fr;
    }

    .equipment-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .equipment-photo {
        min-height: 300px;
    }

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

    .sponsors-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* =====================
   RESPONSIVE — MOBILE
   ===================== */
@media (max-width: 768px) {
    section {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* NAV MOBILE */
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        height: auto;
        max-height: calc(100dvh - var(--nav-height));
        z-index: 999;
        background-color: var(--bg-primary);
        border-top: 1px solid var(--border);
        flex-direction: column;
        align-items: stretch;
        padding: 24px 28px;
        gap: 0;
        overflow-y: auto;
    }

    #nav-toggle:checked ~ .nav-links {
        display: flex;
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid var(--border);
        font-size: 1rem;
        letter-spacing: 0.08em;
    }

    .nav-links li:last-child a {
        border-bottom: none;
        margin-top: 20px;
        display: block;
        text-align: center;
    }

    /* HERO MOBILE */
    #hero {
        background-position: center center;
        background-image:
            linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.75) 0%,
                rgba(0, 0, 0, 0.85) 100%
            ),
            url('images/neonBackground.jpeg');
    }

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

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        text-align: center;
    }

    /* CLUB MOBILE */
    .club-stats {
        flex-direction: column;
    }

    .stat {
        margin-right: 0;
        margin-bottom: -1px;
    }

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

    .club-photo img {
        height: 320px;
    }

    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* LA SALLE MOBILE */
    .salle-gallery {
        grid-template-columns: 1fr;
    }

    .salle-gallery figure img {
        height: 360px;
    }

    /* EQUIPMENT MOBILE */
    .equipment-grid {
        grid-template-columns: 1fr;
    }

    /* ADHESION MOBILE */
    .adhesion-cta {
        padding: 32px 24px;
    }

    /* FOOTER */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 48px 0 36px;
    }

    .footer-brand {
        grid-column: auto;
    }
}
