/* ========================================
   GLOBAL STYLES & VARIABLES
   ======================================== */

:root {
    /* Couleurs principales - Bleu/Blanc/Rouge/Or */
    --primary-blue: #002395;
    --primary-red: #ED2939;
    --primary-white: #FFFFFF;
    --gold: #FFD700;
    --dark-gold: #FFA500;
    
    /* Couleurs secondaires */
    --dark-bg: #0a0e27;
    --darker-bg: #050812;
    --light-bg: #f8f9fa;
    --gray-text: #6c757d;
    --border-color: #dee2e6;
    
    /* Typographie */
    --font-primary: 'Poppins', sans-serif;
    --font-headings: 'Montserrat', sans-serif;
    
    /* Espacements */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gold);
    transition: var(--transition-fast);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand {
    display: flex;
    flex-direction: column;
}

.athlete-name {
    font-family: var(--font-headings);
    font-size: 24px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 2px;
}

.athlete-tagline {
    font-size: 12px;
    color: var(--primary-white);
    opacity: 0.8;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-fast);
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--gold);
    color: var(--dark-bg) !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-bg) 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,215,0,0.1)" stroke-width="0.5"/></svg>') repeat;
    opacity: 0.3;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(237, 41, 57, 0.2) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--primary-white);
}

.hero-label {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid var(--gold);
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-main {
    font-family: var(--font-headings);
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 5px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5)); }
    to { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)); }
}

.title-sub {
    font-size: 28px;
    font-weight: 300;
    color: var(--primary-white);
    opacity: 0.9;
}

.hero-description {
    font-size: 18px;
    margin: 30px 0;
    opacity: 0.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-headings);
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
}

.btn-secondary:hover {
    background: var(--primary-white);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 18px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

/* ========================================
   SECTION STYLES
   ======================================== */

section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    background: var(--gold);
    color: var(--dark-bg);
    padding: 6px 20px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-headings);
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   À PROPOS SECTION
   ======================================== */

.section-apropos {
    background: var(--light-bg);
}

.apropos-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-text {
    margin-bottom: 40px;
}

.lead {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
}

.key-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-box {
    background: var(--primary-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 28px;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.feature-box ul {
    list-style: none;
}

.feature-box li {
    padding: 8px 0;
    color: #555;
    line-height: 1.6;
}

.values-section {
    background: var(--primary-white);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
}

.values-section h3 {
    font-size: 26px;
    margin-bottom: 30px;
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.value-item:hover {
    background: var(--gold);
    transform: scale(1.05);
}

.value-item i {
    font-size: 32px;
    color: var(--primary-blue);
}

.value-item:hover i {
    color: var(--dark-bg);
}

.value-item span {
    font-weight: 600;
    color: var(--dark-bg);
}

.athlete-quote {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: var(--primary-white);
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    position: relative;
    font-style: italic;
}

.athlete-quote i {
    font-size: 48px;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 20px;
}

.athlete-quote p {
    font-size: 20px;
    line-height: 1.8;
    margin: 0 0 20px 60px;
}

.athlete-quote cite {
    display: block;
    text-align: right;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
}

/* ========================================
   PALMARÈS SECTION
   ======================================== */

.section-palmares {
    background: var(--primary-white);
}

.ranking-highlight {
    margin-bottom: 60px;
}

.ranking-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-bg));
    color: var(--primary-white);
    padding: 50px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 40px rgba(0, 35, 149, 0.3);
}

.ranking-icon {
    width: 100px;
    height: 100px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--dark-bg);
    flex-shrink: 0;
}

.ranking-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.ranking-position {
    font-family: var(--font-headings);
    font-size: 72px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin: 10px 0;
}

.ranking-detail {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.ranking-note {
    font-size: 16px;
    opacity: 0.7;
    font-style: italic;
}

.season-section {
    max-width: 1000px;
    margin: 0 auto;
}

.season-title {
    font-size: 32px;
    color: var(--dark-bg);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.competitions-category {
    margin-bottom: 60px;
}

.competitions-category h4 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.competition-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.competition-card {
    background: var(--primary-white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-blue);
    transition: var(--transition-fast);
}

.competition-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.competition-card.international {
    border-left-color: var(--gold);
}

.competition-card.upcoming {
    border-left-color: var(--gray-text);
    opacity: 0.8;
}

.comp-flag {
    font-size: 48px;
    margin-bottom: 15px;
}

.comp-header h5 {
    font-size: 20px;
    color: var(--dark-bg);
    margin-bottom: 5px;
}

.comp-date {
    color: var(--gray-text);
    font-size: 14px;
}

.comp-results {
    margin-top: 20px;
}

.result-item {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-item.best {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    border: 2px solid var(--gold);
}

.result-item.good {
    background: rgba(0, 35, 149, 0.1);
}

.result-label {
    font-weight: 600;
    color: var(--dark-bg);
}

.result-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
}

.result-item.best .result-value {
    color: var(--gold);
}

.result-detail {
    font-size: 12px;
    color: var(--gray-text);
    flex-basis: 100%;
    margin-top: 5px;
}

/* Table des résultats */
.results-table {
    overflow-x: auto;
    margin-top: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--primary-white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

thead {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: var(--primary-white);
}

th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background: var(--light-bg);
}

tr.highlight-row {
    background: rgba(255, 215, 0, 0.1);
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-national {
    background: var(--primary-blue);
    color: var(--primary-white);
}

.badge-regional {
    background: var(--primary-red);
    color: var(--primary-white);
}

.badge-zone {
    background: var(--gray-text);
    color: var(--primary-white);
}

.badge-special {
    background: var(--gold);
    color: var(--dark-bg);
}

.result-rank {
    font-weight: 700;
    color: var(--primary-blue);
}

.result-rank.best {
    color: var(--gold);
    font-size: 18px;
}

/* Special Achievement */
.special-achievement {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--dark-bg);
    flex-shrink: 0;
}

.achievement-content h4 {
    font-size: 24px;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.achievement-detail {
    color: var(--gray-text);
    margin-top: 5px;
}

/* ========================================
   PARTENARIAT SECTION
   ======================================== */

.section-partenariat {
    background: var(--light-bg);
}

.sponsor-value {
    margin-bottom: 60px;
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--primary-white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 35, 149, 0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 32px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.value-card ul {
    list-style: none;
}

.value-card li {
    padding: 10px 0;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.value-card li i {
    color: var(--gold);
    margin-top: 3px;
}

/* Offres de Partenariat */
.partnership-offers {
    margin: 80px 0;
}

.offers-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-bg);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.offer-card {
    background: var(--primary-white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: var(--transition-fast);
    border: 3px solid transparent;
}

.offer-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.offer-card.platinum {
    border-color: #E5E4E2;
}

.offer-card.platinum:hover {
    border-color: #C0C0C0;
}

.offer-card.gold {
    border-color: var(--gold);
}

.offer-card.gold:hover {
    border-color: var(--dark-gold);
}

.offer-card.silver {
    border-color: #C0C0C0;
}

.offer-card.silver:hover {
    border-color: #A8A8A8;
}

.offer-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--dark-bg);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.offer-card h4 {
    font-size: 28px;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.offer-subtitle {
    color: var(--gray-text);
    margin-bottom: 30px;
    font-size: 16px;
}

.offer-benefits {
    list-style: none;
    text-align: left;
    margin: 30px 0;
}

.offer-benefits li {
    padding: 12px 0;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.offer-benefits i {
    color: var(--gold);
    font-size: 18px;
    margin-top: 2px;
}

.btn-offer {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}

/* Partenariats en Nature */
.partnership-nature {
    background: var(--primary-white);
    padding: 50px;
    border-radius: 20px;
    margin: 60px 0;
}

.partnership-nature h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.nature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.nature-item {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 15px;
    transition: var(--transition-fast);
}

.nature-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
}

.nature-item i {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.nature-item h4 {
    font-size: 20px;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.nature-item p {
    color: var(--gray-text);
    font-size: 14px;
}

/* CTA Final */
.partnership-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-bg));
    border-radius: 20px;
    color: var(--primary-white);
}

.partnership-cta h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.partnership-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ========================================
   ACTUALITÉS SECTION
   ======================================== */

.section-actualites {
    background: var(--primary-white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.news-card.featured {
    grid-column: span 2;
}

.news-date {
    background: var(--gold);
    color: var(--dark-bg);
    padding: 20px;
    text-align: center;
    font-weight: 700;
}

.news-date .day {
    display: block;
    font-size: 36px;
    line-height: 1;
}

.news-date .month {
    display: block;
    font-size: 16px;
    text-transform: uppercase;
}

.news-date .year {
    display: block;
    font-size: 14px;
    opacity: 0.7;
}

.news-content {
    padding: 30px;
    flex-grow: 1;
}

.news-category {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--primary-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.news-content h3 {
    font-size: 24px;
    color: var(--dark-bg);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-content p {
    color: #555;
    line-height: 1.8;
}

.news-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.highlight-tag {
    background: rgba(0, 35, 149, 0.1);
    color: var(--primary-blue);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.section-contact {
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.info-box {
    background: var(--primary-white);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.info-box h3 {
    font-size: 22px;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.info-box p,
.info-box a {
    color: #555;
    line-height: 1.8;
}

.info-box a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.info-box a:hover {
    color: var(--gold);
}

.social-links {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: var(--primary-white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.social-links h3 {
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 24px;
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: scale(1.1) rotate(5deg);
}

/* Formulaire de Contact */
.contact-form-wrapper {
    background: var(--primary-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 16px;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form button {
    width: 100%;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--dark-bg);
    color: var(--primary-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--primary-white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition-fast);
}

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

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: scale(1.1) rotate(5deg);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.7;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: 50px 20px;
        transition: var(--transition-fast);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .title-main {
        font-size: 48px;
    }

    .title-sub {
        font-size: 20px;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .section-title {
        font-size: 36px;
    }

    .ranking-card {
        flex-direction: column;
        text-align: center;
    }

    .ranking-position {
        font-size: 56px;
    }

    .news-card.featured {
        grid-column: span 1;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    :root {
        --section-padding: 60px 0;
    }

    .athlete-name {
        font-size: 18px;
    }

    .title-main {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .title-sub {
        font-size: 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

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

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 28px;
    }

    .competition-cards,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .results-table {
        font-size: 14px;
    }

    th, td {
        padding: 10px 8px;
    }
}

/* ========================================
   ANIMATIONS & UTILITIES
   ======================================== */

.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}