/**

 * FEUILLE DE STYLE PRINCIPALE

 * Site Oxygène Terre

 * Couleurs : Blanc, Jaune/Orange, Bleu (touches)

 */



/* ========================================

   RESET ET BASE

   ======================================== */



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



html {

    scroll-behavior: smooth;

}



body {

    font-family: 'Avenir', 'Helvetica Neue', Arial, sans-serif;

    background: #ffffff;

    color: #2c2c2c;

    line-height: 1.6;

    overflow-x: hidden;

}



img {

    max-width: 100%;

    height: auto;

    display: block;

}



a {

    text-decoration: none;

    color: inherit;

    transition: all 0.3s ease;

}



/* Skip to main content (accessibilité) */

.skip-to-main {

    position: absolute;

    left: -9999px;

    z-index: 999;

    padding: 1rem 2rem;

    background: #FF8C42;

    color: white;

    text-decoration: none;

    font-weight: 600;

}



.skip-to-main:focus {

    left: 50%;

    transform: translateX(-50%);

    top: 1rem;

}



/* ========================================

   NAVIGATION

   ======================================== */



nav {

    position: fixed;

    top: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.98);

    backdrop-filter: blur(10px);

    box-shadow: none;

    border: none;

    transition: all 0.3s ease;

}



.nav-container {

    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 1rem 2rem;

}



.logo-text {

    font-size: 1.3rem;

    font-weight: 700;

    color: #2c2c2c;

    letter-spacing: 0.5px;

}



.logo-text a:hover {

    color: #FF8C42;

}







/* Navigation links */

.nav-links {

    display: flex;

    gap: 2rem;

    list-style: none;

}



.nav-item {

    position: relative;

}



.nav-item > a {

    color: #2c2c2c;

    font-size: 0.95rem;

    font-weight: 500;

    padding: 0.5rem 0;

    display: block;

    transition: color 0.3s ease;

}



.nav-item > a:hover,

.nav-item > a.active {

    color: #FF8C42;

}



/* Dropdown menus */

.dropdown {

    position: absolute;

    top: 100%;

    left: 0;

    background: white;

    min-width: 200px;

    border-radius: 8px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);

    opacity: 0;

    visibility: hidden;

    transform: translateY(-10px);

    transition: all 0.3s ease;

    margin-top: 0.5rem;

}



.nav-item:hover .dropdown {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}



.dropdown a {

    display: block;

    padding: 1rem 1.5rem;

    color: #2c2c2c;

    font-size: 0.9rem;

    transition: all 0.3s ease;

}



.dropdown a:hover {

    background: rgba(255, 140, 66, 0.1);

    color: #FF8C42;

}



/* ========================================

   HERO SECTION

   ======================================== */



.hero {

    margin-top: 0;

    padding-top: 80px;

    min-height: 85vh;

    display: flex;

    align-items: center;

    justify-content: center;

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    position: relative;

    padding-bottom: 4rem;

    padding-left: 2rem;

    padding-right: 2rem;

    text-align: center;

}



.hero-content {

    max-width: 900px;

    position: relative;

    z-index: 2;

}



.hero h1 {

    font-size: 3.5rem;

    font-weight: 700;

    color: #ffffff;

    margin-bottom: 1.5rem;

    line-height: 1.2;

    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);

}



.hero-description {

    font-size: 1.3rem;

    color: #ffffff;

    margin-bottom: 2.5rem;

    line-height: 1.8;

    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);

}



.hero-buttons {

    display: flex;

    gap: 1.5rem;

    justify-content: center;

    flex-wrap: wrap;

}



/* ========================================

   BOUTONS

   ======================================== */



.btn {

    display: inline-block;

    padding: 1rem 2.5rem;

    border-radius: 30px;

    font-weight: 600;

    font-size: 1rem;

    transition: all 0.3s ease;

    cursor: pointer;

    border: 2px solid transparent;

}



.btn-primary {

    background: #FF8C42;

    color: white;

    box-shadow: 0 5px 20px rgba(255, 140, 66, 0.3);

}



.btn-primary:hover {

    background: #FF6B35;

    transform: translateY(-3px);

    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.5);

}



.btn-secondary {

    background: transparent;

    color: #2c2c2c;

    border: 2px solid #2c2c2c;

}



.btn-secondary:hover {

    background: #2c2c2c;

    color: white;

}



.btn-large {

    padding: 1.2rem 3rem;

    font-size: 1.1rem;

}



/* ========================================

   STATISTIQUES

   ======================================== */



.stats {

    padding: 5rem 2rem;

    background: white;

}



.stats-container {

    max-width: 1200px;

    margin: 0 auto;

}



.stats-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 3rem;

    text-align: center;

}



.stat-box {

    padding: 2rem 1rem;

    transition: transform 0.3s ease;

}



.stat-box:hover {

    transform: translateY(-5px);

}



.stat-icon {

    font-size: 3.5rem;

    margin-bottom: 1rem;

    animation: bounce 2s ease-in-out infinite;

}



.stat-box:nth-child(1) .stat-icon {

    animation-delay: 0s;

}



.stat-box:nth-child(2) .stat-icon {

    animation-delay: 0.2s;

}



.stat-box:nth-child(3) .stat-icon {

    animation-delay: 0.4s;

}



.stat-box:nth-child(4) .stat-icon {

    animation-delay: 0.6s;

}



.stat-number {

    font-size: 3.5rem;

    font-weight: 700;

    color: #FF8C42;

    margin-bottom: 0.5rem;

    line-height: 1;

}



.stat-label {

    font-size: 1rem;

    color: #666;

    line-height: 1.4;

}



/* ========================================

   SECTION À PROPOS

   ======================================== */



.about {

    padding: 6rem 2rem;

    background: #fafafa;

}



.about-container {

    max-width: 900px;

    margin: 0 auto;

    text-align: center;

}



.about h2 {

    font-size: 2.5rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 2rem;

}



.about-description {

    font-size: 1.15rem;

    color: #555;

    line-height: 1.8;

    margin-bottom: 2rem;

}



.about-actions {

    margin-top: 2rem;

}



/* ========================================

   SECTIONS DE CARTES

   ======================================== */



.cards-section {

    padding: 6rem 2rem;

    background: white;

}



.cards-container {

    max-width: 1200px;

    margin: 0 auto;

}



.section-title {

    font-size: 2.5rem;

    font-weight: 700;

    text-align: center;

    margin-bottom: 1rem;

    color: #2c2c2c;

}



.section-subtitle {

    text-align: center;

    font-size: 1.2rem;

    color: #666;

    margin-bottom: 4rem;

}



.cards-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 2.5rem;

}



.card {

    background: white;

    border-radius: 15px;

    overflow: hidden;

    transition: all 0.3s ease;

    cursor: pointer;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

}



.card:hover {

    transform: translateY(-10px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

}



.card-image {

    width: 100%;

    height: 250px;

    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);

    overflow: hidden;

}



.card-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.3s ease;

}



.card:hover .card-image img {

    transform: scale(1.05);

}



.card-content {

    padding: 2rem;

}



.card h3 {

    font-size: 1.4rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 1rem;

}



.card p {

    font-size: 1rem;

    color: #666;

    line-height: 1.7;

    margin-bottom: 1rem;

}



.card-link {

    color: #FF8C42;

    font-weight: 600;

    display: inline-block;

    margin-top: 0.5rem;

}



.card-link:hover {

    color: #FF6B35;

}



/* ========================================

   SECTION ACTIONS

   ======================================== */



.actions-section {

    padding: 6rem 2rem;

    background: #fafafa;

}



.actions-container {

    max-width: 1200px;

    margin: 0 auto;

}



.actions-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 3rem;

    margin-bottom: 3rem;

}



.action-item {

    text-align: center;

    padding: 2rem;

    background: white;

    border-radius: 15px;

    transition: all 0.3s ease;

}



.action-item:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

}



.action-icon {

    font-size: 3.5rem;

    margin-bottom: 1.5rem;

}



.action-item h3 {

    font-size: 1.5rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 1rem;

}



.action-item p {

    font-size: 1rem;

    color: #666;

    line-height: 1.7;

}



.actions-cta {

    text-align: center;

    margin-top: 3rem;

}



/* ========================================

   SECTION ACTUALITÉS

   ======================================== */



.news-section {

    padding: 6rem 2rem;

    background: white;

}



.news-container {

    max-width: 1200px;

    margin: 0 auto;

}



.news-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 2.5rem;

    margin-bottom: 3rem;

}



.news-item {

    padding: 2rem;

    background: #fafafa;

    border-radius: 15px;

    transition: all 0.3s ease;

}



.news-item:hover {

    background: white;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    transform: translateY(-5px);

}



.news-date {

    color: #FF8C42;

    font-size: 0.9rem;

    font-weight: 600;

    margin-bottom: 0.5rem;

}



.news-item h3 {

    font-size: 1.3rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 1rem;

}



.news-item p {

    font-size: 1rem;

    color: #666;

    line-height: 1.7;

    margin-bottom: 1rem;

}



.news-link {

    color: #FF8C42;

    font-weight: 600;

}



.news-link:hover {

    color: #FF6B35;

}



.news-cta {

    text-align: center;

    margin-top: 3rem;

}



/* ========================================

   SECTION CTA

   ======================================== */



.cta-section {

    padding: 5rem 2rem;

    background: #FF8C42;

    color: white;

    text-align: center;

}



.cta-container {

    max-width: 900px;

    margin: 0 auto;

}



.cta-section h2 {

    font-size: 2.5rem;

    font-weight: 700;

    margin-bottom: 1.5rem;

}



.cta-section p {

    font-size: 1.2rem;

    margin-bottom: 2.5rem;

    opacity: 0.95;

}



.cta-buttons {

    display: flex;

    gap: 1.5rem;

    justify-content: center;

    flex-wrap: wrap;

}



.cta-section .btn-primary {

    background: white;

    color: #FF8C42;

}



.cta-section .btn-primary:hover {

    background: #f5f5f5;

}



.cta-section .btn-secondary {

    background: transparent;

    color: white;

    border-color: white;

}



.cta-section .btn-secondary:hover {

    background: white;

    color: #FF8C42;

}



/* ========================================

   SECTION NEWSLETTER

   ======================================== */



.newsletter-section {

    padding: 5rem 2rem;

    background: #fafafa;

}



.newsletter-container {

    max-width: 700px;

    margin: 0 auto;

    text-align: center;

}



.newsletter-section h2 {

    font-size: 2rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 1rem;

}



.newsletter-section p {

    font-size: 1.1rem;

    color: #666;

    margin-bottom: 2rem;

}



.newsletter-form {

    margin-top: 2rem;

}



.newsletter-input-group {

    display: flex;

    gap: 1rem;

    margin-bottom: 1rem;

}



.newsletter-input {

    flex: 1;

    padding: 1rem 1.5rem;

    border: 2px solid #ddd;

    border-radius: 30px;

    font-size: 1rem;

    transition: all 0.3s ease;

}



.newsletter-input:focus {

    outline: none;

    border-color: #FF8C42;

}



.newsletter-privacy {

    font-size: 0.85rem;

    color: #999;

    margin-top: 1rem;

}



.newsletter-privacy a {

    color: #FF8C42;

    text-decoration: underline;

}



/* ========================================

   FOOTER

   ======================================== */



footer {

    background: #FF6B35;

    color: white;

    padding: 2rem;

}



.footer-content {

    max-width: 1200px;

    margin: 0 auto;

    text-align: center;

}



.footer-legal {

    padding: 1rem 0;

}



.copyright {

    font-size: 0.95rem;

    margin-bottom: 0.8rem;

    opacity: 0.95;

}



.legal-links {

    font-size: 0.9rem;

    opacity: 0.9;

}



.legal-links a {

    color: white;

    text-decoration: none;

    transition: opacity 0.3s ease;

}



.legal-links a:hover {

    opacity: 0.7;

    text-decoration: underline;

}



.separator {

    margin: 0 0.8rem;

    opacity: 0.7;

}





/* ========================================

   ANIMATIONS

   ======================================== */



@keyframes float {

    0%, 100% {

        transform: translate(0, 0);

    }

    50% {

        transform: translate(30px, -30px);

    }

}



@keyframes fadeIn {

    from {

        opacity: 0;

        transform: translateY(20px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



@keyframes fadeInScale {

    from {

        opacity: 0;

        transform: scale(0.8);

    }

    to {

        opacity: 1;

        transform: scale(1);

    }

}



@keyframes bounce {

    0%, 100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-10px);

    }

}



.fade-in {

    animation: fadeIn 0.8s ease;

}



/* ========================================

   RESPONSIVE - TABLETTE

   ======================================== */



@media (max-width: 1024px) {

    .stats-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 2rem;

    }



    .cards-grid {

        grid-template-columns: repeat(2, 1fr);

    }



    .actions-grid {

        grid-template-columns: 1fr;

    }



    .news-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}



/* ========================================

   RESPONSIVE - MOBILE

   ======================================== */



@media (max-width: 768px) {

    /* Navigation mobile */

    .mobile-menu-toggle {

        display: flex;

    }



    .nav-links {

        position: absolute;

        top: 100%;

        left: 0;

        right: 0;

        background: white;

        flex-direction: column;

        padding: 1rem 0;

        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);

        display: none;

    }



    .nav-links.active {

        display: flex;

    }



    .nav-item {

        width: 100%;

    }



    .nav-item > a {

        padding: 1rem 2rem;

    }



    .dropdown {

        position: static;

        opacity: 1;

        visibility: visible;

        transform: none;

        box-shadow: none;

        margin-top: 0;

        background: #f5f5f5;

    }



    /* Hero */

    .hero h1 {

        font-size: 2.5rem;

    }



    .hero-description {

        font-size: 1.1rem;

    }



    .hero-buttons {

        flex-direction: column;

    }



    .logo-image {

        max-width: 180px;

    }



    /* Grilles */

    .stats-grid,

    .cards-grid,

    .news-grid {

        grid-template-columns: 1fr;

        gap: 2rem;

    }



    /* Newsletter */

    .newsletter-input-group {

        flex-direction: column;

    }



    /* Footer */

    .footer-links {

        flex-direction: column;

        gap: 1rem;

    }



    /* Sections */

    .section-title {

        font-size: 2rem;

    }



    .cta-section h2 {

        font-size: 2rem;

    }

}



/* ========================================

   UTILITAIRES

   ======================================== */



.text-center {

    text-align: center;

}



.mt-1 { margin-top: 1rem; }

.mt-2 { margin-top: 2rem; }

.mt-3 { margin-top: 3rem; }



.mb-1 { margin-bottom: 1rem; }

.mb-2 { margin-bottom: 2rem; }

.mb-3 { margin-bottom: 3rem; }



/* ========================================

   PAGE QUI SOMMES-NOUS

   ======================================== */



/* En-tête de page */

.page-header {

    margin-top: 80px;

    padding: 5rem 2rem 4rem;

    background: linear-gradient(135deg, #FF8C42 0%, #FFB84D 100%);

    color: white;

    text-align: center;

}



.page-header-content {

    max-width: 900px;

    margin: 0 auto;

}



.page-header h1 {

    font-size: 3rem;

    font-weight: 700;

    margin-bottom: 1rem;

}



.page-header p {

    font-size: 1.2rem;

    opacity: 0.95;

}



/* Section À propos avec logo */

.about-section {

    padding: 6rem 2rem;

    background: white;

}



.about-content-wrapper {

    max-width: 1200px;

    margin: 0 auto;

}



.about-text-logo {

    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 4rem;

    align-items: center;

}



.about-text h2 {

    font-size: 2.5rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 2rem;

}



.about-text p {

    font-size: 1.1rem;

    color: #555;

    line-height: 1.8;

    margin-bottom: 1.5rem;

}



.about-logo {

    display: flex;

    justify-content: center;

    align-items: center;

}



.about-logo img {

    max-width: 300px;

    width: 100%;

    height: auto;

    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.15));

    animation: float 6s ease-in-out infinite;

}



/* Section Valeurs */

.values-section {

    padding: 6rem 2rem;

    background: #fafafa;

}



.values-container {

    max-width: 1200px;

    margin: 0 auto;

}



.values-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 2.5rem;

    margin-top: 3rem;

}



.value-card {

    background: white;

    padding: 2.5rem 2rem;

    border-radius: 15px;

    text-align: center;

    transition: all 0.3s ease;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);

}



.value-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.2);

}



.value-icon {

    font-size: 3rem;

    margin-bottom: 1.5rem;

}



.value-card h3 {

    font-size: 1.3rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 1rem;

}



.value-card p {

    font-size: 1rem;

    color: #666;

    line-height: 1.6;

}



/* Section Mission */

.mission-section {

    padding: 6rem 2rem;

    background: white;

}



.mission-container {

    max-width: 1200px;

    margin: 0 auto;

}



.mission-content {

    margin-top: 3rem;

}



.mission-intro {

    font-size: 1.3rem;

    color: #555;

    text-align: center;

    max-width: 900px;

    margin: 0 auto 3rem;

    line-height: 1.8;

}



.mission-pillars {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 3rem;

}



.pillar {

    text-align: center;

    padding: 2rem;

}



.pillar-icon {

    font-size: 4rem;

    margin-bottom: 1.5rem;

}



.pillar h3 {

    font-size: 1.4rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 1rem;

}



.pillar p {

    font-size: 1rem;

    color: #666;

    line-height: 1.7;

}



/* Section Réalisations */

.achievements-section {

    padding: 6rem 2rem;

    background: linear-gradient(135deg, #FF8C42 0%, #FFB84D 100%);

    color: white;

}



.achievements-container {

    max-width: 1200px;

    margin: 0 auto;

}



.achievements-section .section-title {

    color: white;

}



.achievements-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 3rem;

    margin-top: 3rem;

}



.achievement-item {

    text-align: center;

}



.achievement-number {

    font-size: 3.5rem;

    font-weight: 700;

    margin-bottom: 0.5rem;

}



.achievement-label {

    font-size: 1.1rem;

    opacity: 0.95;

}



/* Section Vision */

.vision-section {

    padding: 6rem 2rem;

    background: #fafafa;

}



.vision-container {

    max-width: 900px;

    margin: 0 auto;

}



.vision-content h2 {

    font-size: 2.5rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 2rem;

    text-align: center;

}



.vision-content p {

    font-size: 1.15rem;

    color: #555;

    line-height: 1.8;

    margin-bottom: 1.5rem;

    text-align: center;

}

/* ========================================

   PAGE NOTRE ÉQUIPE

   ======================================== */



/* Introduction équipe */

.team-intro {

    padding: 4rem 2rem;

    background: white;

}



.team-intro-container {

    max-width: 900px;

    margin: 0 auto;

    text-align: center;

}



.team-intro p {

    font-size: 1.2rem;

    color: #555;

    line-height: 1.8;

}



/* Membres de l'équipe */

.team-members {

    padding: 4rem 2rem 6rem;

    background: #fafafa;

}



.team-container {

    max-width: 1200px;

    margin: 0 auto;

}



.team-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 3rem;

    margin-top: 3rem;

}



.team-card {

    background: white;

    border-radius: 15px;

    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    transition: all 0.3s ease;

}



.team-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.2);

}



.team-photo {

    width: 100%;

    height: 280px;

    overflow: hidden;

}



.photo-placeholder {

    width: 100%;

    height: 100%;

    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);

    display: flex;

    align-items: center;

    justify-content: center;

}



.photo-icon {

    font-size: 6rem;

    color: white;

    opacity: 0.8;

}



.team-info {

    padding: 2rem;

    text-align: center;

}



.member-name {

    font-size: 1.4rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 0.5rem;

}



.member-role {

    font-size: 1rem;

    color: #FF8C42;

    font-weight: 600;

    margin-bottom: 1rem;

}



.member-bio {

    font-size: 0.95rem;

    color: #666;

    line-height: 1.6;

}



/* Valeurs de l'équipe */

.team-values {

    padding: 6rem 2rem;

    background: white;

}



.team-values-container {

    max-width: 1200px;

    margin: 0 auto;

}



.values-team-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 2.5rem;

    margin-top: 3rem;

}



.value-team-item {

    text-align: center;

    padding: 2rem;

    background: #fafafa;

    border-radius: 15px;

    transition: all 0.3s ease;

}



.value-team-item:hover {

    background: white;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    transform: translateY(-5px);

}



.value-team-icon {

    font-size: 3rem;

    margin-bottom: 1rem;

}



.value-team-item h3 {

    font-size: 1.3rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 0.8rem;

}



.value-team-item p {

    font-size: 0.95rem;

    color: #666;

    line-height: 1.6;

}

/* ========================================

   SECTIONS DE CARTES

   ======================================== */



.cards-section {

    padding: 6rem 2rem;

    background: white;

}



.cards-container {

    max-width: 1200px;

    margin: 0 auto;

}



.section-title {

    font-size: 2.5rem;

    font-weight: 700;

    text-align: center;

    margin-bottom: 1rem;

    color: #2c2c2c;

}



.section-subtitle {

    text-align: center;

    font-size: 1.2rem;

    color: #666;

    margin-bottom: 4rem;

}



.cards-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 2.5rem;

}



.card {

    background: white;

    border-radius: 15px;

    overflow: hidden;

    transition: all 0.3s ease;

    cursor: pointer;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

}



.card:hover {

    transform: translateY(-10px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

}



.card-image {

    width: 100%;

    height: 250px;

    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);

    overflow: hidden;

}



.card-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.3s ease;

}



.card:hover .card-image img {

    transform: scale(1.05);

}



.card-content {

    padding: 2rem;

}



.card h3 {

    font-size: 1.4rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 1rem;

}



.card p {

    font-size: 1rem;

    color: #666;

    line-height: 1.7;

    margin-bottom: 1rem;

}



.card-link {

    color: #FF8C42;

    font-weight: 600;

    display: inline-block;

    margin-top: 0.5rem;

}



.card-link:hover {

    color: #FF6B35;

}

/* ========================================

   PAGE NOS MISSIONS - À AJOUTER

   ======================================== */



/* Page Header */

.page-header {

    margin-top: 80px;

    padding: 5rem 2rem 4rem;

    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);

    text-align: center;

}



.page-header-content h1 {

    font-size: 3rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 1rem;

}



.page-header-content p {

    font-size: 1.2rem;

    color: #666;

    max-width: 800px;

    margin: 0 auto;

}



/* Container */

.container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 2rem;

}



/* Mission Intro */

.mission-intro {

    padding: 4rem 2rem;

    background: white;

}



.intro-content h2 {

    font-size: 2.5rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 1.5rem;

    text-align: center;

}



.intro-content p {

    font-size: 1.15rem;

    line-height: 1.8;

    color: #555;

    text-align: center;

    max-width: 900px;

    margin: 0 auto;

}



/* Mission Highlight (Lac Malawi) */

.mission-highlight {

    padding: 5rem 2rem;

    background: #fafafa;

}



.mission-highlight-content {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 4rem;

    align-items: start;

}



.mission-highlight-image {

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);

}



.mission-highlight-image img {

    width: 100%;

    height: 500px;

    object-fit: cover;

}



.mission-badge {

    display: inline-block;

    background: #FF8C42;

    color: white;

    padding: 0.5rem 1.5rem;

    border-radius: 30px;

    font-size: 0.9rem;

    font-weight: 600;

    margin-bottom: 1.5rem;

}



.mission-highlight-text h2 {

    font-size: 2.5rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 1rem;

}



.mission-location {

    font-size: 1.1rem;

    color: #FF8C42;

    font-weight: 600;

    margin-bottom: 1.5rem;

}



.mission-highlight-text > p {

    font-size: 1.1rem;

    line-height: 1.8;

    color: #555;

    margin-bottom: 2rem;

}



.mission-actions h3 {

    font-size: 1.5rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 1rem;

}



.mission-list {

    list-style: none;

    padding: 0;

}



.mission-list li {

    font-size: 1.05rem;

    color: #555;

    padding: 0.75rem 0;

    line-height: 1.6;

    border-bottom: 1px solid #e0e0e0;

}



.mission-impact {

    margin-top: 2.5rem;

    padding: 2rem;

    background: white;

    border-radius: 15px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

}



.impact-stats {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 2rem;

    text-align: center;

}



.impact-number {

    font-size: 2.5rem;

    font-weight: 700;

    color: #FF8C42;

}



.impact-label {

    font-size: 0.95rem;

    color: #666;

}



/* Missions World Grid */

.missions-world {

    padding: 6rem 2rem;

    background: white;

}



.missions-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 2.5rem;

    margin-top: 3rem;

}



.mission-card {

    background: white;

    border-radius: 15px;

    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    transition: all 0.3s ease;

}



.mission-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

}



.mission-card-header {

    padding: 2rem;

    text-align: center;

}



.mission-continent {

    font-size: 1.2rem;

    font-weight: 700;

    color: white;

    letter-spacing: 1px;

}



.mission-card-body {

    padding: 2rem;

}



.mission-card h3 {

    font-size: 1.4rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 0.75rem;

}



.mission-highlights {

    list-style: none;

    padding: 0;

}



.mission-highlights li {

    font-size: 0.95rem;

    color: #555;

    padding: 0.5rem 0 0.5rem 1.5rem;

    position: relative;

}



.mission-highlights li::before {

    content: '✓';

    position: absolute;

    left: 0;

    color: #FF8C42;

    font-weight: 700;

}



/* Stats Section Large */

.mission-stats-section {

    padding: 5rem 2rem;

    background: linear-gradient(135deg, #FF8C42 0%, #FFA500 100%);

    color: white;

}



.stats-grid-large {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 3rem;

    margin-top: 3rem;

}



.stat-box-large {

    text-align: center;

    padding: 2rem;

    background: rgba(255, 255, 255, 0.15);

    border-radius: 15px;

}



.stat-icon-large {

    font-size: 3.5rem;

    margin-bottom: 1rem;

}



.stat-number-large {

    font-size: 3rem;

    font-weight: 700;

    color: white;

}



.stat-label-large {

    font-size: 1rem;

    color: rgba(255, 255, 255, 0.9);

}



/* Responsive Missions */

@media (max-width: 1024px) {

    .mission-highlight-content {

        grid-template-columns: 1fr;

    }

    .missions-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .stats-grid-large {

        grid-template-columns: repeat(2, 1fr);

    }

}



@media (max-width: 768px) {

    .missions-grid,

    .stats-grid-large {

        grid-template-columns: 1fr;

    }

    .impact-stats {

        grid-template-columns: 1fr;

    }

}

/* ========================================

   PAGE BÉNÉVOLES - À AJOUTER

   ======================================== */



/* Section Intro Bénévoles */

.benevoles-intro {

    padding: 4rem 2rem;

    background: white;

}



/* Stats Bénévoles */

.benevoles-stats {

    padding: 4rem 2rem;

    background: #fafafa;

}



.stats-grid-benevoles {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 2rem;

    max-width: 1200px;

    margin: 0 auto;

}



.stat-box-benevole {

    text-align: center;

    padding: 2rem;

    background: white;

    border-radius: 15px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    transition: all 0.3s ease;

}



.stat-box-benevole:hover {

    transform: translateY(-5px);

}



.stat-icon-benevole {

    font-size: 3rem;

    margin-bottom: 1rem;

}



.stat-number-benevole {

    font-size: 3rem;

    font-weight: 700;

    color: #FF8C42;

    margin-bottom: 0.5rem;

}



.stat-label-benevole {

    font-size: 1rem;

    color: #666;

}



/* Section Antennes */

.antennes-section {

    padding: 6rem 2rem;

    background: white;

}



.antennes-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 2.5rem;

    margin-top: 3rem;

    max-width: 1200px;

    margin-left: auto;

    margin-right: auto;

}



.antenne-card {

    background: white;

    border-radius: 15px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    overflow: hidden;

    transition: all 0.3s ease;

}



.antenne-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

}



.antenne-featured {

    grid-column: 1 / -1;

    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);

}



.antenne-future {

    opacity: 0.8;

    background: #f5f5f5;

}



.antenne-header {

    padding: 2rem;

    background: linear-gradient(135deg, #FF8C42 0%, #FFA500 100%);

    color: white;

    display: flex;

    align-items: center;

    gap: 1rem;

}



.antenne-flag {

    font-size: 3rem;

}



.antenne-header h3 {

    font-size: 1.8rem;

    font-weight: 700;

    flex: 1;

}



.antenne-status {

    padding: 0.5rem 1rem;

    border-radius: 20px;

    font-size: 0.85rem;

    font-weight: 600;

}



.antenne-status.active {

    background: rgba(255, 255, 255, 0.3);

}



.antenne-status.soon {

    background: rgba(255, 255, 255, 0.2);

}



.antenne-body {

    padding: 2rem;

}



.antenne-description {

    font-size: 1rem;

    color: #666;

    line-height: 1.8;

    margin-bottom: 1.5rem;

}



.antenne-locations {

    margin: 1.5rem 0;

}



.location-item {

    display: flex;

    gap: 1rem;

    padding: 1rem;

    background: white;

    border-radius: 10px;

    margin-bottom: 1rem;

    border-left: 3px solid #FF8C42;

}



.location-icon {

    font-size: 1.5rem;

}



.location-info strong {

    display: block;

    color: #2c2c2c;

    margin-bottom: 0.25rem;

}



.location-info p {

    font-size: 0.95rem;

    color: #666;

    margin: 0;

}



.badge-soon {

    display: inline-block;

    background: #FFD700;

    color: #2c2c2c;

    padding: 0.25rem 0.75rem;

    border-radius: 15px;

    font-size: 0.75rem;

    font-weight: 600;

    margin-top: 0.5rem;

}



.antenne-actions {

    margin: 2rem 0;

}



.antenne-actions h4 {

    font-size: 1.2rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 1rem;

}



.antenne-actions ul {

    list-style: none;

    padding: 0;

}



.antenne-actions ul li {

    padding: 0.5rem 0 0.5rem 1.5rem;

    color: #555;

    position: relative;

    font-size: 0.95rem;

}



.antenne-actions ul li::before {

    content: '✓';

    position: absolute;

    left: 0;

    color: #FF8C42;

    font-weight: 700;

}



.antenne-stats-mini {

    display: flex;

    gap: 2rem;

    margin-top: 1.5rem;

    padding-top: 1.5rem;

    border-top: 1px solid #e0e0e0;

}



.antenne-stats-mini span {

    font-size: 0.95rem;

    color: #666;

}



.antenne-stats-mini strong {

    color: #FF8C42;

    font-size: 1.2rem;

}



/* Témoignages */

.temoignages-section {

    padding: 6rem 2rem;

    background: #fafafa;

}



.temoignages-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 2.5rem;

    margin-top: 3rem;

    max-width: 1200px;

    margin-left: auto;

    margin-right: auto;

}



.temoignage-card {

    background: white;

    padding: 2rem;

    border-radius: 15px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    text-align: center;

    transition: all 0.3s ease;

}



.temoignage-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);

}



.temoignage-photo {

    margin-bottom: 1.5rem;

}



.avatar {

    font-size: 4rem;

    display: inline-block;

}



.temoignage-text {

    font-size: 1rem;

    font-style: italic;

    color: #555;

    line-height: 1.7;

    margin-bottom: 1.5rem;

}



.temoignage-author {

    font-size: 0.95rem;

    color: #2c2c2c;

}



.temoignage-author strong {

    color: #FF8C42;

}



/* Responsive Bénévoles */

@media (max-width: 1024px) {

    .stats-grid-benevoles {

        grid-template-columns: repeat(2, 1fr);

    }

    

    .antennes-grid {

        grid-template-columns: 1fr;

    }

    

    .temoignages-grid {

        grid-template-columns: 1fr;

    }

}



@media (max-width: 768px) {

    .stats-grid-benevoles {

        grid-template-columns: 1fr;

    }

}/* ========================================

   PAGE MENTIONS LÉGALES - À AJOUTER

   ======================================== */



.legal-content {

    padding: 4rem 2rem;

    background: white;

}



.legal-section {

    margin-bottom: 4rem;

}



.legal-section h2 {

    font-size: 1.8rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 1.5rem;

    padding-bottom: 0.5rem;

    border-bottom: 3px solid #FF8C42;

}



.legal-section h3 {

    font-size: 1.3rem;

    font-weight: 600;

    color: #2c2c2c;

    margin-top: 2rem;

    margin-bottom: 1rem;

}



.legal-section p {

    font-size: 1rem;

    line-height: 1.8;

    color: #555;

    margin-bottom: 1rem;

}



.legal-section ul {

    margin-left: 2rem;

    margin-bottom: 1.5rem;

}



.legal-section ul li {

    font-size: 1rem;

    line-height: 1.8;

    color: #555;

    margin-bottom: 0.5rem;

}



.legal-section a {

    color: #FF8C42;

    text-decoration: underline;

}



.legal-section a:hover {

    color: #FF6B35;

}



.legal-info-box {

    background: #fafafa;

    border-left: 4px solid #FF8C42;

    padding: 1.5rem;

    margin: 1.5rem 0;

    border-radius: 5px;

}



.legal-info-box p {

    margin-bottom: 0.75rem;

}



.legal-info-box p:last-child {

    margin-bottom: 0;

}



.legal-note {

    background: #fff9e6;

    border: 1px solid #FFD700;

    padding: 1rem;

    border-radius: 5px;

    font-size: 0.95rem;

    color: #666;

    margin-top: 1rem;

}



.legal-footer {

    margin-top: 4rem;

    padding-top: 2rem;

    border-top: 2px solid #e0e0e0;

    text-align: center;

}



.legal-footer p {

    color: #999;

    font-size: 0.9rem;

}

/* ========================================

   PAGE POLITIQUE DE CONFIDENTIALITÉ - À AJOUTER

   ======================================== */



.legal-intro {

    background: #fff9e6;

    border-left: 4px solid #FF8C42;

    padding: 2rem;

    margin-bottom: 3rem;

    border-radius: 5px;

}



.legal-intro p {

    font-size: 1.05rem;

    line-height: 1.8;

    color: #555;

    margin-bottom: 1rem;

}



.privacy-table {

    width: 100%;

    border-collapse: collapse;

    margin: 2rem 0;

    background: white;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

}



.privacy-table thead {

    background: #FF8C42;

    color: white;

}



.privacy-table th {

    padding: 1rem;

    text-align: left;

    font-weight: 600;

    font-size: 0.95rem;

}



.privacy-table td {

    padding: 1rem;

    border-bottom: 1px solid #e0e0e0;

    font-size: 0.95rem;

    color: #555;

}



.privacy-table tbody tr:hover {

    background: #fafafa;

}



.rights-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 1.5rem;

    margin: 2rem 0;

}



.right-card {

    background: #fafafa;

    padding: 1.5rem;

    border-radius: 10px;

    border-left: 3px solid #FF8C42;

    transition: all 0.3s ease;

}



.right-card:hover {

    background: white;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

    transform: translateY(-2px);

}



.right-card h4 {

    font-size: 1.1rem;

    font-weight: 600;

    color: #2c2c2c;

    margin-bottom: 0.75rem;

}



.right-card p {

    font-size: 0.95rem;

    color: #666;

    line-height: 1.6;

    margin: 0;

}



.cookie-type {

    background: #fafafa;

    padding: 1.5rem;

    margin: 1.5rem 0;

    border-radius: 10px;

    border: 1px solid #e0e0e0;

}



.cookie-type h4 {

    font-size: 1.2rem;

    font-weight: 600;

    color: #2c2c2c;

    margin-bottom: 1rem;

}



.cookie-type p,

.cookie-type ul {

    font-size: 0.95rem;

    color: #555;

}



.cookie-type ul {

    margin-left: 2rem;

    margin-top: 0.5rem;

}



.cookie-type em {

    color: #FF8C42;

    font-weight: 600;

}



/* Responsive Confidentialité */

@media (max-width: 768px) {

    .privacy-table {

        font-size: 0.85rem;

    }

    

    .privacy-table th,

    .privacy-table td {

        padding: 0.75rem 0.5rem;

    }

    

    .rights-grid {

        grid-template-columns: 1fr;

    }

}

/* ========================================

   PAGE CONTACT - À AJOUTER

   ======================================== */



.contact-section {

    padding: 4rem 2rem;

    background: white;

}



.contact-wrapper {

    display: grid;

    grid-template-columns: 1.5fr 1fr;

    gap: 4rem;

    max-width: 1200px;

    margin: 0 auto;

}



/* Formulaire de contact */

.contact-form-container h2 {

    font-size: 2rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 2rem;

}



.contact-form {

    background: #fafafa;

    padding: 2.5rem;

    border-radius: 15px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

}



.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 1.5rem;

    margin-bottom: 1.5rem;

}



.form-group {

    margin-bottom: 1.5rem;

}



.form-group label {

    display: block;

    margin-bottom: 0.5rem;

    font-weight: 600;

    color: #2c2c2c;

    font-size: 0.95rem;

}



.form-group input,

.form-group textarea,

.form-group select {

    width: 100%;

    padding: 0.9rem;

    border: 2px solid #e0e0e0;

    border-radius: 8px;

    font-size: 1rem;

    font-family: inherit;

    transition: all 0.3s ease;

    background: white;

}



.form-group input:focus,

.form-group textarea:focus,

.form-group select:focus {

    outline: none;

    border-color: #FF8C42;

    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);

}



.form-group textarea {

    resize: vertical;

    min-height: 150px;

}



.checkbox-label {

    display: flex;

    align-items: flex-start;

    gap: 0.5rem;

    font-size: 0.9rem;

    color: #666;

    cursor: pointer;

}



.checkbox-label input[type="checkbox"] {

    margin-top: 0.2rem;

    width: auto;

    cursor: pointer;

}



.checkbox-label a {

    color: #FF8C42;

    text-decoration: underline;

}



/* Alertes */

.alert {

    padding: 1rem 1.5rem;

    margin-bottom: 2rem;

    border-radius: 8px;

    font-size: 1rem;

}



.alert-success {

    background: #d4edda;

    border: 1px solid #c3e6cb;

    color: #155724;

}



.alert-error {

    background: #f8d7da;

    border: 1px solid #f5c6cb;

    color: #721c24;

}



.alert ul {

    margin: 0.5rem 0 0 1.5rem;

}



.alert ul li {

    margin: 0.25rem 0;

}



/* Informations de contact */

.contact-info-container h2 {

    font-size: 1.8rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 2rem;

}



.contact-info-box {

    background: #fafafa;

    padding: 2rem;

    border-radius: 15px;

    margin-bottom: 2rem;

}



.contact-info-item {

    display: flex;

    gap: 1.5rem;

    padding: 1.5rem 0;

    border-bottom: 1px solid #e0e0e0;

}



.contact-info-item:last-child {

    border-bottom: none;

    padding-bottom: 0;

}



.contact-icon {

    font-size: 2.5rem;

    flex-shrink: 0;

}



.contact-details h3 {

    font-size: 1.1rem;

    font-weight: 600;

    color: #2c2c2c;

    margin-bottom: 0.5rem;

}



.contact-details p {

    font-size: 1rem;

    color: #666;

    line-height: 1.6;

}



.contact-details a {

    color: #FF8C42;

    text-decoration: none;

}



.contact-details a:hover {

    text-decoration: underline;

}



/* FAQ */

.contact-faq {

    background: #fff9e6;

    padding: 2rem;

    border-radius: 15px;

    margin-bottom: 2rem;

}



.contact-faq h3 {

    font-size: 1.3rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 1.5rem;

}



.faq-item {

    margin-bottom: 1.5rem;

}



.faq-item:last-child {

    margin-bottom: 0;

}



.faq-item strong {

    display: block;

    color: #2c2c2c;

    margin-bottom: 0.5rem;

    font-size: 1rem;

}



.faq-item p {

    font-size: 0.95rem;

    color: #666;

    line-height: 1.6;

}



.faq-item a {

    color: #FF8C42;

    text-decoration: underline;

}



/* Réseaux sociaux */

.contact-social {

    text-align: center;

}



.contact-social h3 {

    font-size: 1.3rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 0.5rem;

}



.contact-social > p {

    font-size: 0.95rem;

    color: #666;

    margin-bottom: 1.5rem;

}



.social-buttons {

    display: flex;

    gap: 1rem;

    justify-content: center;

}



.social-btn {

    padding: 0.8rem 1.5rem;

    border-radius: 8px;

    color: white;

    font-weight: 600;

    font-size: 0.9rem;

    transition: all 0.3s ease;

}



.social-btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

}



.social-btn.facebook {

    background: #1877f2;

}



.social-btn.twitter {

    background: #1da1f2;

}



.social-btn.instagram {

    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);

}



/* Responsive Contact */

@media (max-width: 1024px) {

    .contact-wrapper {

        grid-template-columns: 1fr;

        gap: 3rem;

    }

    

    .form-row {

        grid-template-columns: 1fr;

    }

}



@media (max-width: 768px) {

    .social-buttons {

        flex-direction: column;

    }

}

/* ========================================

   PAGE NOUS REJOINDRE - À AJOUTER

   ======================================== */



/* Alerts */

.alert-section {

    padding: 2rem 2rem 0;

}



.alert-box {

    display: flex;

    gap: 1.5rem;

    padding: 1.5rem 2rem;

    border-radius: 10px;

    margin-bottom: 2rem;

    align-items: flex-start;

}



.alert-info {

    background: #e3f2fd;

    border-left: 4px solid #2196f3;

}



.alert-success {

    background: #e8f5e9;

    border-left: 4px solid #4caf50;

}



.alert-error {

    background: #ffebee;

    border-left: 4px solid #f44336;

}



.alert-icon {

    font-size: 2rem;

    flex-shrink: 0;

}



.alert-content h3 {

    font-size: 1.3rem;

    margin-bottom: 0.75rem;

    color: #2c2c2c;

}



.alert-content p {

    margin: 0;

    color: #555;

    line-height: 1.7;

}



/* Section Intro Rejoindre */

.rejoindre-intro {

    padding: 4rem 2rem;

    background: white;

}



.avantages-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 2rem;

    margin-top: 2rem;

}



.avantage-item {

    text-align: center;

    padding: 2rem 1rem;

}



.avantage-icon {

    font-size: 3rem;

    display: block;

    margin-bottom: 1rem;

}



.avantage-item h3 {

    font-size: 1.2rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 0.5rem;

}



.avantage-item p {

    font-size: 0.95rem;

    color: #666;

}



/* Section Charte */

.charte-section {

    padding: 3rem 2rem;

    background: #fafafa;

}



.charte-box {

    display: flex;

    gap: 2rem;

    padding: 2rem;

    background: white;

    border-radius: 15px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    align-items: center;

}



.charte-icon {

    font-size: 4rem;

    flex-shrink: 0;

}



.charte-content h3 {

    font-size: 1.5rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 1rem;

}



.charte-content p {

    color: #555;

    margin-bottom: 1.5rem;

   line-height: 1.7;

}



/* Form Section */

.form-section {

    padding: 4rem 2rem;

    background: white;

}



.form-container {

    max-width: 800px;

    margin: 2rem auto 0;

    padding: 3rem;

    background: #fafafa;

    border-radius: 15px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

}



.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 1.5rem;

}



.form-group {

    margin-bottom: 1.5rem;

}



.form-group label {

    display: block;

    font-weight: 600;

    color: #2c2c2c;

    margin-bottom: 0.5rem;

    font-size: 0.95rem;

}



.form-group input,

.form-group textarea,

.form-group select {

    width: 100%;

    padding: 0.9rem;

    border: 2px solid #ddd;

    border-radius: 8px;

    font-size: 1rem;

    font-family: inherit;

    transition: border-color 0.3s ease;

}



.form-group input:focus,

.form-group textarea:focus,

.form-group select:focus {

    outline: none;

    border-color: #FF8C42;

}



.form-group textarea {

    resize: vertical;

}



.checkbox-label {

    display: flex;

    align-items: flex-start;

    gap: 0.75rem;

    font-weight: normal !important;

    cursor: pointer;

}



.checkbox-label input[type="checkbox"] {

    width: auto;

    margin-top: 0.25rem;

    cursor: pointer;

}



.checkbox-label a {

    color: #FF8C42;

    text-decoration: underline;

}



.form-actions {

    text-align: center;

    margin-top: 2rem;

}



.form-note {

    text-align: center;

    font-size: 0.9rem;

    color: #999;

    margin-top: 1rem;

}



/* ========================================

   PAGE CHARTE DES BÉNÉVOLES - À AJOUTER

   ======================================== */



.charte-intro {

    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);

    padding: 2rem;

    border-radius: 15px;

    border-left: 4px solid #FF8C42;

    margin-bottom: 3rem;

}



.intro-text {

    font-size: 1.15rem;

    line-height: 1.8;

    color: #555;

    margin: 0;

}



.charte-signature {

    background: #fafafa;

    padding: 2rem;

    border-radius: 10px;

    text-align: center;

    margin-top: 3rem;

    border: 2px solid #FF8C42;

}



.charte-signature p {

    margin: 0.5rem 0;

    color: #555;

}



.charte-signature p:first-child {

    font-size: 1.2rem;

    color: #2c2c2c;

    margin-bottom: 1rem;

}



.charte-actions {

    display: flex;

    justify-content: center;

    gap: 1.5rem;

    margin-top: 3rem;

    padding-top: 2rem;

    border-top: 2px solid #e0e0e0;

}



/* Responsive Forms */

@media (max-width: 768px) {

    .form-row {

        grid-template-columns: 1fr;

    }

    

    .avantages-grid {

        grid-template-columns: 1fr;

    }

    

    .charte-box {

        flex-direction: column;

        text-align: center;

    }

    

    .charte-actions {

        flex-direction: column;

    }

    

    .form-container {

        padding: 2rem 1.5rem;

    }

}



/* Print styles pour la charte */

@media print {

    nav, footer, .charte-actions, .page-header {

        display: none;

    }

    

    .legal-content {

        padding: 1rem;

    }

    

    .legal-section {

        page-break-inside: avoid;

    }

}

/* ========================================

   AMÉLIORATIONS PAGE MISSIONS

   ======================================== */



/* Intro avec icône */

.intro-icon {

    font-size: 4rem;

    text-align: center;

    margin-bottom: 1rem;

    animation: bounce 2s ease-in-out infinite;

}



/* Image overlay pour mission phare */

.mission-highlight-image {

    position: relative;

}



.image-overlay {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);

    display: flex;

    align-items: flex-start;

    justify-content: center;

    padding: 2rem;

    opacity: 0;

    transition: opacity 0.3s ease;

}



.mission-highlight-image:hover .image-overlay {

    opacity: 1;

}



.overlay-badge {

    background: rgba(255, 140, 66, 0.9);

    color: white;

    padding: 0.75rem 1.5rem;

    border-radius: 30px;

    font-weight: 600;

    font-size: 1rem;

}



/* En-tête missions world */

.missions-world-header {

    text-align: center;

    margin-bottom: 3rem;

    position: relative;

}



.missions-world-header::after {

    content: '';

    display: block;

    width: 100px;

    height: 4px;

    background: linear-gradient(90deg, #FF8C42, #FFD700);

    margin: 2rem auto 0;

    border-radius: 2px;

}



/* Cartes missions avec effets */

.mission-card {

    position: relative;

    overflow: visible;

}



.mission-card::before {

    content: '';

    position: absolute;

    top: -5px;

    left: -5px;

    right: -5px;

    bottom: -5px;

    background: linear-gradient(45deg, #FF8C42, #FFD700, #4A90E2, #9B59B6);

    border-radius: 16px;

    opacity: 0;

    transition: opacity 0.3s ease;

    z-index: -1;

}



.mission-card:hover::before {

    opacity: 0.3;

    animation: rotate-gradient 3s linear infinite;

}



@keyframes rotate-gradient {

    0% { filter: hue-rotate(0deg); }

    100% { filter: hue-rotate(360deg); }

}



/* Amélioration des titres */

.mission-actions h3,

.mission-impact h3 {

    display: flex;

    align-items: center;

    gap: 0.5rem;

}



/* Stats plus attractives */

.stat-box-large {

    position: relative;

    overflow: hidden;

}



.stat-box-large::before {

    content: '';

    position: absolute;

    top: -50%;

    left: -50%;

    width: 200%;

    height: 200%;

    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);

    animation: pulse-light 3s ease-in-out infinite;

}



@keyframes pulse-light {

    0%, 100% { transform: scale(1); opacity: 0.3; }

    50% { transform: scale(1.1); opacity: 0.6; }

}



/* Ajout d'icônes aux localisations */

.mission-location::before {

    content: attr(data-icon);

    margin-right: 0.5rem;

}



/* Responsive amélioré */

@media (max-width: 768px) {

    .intro-icon {

        font-size: 3rem;

    }

    

    .missions-grid {

        grid-template-columns: 1fr;

        gap: 2rem;

    }

}

/* ========================================

   PAGE ACTUALITÉS - À AJOUTER

   ======================================== */



/* Article à la une */

.article-featured {

    padding: 3rem 2rem;

    background: white;

}



.featured-content {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 3rem;

    align-items: start;

}



.featured-image {

    position: relative;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);

    height: 500px;

}



.featured-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.featured-badge {

    position: absolute;

    top: 20px;

    left: 20px;

    background: #FF6B35;

    color: white;

    padding: 0.5rem 1.5rem;

    border-radius: 30px;

    font-weight: 700;

    font-size: 0.85rem;

    letter-spacing: 1px;

    z-index: 2;

}



.featured-text {

    padding: 1rem 0;

}



.article-date {

    display: inline-block;

    font-size: 0.9rem;

    color: #999;

    margin-bottom: 0.5rem;

}



.article-category {

    display: inline-block;

    padding: 0.4rem 1rem;

    border-radius: 20px;

    font-size: 0.8rem;

    font-weight: 600;

    margin-left: 1rem;

    color: white;

}



.cat-action {

    background: #4caf50;

}



.cat-biodiversite {

    background: #2196f3;

}



.cat-alerte {

    background: #f44336;

}



.cat-vie {

    background: #ff9800;

}



.cat-international {

    background: #9c27b0;

}



.cat-evenement {

    background: #e91e63;

}



.cat-innovation {

    background: #00bcd4;

}



.featured-text h2 {

    font-size: 2.2rem;

    font-weight: 700;

    color: #2c2c2c;

    margin: 1rem 0;

    line-height: 1.3;

}



.article-excerpt {

    font-size: 1.15rem;

    line-height: 1.8;

    color: #555;

    margin-bottom: 1rem;

    font-weight: 500;

}



.featured-text > p {

    font-size: 1rem;

    line-height: 1.8;

    color: #666;

    margin-bottom: 1.5rem;

}



.article-stats {

    display: flex;

    gap: 2rem;

    flex-wrap: wrap;

    margin: 1.5rem 0;

    padding: 1.5rem;

    background: #fafafa;

    border-radius: 10px;

}



.article-stats span {

    font-size: 0.95rem;

    color: #555;

    font-weight: 600;

}



/* Grille d'articles */

.articles-grid-section {

    padding: 5rem 2rem;

    background: #fafafa;

}



.articles-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 3rem;

    margin-top: 3rem;

}



.article-card {

    background: white;

    border-radius: 15px;

    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    transition: all 0.3s ease;

}



.article-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

}



.article-image {

    position: relative;

    height: 250px;

    overflow: hidden;

}



.article-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.3s ease;

}



.article-card:hover .article-image img {

    transform: scale(1.05);

}



.article-image .article-category {

    position: absolute;

    top: 15px;

    right: 15px;

    z-index: 2;

}



.article-content {

    padding: 2rem;

}



.article-content h3 {

    font-size: 1.4rem;

    font-weight: 700;

    color: #2c2c2c;

    margin: 0.5rem 0 1rem;

    line-height: 1.4;

}



.article-content > p {

    font-size: 1rem;

    line-height: 1.7;

    color: #666;

    margin-bottom: 1rem;

}



.article-highlights {

    display: flex;

    flex-wrap: wrap;

    gap: 1rem;

    margin: 1.5rem 0;

    padding: 1rem;

    background: #fafafa;

    border-radius: 8px;

}



.article-highlights span {

    font-size: 0.9rem;

    color: #555;

    font-weight: 600;

}



.article-detail {

    font-size: 0.95rem;

    line-height: 1.7;

    color: #777;

    font-style: italic;

    margin-top: 1rem;

    padding-top: 1rem;

    border-top: 1px solid #e0e0e0;

}



/* Newsletter CTA */

.newsletter-cta {

    padding: 5rem 2rem;

    background: linear-gradient(135deg, #FF8C42 0%, #FFA500 100%);

}



.newsletter-box {

    display: flex;

    gap: 2rem;

    align-items: center;

    max-width: 900px;

    margin: 0 auto;

    padding: 3rem;

    background: rgba(255, 255, 255, 0.15);

    border-radius: 20px;

    backdrop-filter: blur(10px);

}



.newsletter-icon {

    font-size: 5rem;

    flex-shrink: 0;

}



.newsletter-content {

    flex: 1;

}



.newsletter-content h2 {

    font-size: 2rem;

    font-weight: 700;

    color: white;

    margin-bottom: 1rem;

}



.newsletter-content p {

    font-size: 1.05rem;

    color: rgba(255, 255, 255, 0.95);

    margin-bottom: 1.5rem;

    line-height: 1.6;

}



.newsletter-form-inline {

    display: flex;

    gap: 1rem;

}



.newsletter-form-inline input {

    flex: 1;

    padding: 1rem 1.5rem;

    border: none;

    border-radius: 30px;

    font-size: 1rem;

}



.newsletter-form-inline button {

    background: white;

    color: #FF8C42;

    border: none;

    white-space: nowrap;

}



.newsletter-form-inline button:hover {

    background: #f5f5f5;

}



/* Responsive Actualités */

@media (max-width: 1024px) {

    .featured-content {

        grid-template-columns: 1fr;

    }

    

    .articles-grid {

        grid-template-columns: 1fr;

    }

}



@media (max-width: 768px) {

    .featured-text h2 {

        font-size: 1.8rem;

    }

    

    .article-stats {

        flex-direction: column;

        gap: 1rem;

    }

    

    .newsletter-box {

        flex-direction: column;

        text-align: center;

        padding: 2rem;

    }

    

    .newsletter-form-inline {

        flex-direction: column;

    }

}

/* ========================================

   PAGE COMMUNIQUÉS DE PRESSE - À AJOUTER

   ======================================== */



/* Header Communiqué avec logo */

.communique-header {

    margin-top: 80px;

    padding: 5rem 2rem 4rem;

    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);

    text-align: center;

    position: relative;

}



.communique-header::before {

    content: '';

    position: absolute;

    width: 400px;

    height: 400px;

    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);

    border-radius: 50%;

    top: -100px;

    right: -100px;

    animation: float 8s ease-in-out infinite;

}



.communique-header-content {

    max-width: 900px;

    margin: 0 auto;

    position: relative;

    z-index: 2;

}



.communique-logo {

    margin-bottom: 2rem;

}



.communique-logo img {

    max-width: 200px;

    height: auto;

    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));

    animation: fadeInScale 1.2s ease;

}



.communique-header h1 {

    font-size: 3rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 1rem;

}



.communique-header p {

    font-size: 1.2rem;

    color: #666;

}



/* Section Intro */

.communique-intro {

    padding: 4rem 2rem;

    background: white;

}



.communique-intro h2 {

    text-align: center;

    font-size: 2.5rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 1.5rem;

}



.communique-intro p {

    text-align: center;

    font-size: 1.1rem;

    color: #555;

    line-height: 1.8;

    max-width: 900px;

    margin: 0 auto;

}



.communique-intro a {

    color: #FF8C42;

    text-decoration: underline;

}



/* Liste des communiqués */

.communiques-list {

    padding: 5rem 2rem;

    background: #fafafa;

}



.communiques-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 2.5rem;

    margin-top: 3rem;

    max-width: 1200px;

    margin-left: auto;

    margin-right: auto;

}



.communique-card {

    background: white;

    border-radius: 15px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    overflow: hidden;

    transition: all 0.3s ease;

}



.communique-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

}



.communique-card-header {

    padding: 1.5rem 2rem;

    background: linear-gradient(135deg, #FF8C42 0%, #FFA500 100%);

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.communique-date {

    color: white;

    font-weight: 600;

    font-size: 0.95rem;

}



.communique-badge {

    padding: 0.4rem 1rem;

    border-radius: 20px;

    font-size: 0.8rem;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.5px;

}



.communique-badge.urgent {

    background: #ff4444;

    color: white;

}



.communique-badge.success {

    background: #4caf50;

    color: white;

}



.communique-badge.info {

    background: rgba(255, 255, 255, 0.3);

    color: white;

}



.communique-card-body {

    padding: 2rem;

}



.communique-card-body h3 {

    font-size: 1.4rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 1rem;

    line-height: 1.4;

}



.communique-excerpt {

    font-size: 1rem;

    color: #666;

    line-height: 1.7;

    margin-bottom: 1.5rem;

}



.communique-footer {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-top: 1.5rem;

    border-top: 2px solid #f0f0f0;

}



.btn-download {

    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

    padding: 0.75rem 1.5rem;

    background: #FF8C42;

    color: white;

    text-decoration: none;

    border-radius: 8px;

    font-weight: 600;

    font-size: 0.95rem;

    transition: all 0.3s ease;

}



.btn-download:hover {

    background: #FF6B35;

    transform: translateY(-2px);

}



.communique-size {

    font-size: 0.85rem;

    color: #999;

}



/* Contact Presse */

.contact-presse-section {

    padding: 5rem 2rem;

    background: white;

}



.contact-presse-box {

    max-width: 900px;

    margin: 0 auto;

    display: flex;

    gap: 2.5rem;

    padding: 3rem;

    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);

    border-radius: 20px;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);

    align-items: center;

}



.contact-presse-icon {

    font-size: 5rem;

    flex-shrink: 0;

}



.contact-presse-content h2 {

    font-size: 2rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 1rem;

}



.contact-presse-content p {

    font-size: 1.05rem;

    color: #555;

    line-height: 1.7;

    margin-bottom: 1.5rem;

}



.contact-info {

    background: white;

    padding: 1.5rem;

    border-radius: 10px;

    margin-bottom: 1.5rem;

    border-left: 4px solid #FF8C42;

}



.contact-info p {

    margin: 0.5rem 0;

    font-size: 1rem;

}



.contact-info a {

    color: #FF8C42;

    text-decoration: underline;

}



/* Kit Presse */

.kit-presse-section {

    padding: 5rem 2rem;

    background: #fafafa;

}



.kit-presse-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 2rem;

    margin-top: 3rem;

    max-width: 1200px;

    margin-left: auto;

    margin-right: auto;

}



.kit-item {

    background: white;

    padding: 2rem;

    border-radius: 15px;

    text-align: center;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    transition: all 0.3s ease;

}



.kit-item:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);

}



.kit-icon {

    font-size: 3.5rem;

    margin-bottom: 1.5rem;

}



.kit-item h3 {

    font-size: 1.2rem;

    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 0.75rem;

}



.kit-item p {

    font-size: 0.95rem;

    color: #666;

    line-height: 1.6;

    margin-bottom: 1.5rem;

}



.btn-download-secondary {

    display: inline-block;

    padding: 0.6rem 1.5rem;

    background: transparent;

    color: #FF8C42;

    border: 2px solid #FF8C42;

    text-decoration: none;

    border-radius: 8px;

    font-weight: 600;

    font-size: 0.9rem;

    transition: all 0.3s ease;

}



.btn-download-secondary:hover {

    background: #FF8C42;

    color: white;

}



/* Responsive Communiqués */

@media (max-width: 1024px) {

    .communiques-grid {

        grid-template-columns: 1fr;

    }

    

    .kit-presse-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}



@media (max-width: 768px) {

    .communique-logo img {

        max-width: 150px;

    }

    

    .communique-header h1 {

        font-size: 2rem;

    }

    

    .contact-presse-box {

        flex-direction: column;

        text-align: center;

        padding: 2rem;

    }

    

    .kit-presse-grid {

        grid-template-columns: 1fr;

    }

}

/**

 * FEUILLE DE STYLE PRINCIPALE - VERSION CORRIGÉE

 * Site Oxygène Terre

 * Couleurs : Blanc, Jaune/Orange, Bleu (touches)

 */



/* ========================================

   RESET ET BASE

   ======================================== */



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



html {

    scroll-behavior: smooth;

}



body {

    font-family: 'Avenir', 'Helvetica Neue', Arial, sans-serif;

    background: #ffffff;

    color: #2c2c2c;

    line-height: 1.6;

    overflow-x: hidden;

}



img {

    max-width: 100%;

    height: auto;

    display: block;

}



a {

    text-decoration: none;

    color: inherit;

    transition: all 0.3s ease;

}



/* Skip to main content (accessibilité) */

.skip-to-main {

    position: absolute;

    left: -9999px;

    z-index: 999;

    padding: 1rem 2rem;

    background: #FF8C42;

    color: white;

    text-decoration: none;

    font-weight: 600;

}



.skip-to-main:focus {

    left: 50%;

    transform: translateX(-50%);

    top: 1rem;

}



/* ========================================

   NAVIGATION - VERSION CORRIGÉE

   ======================================== */



nav {

    position: fixed;

    top: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.98);

    backdrop-filter: blur(10px);

    box-shadow: none;

    border: none;

    transition: all 0.3s ease;

}



.nav-container {

    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 1rem 2rem;

    position: relative;

}



.logo-text {

    font-size: 1.3rem;

    font-weight: 700;

    color: #2c2c2c;

    letter-spacing: 0.5px;

    z-index: 1002;

}



.logo-text a:hover {

    color: #FF8C42;

}



/* Menu mobile toggle - VERSION UNIQUE */

.mobile-menu-toggle {

    display: none;

    flex-direction: column;

    gap: 5px;

    background: none;

    border: none;

    cursor: pointer;

    padding: 0.5rem;

    z-index: 1002;

    position: relative;

}



.mobile-menu-toggle span {

    width: 25px;

    height: 3px;

    background: #2c2c2c;

    transition: all 0.3s ease;

    display: block;

    border-radius: 2px;

}



/* Animation du bouton hamburger */

.mobile-menu-toggle.active span:nth-child(1) {

    transform: rotate(45deg) translate(5px, 5px);

}



.mobile-menu-toggle.active span:nth-child(2) {

    opacity: 0;

}



.mobile-menu-toggle.active span:nth-child(3) {

    transform: rotate(-45deg) translate(7px, -6px);

}



/* Navigation links - Desktop */

.nav-links {

    display: flex;

    gap: 2rem;

    list-style: none;

    transition: all 0.3s ease;

}



.nav-item {

    position: relative;

}



.nav-item > a {

    color: #2c2c2c;

    font-size: 0.95rem;

    font-weight: 500;

    padding: 0.5rem 0;

    display: block;

    transition: color 0.3s ease;

}



.nav-item > a:hover,

.nav-item > a.active {

    color: #FF8C42;

}



/* Dropdown menus - Desktop */

.dropdown {

    position: absolute;

    top: 100%;

    left: 0;

    background: white;

    min-width: 200px;

    border-radius: 8px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);

    opacity: 0;

    visibility: hidden;

    transform: translateY(-10px);

    transition: all 0.3s ease;

    margin-top: 0.5rem;

}



.nav-item:hover .dropdown {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}



.dropdown a {

    display: block;

    padding: 1rem 1.5rem;

    color: #2c2c2c;

    font-size: 0.9rem;

    transition: all 0.3s ease;

    border-bottom: 1px solid #f0f0f0;

}



.dropdown a:last-child {

    border-bottom: none;

}



.dropdown a:hover {

    background: rgba(255, 140, 66, 0.1);

    color: #FF8C42;

}



/* ========================================

   RESPONSIVE - MOBILE NAVIGATION

   ======================================== */



@media (max-width: 768px) {

    .mobile-menu-toggle {

        display: flex;

    }



    .nav-links {

        position: absolute;

        top: 100%;

        left: 0;

        right: 0;

        background: white;

        flex-direction: column;

        padding: 0;

        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);

        border-top: 1px solid #f0f0f0;

        

        /* Animation d'ouverture/fermeture */

        max-height: 0;

        overflow: hidden;

        opacity: 0;

        transform: translateY(-10px);

        transition: all 0.3s ease;

    }



    .nav-links.active {

        max-height: 80vh;

        opacity: 1;

        transform: translateY(0);

        overflow-y: auto;

    }



    .nav-item {

        width: 100%;

        border-bottom: 1px solid #f0f0f0;

    }



    .nav-item:last-child {

        border-bottom: none;

    }



    .nav-item > a {

        padding: 1.2rem 2rem;

        display: block;

        font-size: 1rem;

        border: none;

    }



    .nav-item > a:hover {

        background: rgba(255, 140, 66, 0.1);

    }



    /* Dropdown mobile */

    .dropdown {

        position: static;

        opacity: 1;

        visibility: visible;

        transform: none;

        box-shadow: none;

        margin-top: 0;

        background: #f8f8f8;

        border-radius: 0;

    }

    

    .dropdown a {

        padding: 1rem 3rem;

        font-size: 0.9rem;

        border-bottom: 1px solid #e0e0e0;

    }



    .dropdown a:hover {

        background: rgba(255, 140, 66, 0.15);

    }



    /* Empêcher le scroll du body quand le menu est ouvert */

    body.menu-open {

        overflow: hidden;

    }



    /* Ajustements pour les petits écrans */

    .nav-container {

        padding: 1rem 1.5rem;

    }

}



/* Tablette */

@media (max-width: 1024px) and (min-width: 769px) {

    .nav-container {

        padding: 1rem 1.5rem;

    }

    

    .nav-links {

        gap: 1.5rem;

    }

}



/* ========================================

   RESTE DU CSS (sections suivantes)

   ======================================== */



/* HERO SECTION */

.hero {

    margin-top: 0;

    padding-top: 80px;

    min-height: 85vh;

    display: flex;

    align-items: center;

    justify-content: center;

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    position: relative;

    padding-bottom: 4rem;

    padding-left: 2rem;

    padding-right: 2rem;

    text-align: center;

}



.hero-content {

    max-width: 900px;

    position: relative;

    z-index: 2;

}



.hero h1 {

    font-size: 3.5rem;

    font-weight: 700;

    color: #ffffff;

    margin-bottom: 1.5rem;

    line-height: 1.2;

    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);

}



.hero-description {

    font-size: 1.3rem;

    color: #ffffff;

    margin-bottom: 2.5rem;

    line-height: 1.8;

    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);

}



.hero-buttons {

    display: flex;

    gap: 1.5rem;

    justify-content: center;

    flex-wrap: wrap;

}



/* BOUTONS */

.btn {

    display: inline-block;

    padding: 1rem 2.5rem;

    border-radius: 30px;

    font-weight: 600;

    font-size: 1rem;

    transition: all 0.3s ease;

    cursor: pointer;

    border: 2px solid transparent;

}



.btn-primary {

    background: #FF8C42;

    color: white;

    box-shadow: 0 5px 20px rgba(255, 140, 66, 0.3);

}



.btn-primary:hover {

    background: #FF6B35;

    transform: translateY(-3px);

    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.5);

}



.btn-secondary {

    background: transparent;

    color: #2c2c2c;

    border: 2px solid #2c2c2c;

}



.btn-secondary:hover {

    background: #2c2c2c;

    color: white;

}



.btn-large {

    padding: 1.2rem 3rem;

    font-size: 1.1rem;

}



/* Responsive pour le hero */

@media (max-width: 768px) {

    .hero {

        padding-top: 100px;

        min-height: 70vh;

        padding-left: 1rem;
		
		/* Style de la bannière Charente */
.news-alert {
    background-color: #2c7a3f; /* Un vert forêt profond */
    color: white;
    padding: 30px 20px;
    margin: 20px 0;
    border-radius: 8px; /* Bords légèrement arrondis */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.news-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* Pour que ça s'adapte aux mobiles */
    gap: 20px;
}

.news-tag {
    background-color: #e8f5e9;
    color: #2c7a3f;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.news-text h3 {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
}

.news-text p {
    margin: 0;
    opacity: 0.9;
}

.btn-white {
    background-color: white;
    color: #2c7a3f;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-white:hover {
    background-color: #f1f1f1;
}

/* Version mobile */
@media (max-width: 768px) {
    .news-content {
        flex-direction: column;
        text-align: center;
    }
}