/* --- INTRO SECTION --- */
.page-header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../clubs-bg.jpg') center/cover;
}

.page-header h1 { font-size: 3rem; margin-bottom: 10px; color: var(--primary-yellow); }
.page-header p { max-width: 600px; margin: 0 auto; color: #ddd; font-size: 1.2rem; }

/* --- VILLES & CLUBS GRID --- */
.city-section {
    padding: 50px 5%;
    border-bottom: 1px solid #222;
}

.city-title {
    font-size: 2rem;
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 4px solid var(--primary-yellow);
}

.clubs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.city-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.clubs-grid .city-title {
    margin: 0;
}

/* --- CARTE CLUB DESIGN --- */
.club-card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.club-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.club-img {
    height: 200px;
    background-color: #333;
    background-size: cover;
    background-position: center;
    position: relative;
}

.club-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.badge-surface {
    position: absolute;
    top: 10px; right: 10px;
    background: var(--primary-yellow);
    color: black;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.club-content { padding: 25px; flex: 1; display: flex; flex-direction: column; }

.club-city {
    font-size: 0.9rem;
    color: var(--primary-yellow);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--font-title);
    margin: 0 0 6px;
}

.club-name { font-size: 1.5rem; margin-bottom: 15px; color: white; }

.club-details { margin-bottom: 20px; flex: 1; }

.detail-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #ccc;
    font-size: 0.95rem;
}

.detail-row i {
    color: var(--primary-yellow);
    width: 25px;
    margin-top: 5px;
}

/* --- BOUTONS --- */
.card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-map {
    flex: 1;
    padding: 10px;
    text-align: center;
    border: 1px solid #444;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: bold;
}

.btn-map:hover { background: #333; border-color: white; }

.btn-contact {
    flex: 1;
    padding: 10px;
    text-align: center;
    background: var(--primary-yellow);
    color: black;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: bold;
}

.btn-contact:hover { background: white; }

.video-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1000;
}

.video-overlay.is-active {
    display: flex;
}

.video-overlay-content {
    position: relative;
    width: min(900px, 95vw);
    background: #000;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.video-overlay-player {
    width: 100%;
    height: auto;
    display: block;
}

body.no-scroll {
    overflow: hidden;
}

@media (max-width: 768px) {
    .page-header h1 { font-size: 2.5rem; }
    .card-actions { flex-direction: column; }
    .clubs-grid {
        grid-template-columns: 1fr;
    }
    .clubs-grid .city-title {
        margin-bottom: 15px;
    }
}
