/* ======================================
   VARIABLES ET STYLES DE BASE
   ====================================== */

:root {
    --primary-color: #2563eb;
    --secondary-color: #7c3aed;
    --accent-color: #f59e0b;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gray-color: #94a3b8;
    --text-color: #334155;
    --light-text: #ffffff;
    --border-radius: 12px;
    --box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
    padding-top: 80px; /* Espace pour le header fixe */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ======================================
   STYLES COMMUNS
   ====================================== */

/* Typographie */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Structure générale */
section {
    padding: 80px 0;
}

.main-content {
    padding-bottom: 80px;
}

/* Boutons et liens */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: var(--accent-color);
    color: var(--light-text);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--light-text);
}

/* ======================================
   STYLE HEADER
   ====================================== */

header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 5px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}

nav ul li a:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-2px);
}

nav ul li a.active {
    background-color: var(--primary-color);
    color: var(--light-text);
}

/* Sous-menus */
nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    min-width: 200px;
    padding: 10px 0;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    animation: fadeIn 0.3s ease;
}

nav ul li:hover > ul {
    display: block;
}

nav ul li ul li {
    width: 100%;
}

nav ul li ul li a {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Correction temporaire pour les sous-menus */
nav ul li ul {
    display: none;
}

nav ul li:hover > ul {
    display: block !important;
}

/* Bouton hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* Authentification */
.auth-section {
    display: flex;
    align-items: center;
}

.login-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

/* Utilisateur connecté */
.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.user-name {
    font-weight: 600;
    color: var(--primary-color);
}

.logout-link {
    color: #ef4444;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.logout-link:hover {
    color: #dc2626;
    text-decoration: underline;
}

/* Panier */
.cart-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    margin: 0 15px;
    position: relative;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cart-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.cart-icon {
    font-size: 1.2rem;
    margin-right: 5px;
    color: var(--primary-color);
}

.cart-amount {
    background: var(--primary-color);
    color: white;
    padding: 3px 8px;
    border-radius: 50px;
    font-size: 0.85rem;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ef4444;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay pour mobile */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 900;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay.active {
    display: block;
    opacity: 1;
}

/* ======================================
   STYLE FOOTER
   ====================================== */

.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.footer-slogan {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-address, .footer-contact {
    margin-bottom: 20px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-list a:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Réseaux sociaux */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* Horaires */
.hours-table {
    font-size: 0.95rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.hours-day {
    font-weight: 600;
}

.hours-time {
    opacity: 0.8;
}

/* Bas de page */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* ======================================
   STYLE PAGE INDEX
   ====================================== */

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/img/theo.png');
    background-position: center top;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    position: relative;
    margin-top: -80px; /* Annuler le padding du header */
    padding-top: 80px; /* Remettre l'espace du header */
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Actualités */
.news-section {
    background-color: var(--light-color);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.news-img-container {
    height: 200px;
    overflow: hidden;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-img {
    transform: scale(1.1);
}

.news-content {
    padding: 20px;
}

.news-date {
    color: var(--gray-color);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.news-excerpt {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.news-link:hover {
    color: var(--secondary-color);
}

.news-link::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.news-link:hover::after {
    transform: translateX(5px);
}

.news-more {
    text-align: center;
}

/* Section Présentation du club */
.about-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.05), rgba(124, 58, 237, 0.05));
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color);
}

.about-image {
    position: relative;
}

.rounded-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Section Prochains événements */
.events-section {
    background-color: white;
}

.events-timeline {
    max-width: 800px;
    margin: 0 auto 40px;
}

.event-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.event-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.event-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.event-content {
    flex-grow: 1;
}

.event-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.event-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--gray-color);
    font-size: 0.95rem;
}

.event-date, .event-location {
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.event-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.events-more {
    text-align: center;
}

/* Section Galerie */
.gallery-section {
    background-color: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    transition: var(--transition);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: white;
    font-size: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.gallery-more {
    text-align: center;
}

/* Section Témoignages */
.testimonials-section {
    background: white;
    padding: 100px 0;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonials-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-item {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-content {
    background: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 6rem;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: serif;
}

.testimonial-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-name {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.testimonial-role {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.testimonial-prev, .testimonial-next {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-prev:hover, .testimonial-next:hover {
    background: var(--primary-color);
    color: white;
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Section Partenaires */
.partners-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.partners-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.partner-item {
    max-width: 180px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
    transform: scale(0.9);
}

.partner-item:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1);
}

.partner-logo {
    width: 100%;
    height: auto;
}

.partners-more {
    text-align: center;
}

/* Section Newsletter */
.newsletter-section {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 0;
}

.newsletter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.newsletter-content {
    flex: 1;
    min-width: 300px;
}

.newsletter-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.newsletter-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

.newsletter-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    display: flex;
    max-width: 500px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.form-control {
    flex-grow: 1;
    padding: 15px 20px;
    border: none;
    font-size: 1rem;
    outline: none;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    background: white;
    color: var(--primary-color);
    padding: 15px 30px;
}

.newsletter-form .btn:hover {
    background: var(--accent-color);
    color: white;
}

/* ======================================
   STYLE PAGE LE CLUB
   ====================================== */

/* Hero de la page */
.page-hero {
    background: linear-gradient(rgba(21, 115, 255, 0.6), rgba(225, 0, 255, 0.6)), 
                linear-gradient(45deg, var(--primary-color), var(--secondary-color)), 
                url('/img/club-hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.7;
    z-index: -1;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Présentation du club */
.club-presentation {
    padding: 80px 0;
    background-color: var(--light-color);
}

.club-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.club-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.subsection-title {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.values-list li {
    margin-bottom: 1rem;
    padding-left: 25px;
    position: relative;
    font-size: 1.05rem;
}

.values-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.values-list li span {
    font-weight: 700;
    color: var(--primary-color);
}

/* Sections du club */
.club-sections {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.section-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.section-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.section-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.section-card:hover .section-overlay {
    opacity: 1;
}

.section-card:hover .section-image img {
    transform: scale(1.1);
}

.section-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.section-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.section-content p {
    margin-bottom: 20px;
    flex-grow: 1;
}

.section-content .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Localisation */
.location-section {
    padding: 80px 0;
    background-color: white;
}

.location-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.location-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.info-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Media queries pour le responsive */
@media (max-width: 992px) {
    .club-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .club-image {
        order: -1;
    }
    
    .location-info {
        grid-template-columns: 1fr;
    }
}

/* ======================================
   STYLE PAGE ENTRAINEMENT
   ====================================== */

/* Ajouter ici les styles spécifiques pour les pages d'entraînement */

/* ======================================
   STYLE PAGE KID VTT
   ====================================== */

/* Ajouter ici les styles spécifiques pour les pages Kid VTT */

/* ======================================
   STYLE PAGE BOUTIQUE
   ====================================== */

/* Ajouter ici les styles spécifiques pour les pages boutique */

/* ======================================
   STYLE PAGE MON COMPTE
   ====================================== */

/* Ajouter ici les styles spécifiques pour les pages de compte utilisateur */

/* ======================================
   ANIMATIONS
   ====================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======================================
   MEDIA QUERIES
   ====================================== */

/* Mobile */
@media (max-width: 768px) {
    /* Styles pour le menu mobile ici */
    .hamburger {
        display: flex;
    }
    
    /* Ajuster tous les autres éléments responsifs */
}

/* Tablette */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Styles pour tablette ici */
}

/* Petits écrans */
@media (max-width: 576px) {
    /* Styles pour très petits écrans ici */
}

/* Masquer certains éléments */
@media print {
    /* Styles pour l'impression ici */
}

/* Styles pour masquer le bandeau de date */
.hero::before,
.hero::after,
.event-date,
.date-display,
.date-sidebar,
[class*="date-"],
/* Tout élément positionné à gauche absolument */
body > *[style*="position: absolute"][style*="left:"],
body > *[style*="position: fixed"][style*="left:"] {
    display: none !important;
}