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

:root {
    --bg-dark: #060b14;
    --card-bg: #0f172a;
    --neon-blue: #00d2ff;
    --neon-green: #00e676;
    --text-light: #f1f5f9;
    --text-muted: #94a3b8;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    scroll-behavior: smooth;
}

header {
    background-color: rgba(15, 23, 42, 0.95);
    border-bottom: 2px solid var(--neon-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo {
    height: 60px;
    border-radius: 8px;
    border: 1px solid var(--neon-green);
}

.logo-text h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: var(--text-light);
    letter-spacing: 2px;
}

.logo-text p {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    color: var(--neon-green);
    letter-spacing: 4px;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--neon-blue);
}

.hero-banner {
    background: linear-gradient(rgba(6, 11, 20, 0.8), rgba(6, 11, 20, 0.9)), url('tech.jpg') no-repeat center/cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: var(--neon-blue);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
    color: var(--text-muted);
}

.btn-main {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, var(--neon-blue), #0072ff);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 210, 255, 0.7);
}

#clubs-section {
    padding: 60px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--neon-green);
}

.age-filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.btn-age {
    background-color: var(--card-bg);
    color: var(--text-light);
    border: 1px solid rgba(0, 210, 255, 0.3);
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-age:hover, .btn-age.active {
    background-color: var(--neon-blue);
    color: var(--bg-dark);
    box-shadow: 0 0 10px var(--neon-blue);
    border-color: var(--neon-blue);
}

.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.club-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: transform 0.3s, border-color 0.3s;
}

.club-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
}

.club-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.club-info {
    padding: 20px;
}

.club-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.age-badge {
    display: inline-block;
    padding: 4px 10px;
    background-color: rgba(0, 230, 118, 0.15);
    color: var(--neon-green);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 11, 20, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background-color: var(--card-bg);
    border: 2px solid var(--neon-blue);
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    padding: 30px;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.4);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: var(--text-muted);
    cursor: pointer;
}

.close-modal:hover {
    color: red;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .modal-body { grid-template-columns: 1fr; }
}

.modal-media img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.video-container iframe, .video-container video {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    border: 1px solid var(--neon-blue);
}

.modal-age-badge {
    margin-top: 15px;
    font-weight: bold;
    color: var(--neon-green);
}

#contact {
    background-color: #0a1120;
    padding: 60px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-container { grid-template-columns: 1fr; }
}

.contact-info .contact-logo {
    height: 80px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.contact-info h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-blue);
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.contact-form {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(0, 210, 255, 0.2);
}

.contact-form h3 {
    margin-bottom: 20px;
    color: var(--text-light);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background-color: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 6px;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--neon-green);
    outline: none;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: var(--neon-green);
    color: var(--bg-dark);
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    font-family: 'Orbitron', sans-serif;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #00c853;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: var(--bg-dark);
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.video-container iframe, .video-container video {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    border: 1px solid var(--neon-blue);
    background-color: #000; /* Fond noir pour la vidéo */
}
/* Conteneur global des boutons flottants */
.contact-buttons-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column; /* Aligne les boutons à la verticale */
    gap: 12px; /* Espace entre les boutons */
    z-index: 9999; /* Reste toujours au-dessus du site */
}

/* Style de base pour chaque bouton */
.social-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Effet au survol de la souris */
.social-btn:hover {
    transform: scale(1.15) translateY(-3px);
}

/* Couleurs spécifiques pour chaque réseau */
.phone-btn {
    background-color: #0072ff; /* Bleu pour le téléphone */
}
.phone-btn img {
    filter: invert(1); /* Rend l'icône blanche */
    width: 24px;
    height: 24px;
}

.whatsapp-btn {
    background-color: #25d366; /* Vert WhatsApp */
}
.whatsapp-btn img {
    width: 32px;
    height: 32px;
}

.facebook-btn {
    background-color: #1877f2; /* Bleu officiel Facebook */
}
.facebook-btn img {
    width: 32px;
    height: 32px;
}

/* Adaptation pour les petits écrans de téléphones */
@media (max-width: 480px) {
    .social-btn {
        width: 48px;
        height: 48px;
    }
    .social-btn img {
        transform: scale(0.85);
    }
}
