.contact-info a.contact-item {
    text-decoration: none;
    color: var(--text-color);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info a.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 122, 0.5);
    border: 1px solid var(--primary-color);
}

/* Style de secours si la vidéo ne peut pas être lue */
.hero.video-fallback {
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}/* Compteur flottant */
.floating-counter {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 10px 15px;
    color: white;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    box-shadow: 0 0 15px rgba(255, 0, 122, 0.5);
}

.floating-counter::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    border-radius: 14px;
    z-index: -1;
    animation: glowing 1.5s linear infinite;
}

.floating-counter.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-counter .km-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: white;
}

.floating-counter .km-count {
    display: flex;
    align-items: center;
    gap: 5px;
}

.floating-counter #floating-km-count {
    color: #ffbf00; /* Or */
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'Racing Sans One', cursive;
    text-shadow: 0 0 10px rgba(255, 191, 0, 0.7);
}

.floating-counter .km-unit {
    color: #ffbf00;
    font-size: 0.8rem;
    font-weight: 700;
}/* Variables */
:root {
    --primary-color: #ff007a; /* Rose néon */
    --secondary-color: #4f40ff; /* Bleu violet */
    --dark-color: #121212;
    --light-color: #f8f8f8;
    --accent-color: #33ccff; /* Bleu cyan */
    --text-color: #e0e0e0;
    --background-color: #121212;
    --timeline-complete: #39ff14; /* Vert néon */
    --timeline-active: #ff007a; /* Rose néon */
    --timeline-future: #444;
    --gradient-start: #ff007a;
    --gradient-end: #4f40ff;
}

/* Menu Button */
.menu-btn {
    display: none; /* Masquer le bouton de menu par défaut */
}

.fa-bars {
    font-size: 28px;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 0, 122, 0.7);
    transition: transform 0.3s ease;
}

.fa-bars:hover {
    transform: scale(1.1);
}

/* Bouton de fermeture */
.close-btn {
    display: none; /* Masquer le bouton de fermeture par défaut */
    position: absolute;
    top: 20px;
    right: 20px;
}

.fa-times {
    font-size: 28px;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 0, 122, 0.7);
    transition: transform 0.3s ease;
}

.fa-times:hover {
    transform: scale(1.1);
}

/* Reset et bases */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 30, 0.9) 100%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/grid-bg.png');
    background-size: cover;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

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

ul {
    list-style: none;
}

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

section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    font-weight: 900;
    letter-spacing: 1px;
    color: white;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color), 0 0 40px var(--primary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    box-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
}

/* Boutons */
.primary-btn, .secondary-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 0, 122, 0.5);
}

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

.primary-btn::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    z-index: -1;
    animation: glowing 1.5s linear infinite;
}

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

.primary-btn:hover {
    background-color: rgba(255, 0, 122, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(255, 0, 122, 0.5);
}

.secondary-btn:hover {
    background-color: rgba(255, 0, 122, 0.2);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(255, 0, 122, 0.3);
}

@keyframes glowing {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.5s ease;
    background-color: rgba(0, 0, 0, 0.8);
}

.navbar.scrolled {
    background-color: black;
    padding: 10px 5%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

#logo-img {
    height: 60px;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    justify-content: center;
    flex: 1; /* Prend tout l'espace disponible pour centrer les éléments */
}

.nav-links ul {
    display: flex;
    justify-content: center;
}

.nav-links ul li {
    margin: 0 15px; /* Espacement égal de chaque côté */
}

.nav-links ul li a {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

.nav-links ul li a.cta-btn {
    background-color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 5px;
    color: white;
}

.nav-links ul li a.cta-btn:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Style de secours si la vidéo ne peut pas être lue */
.hero.video-fallback {
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    filter: blur(5px); /* Effet de flou sur la vidéo */
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h2 {
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6), 0 0 20px var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    color: #e0e0e0;
}

/* Compteur de kilomètres */
.km-counter {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 10px 20px;
    margin: 0 auto 25px auto;
    max-width: 320px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 0, 122, 0.5);
    z-index: 10;
    cursor: pointer;
}

.km-counter::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    z-index: -1;
    animation: glowing 1.5s linear infinite;
    border-radius: 14px;
}

.km-label {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-right: 15px;
}

.km-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 10px;
}

.km-count {
    color: #ffbf00; /* Or */
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'Racing Sans One', cursive;
    text-shadow: 0 0 10px rgba(255, 191, 0, 0.7);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Features Section */
.features {
    background-color: var(--dark-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(79, 64, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: rgba(18, 18, 24, 0.8);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    border: 1px solid rgba(79, 64, 255, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    color: var(--light-color);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(79, 64, 255, 0.3);
    border: 1px solid rgba(79, 64, 255, 0.6);
}

.feature-card:hover::before {
    transform: translateY(0);
}

.feature-card i {
    font-size: 3rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 0, 122, 0.5));
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

/* Roadmap Section */
.roadmap {
    background-color: var(--dark-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/grid-bg.png');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--timeline-future);
    z-index: 1;
}

.timeline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 0%;
    background: linear-gradient(to bottom, var(--timeline-complete), var(--timeline-active));
    z-index: 2;
    box-shadow: 0 0 15px var(--primary-color);
    transition: height 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.timeline.animate-progress::after {
    height: 40%; /* Réglé pour s'arrêter au stade actuel (Q2 2025, le deuxième élément) */
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 50%;
    text-align: right;
    padding-right: 50px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    text-align: left;
    padding-left: 50px;
}

.timeline-content {
    position: relative;
    background-color: rgba(20, 20, 30, 0.8);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(79, 64, 255, 0.3);
    z-index: 3;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 0, 122, 0.3);
}

.timeline-item.complete .timeline-content {
    border: 1px solid rgba(57, 255, 20, 0.4);
}

.timeline-item.active .timeline-content {
    border: 1px solid rgba(255, 0, 122, 0.6);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 4px;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    background-color: var(--secondary-color);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    background-color: var(--secondary-color);
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    z-index: 1;
}

.timeline-item.complete::after {
    background-color: var(--timeline-complete);
}

.timeline-item.active::after {
    background-color: var(--timeline-active);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.timeline-content ul {
    margin-bottom: 15px;
}

.timeline-content ul li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.timeline-content .status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.timeline-item.complete .status {
    background-color: rgba(57, 255, 20, 0.2);
    color: var(--timeline-complete);
    border: 1px solid var(--timeline-complete);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.timeline-item.active .status {
    background-color: rgba(255, 0, 122, 0.2);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 0, 122, 0.5);
    animation: pulse 2s infinite;
}

.timeline-item .status {
    background-color: rgba(68, 68, 68, 0.3);
    color: #aaa;
    border: 1px solid #666;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 122, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 122, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 122, 0);
    }
}

@keyframes textPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: textPulse 0.3s ease;
}

/* Gallery Section */
.gallery {
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 122, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    z-index: 1;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    z-index: -1;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 122, 0.3);
    border: 2px solid transparent;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    transition: transform 0.5s ease;
    border-radius: 6px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Newsletter Section */
.newsletter {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/newsletter-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter p {
    margin-bottom: 30px;
}

.newsletter form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}

.newsletter button {
    border-radius: 0 5px 5px 0;
    padding: 15px 20px;
}

/* Contact Section */
.contact {
    background-color: var(--dark-color);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 122, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
    justify-content: center;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    background-color: rgba(18, 18, 24, 0.8);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(79, 64, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 122, 0.3);
    border: 1px solid var(--primary-color);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
}

.contact-item p {
    color: var(--text-color);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: rgba(18, 18, 24, 0.8);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(79, 64, 255, 0.3);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: white;
    text-align: center;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: white;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 0, 122, 0.3);
}

.contact-form .primary-btn {
    width: 100%;
    padding: 12px;
}

/* Styles pour le bouton Discord cliquable */
.contact-info a.contact-item {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info a.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 122, 0.5);
    border: 1px solid var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-logo h3 {
    font-family: 'Racing Sans One', cursive;
    font-size: 1.2rem;
}

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

.social-links a {
    display: inline-block;
    margin: 0 10px;
    font-size: 1.5rem;
    color: white;
    transition: color 0.3s ease;
}

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

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.copyright {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    /* Navbar en mode responsive */
    .menu-btn {
        display: block; /* Afficher le bouton de menu en mode responsive */
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.5s ease;
        z-index: 1001;
        backdrop-filter: blur(5px);
        border-right: 1px solid var(--primary-color);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links.active .close-btn {
        display: block; /* Afficher le bouton de fermeture uniquement quand le menu est ouvert */
    }
    
    .nav-links ul {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links ul li {
        margin: 15px 0;
    }
    
    /* Timeline */
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0 0 0 80px;
        text-align: left;
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -25px;
        right: auto;
    }
    
    .timeline-item::after {
        left: 30px;
    }
    
    /* CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Newsletter */
    .newsletter form {
        flex-direction: column;
    }
    
    .newsletter input {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .newsletter button {
        border-radius: 5px;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}