/* Import des polices et variables */
@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Montserrat:wght@300;400;600&family=Playfair+Display:ital@0;1&display=swap');

:root {
    --primary-color: #1a1a1a;
    --accent-color: #4CAF50; /* Vert pour la nature */
    --secondary-color: #3e82b9; /* Rouge pour l'énergie */
    --text-color: #ffffff;
    --gradient-start: rgba(76, 175, 80, 0.2); /* Vert transparent */
    --gradient-end: rgba(20, 2, 179, 0.2); /* Rouge transparent */
    --glassmorphism-bg: rgba(255, 255, 255, 0.1);
    --glassmorphism-border: rgba(255, 255, 255, 0.2);
    --shadow-color: rgba(0, 0, 0, 0.2);
    --transition-speed: 0.3s;
    --heading-font: 'Dela Gothic One', cursive;
    --body-font: 'Montserrat', sans-serif;
    --serif-font: 'Playfair Display', serif;
}

/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    overflow-x: hidden;
    background-color: var(--primary-color);
    line-height: 1.6;
}

/* Barre de progression de défilement */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 1100;
}

.scroll-progress-bar {
    width: 0;
    height: 100%;
    background: var(--accent-color);
    transition: width 0.2s ease;
}

/* Loader */
#loader {
    position: fixed;
    inset: 0;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-logo {
    width: 150px;
    height: 150px;
    animation: spin 2s linear infinite reverse;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Header de navigation */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
}

/* Menu Burger */
.menu-toggle {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-toggle i {
    color: var(--text-color);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}

/* Navigation principale */
.main-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav.active {
    transform: translateX(300px);
}

.main-nav ul {
    list-style: none;
    padding-top: 100px;
}

.main-nav li a {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.main-nav li a i {
    width: 30px;
    margin-right: 15px;
    font-size: 1.2em;
}

.main-nav li a:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 40px;
    color: white;
}

/* Bouton Adhérer */
.adhesion-button {
    background: rgba(230, 54, 54, 0.9);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 0 25px;
    height: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.adhesion-button i {
    font-size: 18px;
}

.adhesion-button:hover {
    transform: translateY(-2px);
    background: rgba(230, 54, 54, 1);
    box-shadow: 0 5px 15px rgba(230, 54, 54, 0.3);
}

/* Background */
.video-background {
    position: fixed;
    inset: 0;
    z-index: -1;
}

.background-gif {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

/* Contenu principal */
.first-section {
    height: 100vh;
    overflow: hidden;
}

.home-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: var(--text-color);
    position: relative;
}

/* Titre principal */
.title {
    font-family: var(--heading-font);
    font-size: 7rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

/* Style amélioré pour le sous-titre */
.title-full {
    font-family: var(--serif-font);
    color: var(--text-color);
    font-size: 1.8rem;
    text-align: center;
    margin: 30px auto;
    max-width: 900px;
    line-height: 2;
    opacity: 0;
    transform: translateY(30px);
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    letter-spacing: 1.2px;
    border: 1px solid rgba(240, 230, 140, 0.2);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.title-full .color-accent {
    color: var(--accent-color);
    font-size: 2.2rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    font-weight: 300;
}

/* Animations */
.animate-write {
    animation: writeIn 2s ease forwards;
}

.animate-fade {
    animation: fadeIn 1s ease forwards;
    animation-delay: 1s;
}

@keyframes writeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bouton CTA */
.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: transparent;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--text-color);
}

.cta-button span {
    margin-right: 10px;
}

.cta-button:hover {
    background: var(--text-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.cta-button i {
    transition: transform var(--transition-speed);
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Indicateur de défilement */
.scroll-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    color: var(--text-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Section suivante */
.following-content {
    position: relative;
    z-index: 1;
    background: var(--primary-color);
    min-height: 100vh;
}

/* Section partenaires */
.partners {
    background-color: var(--primary-color);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s, transform 1s;
}

.partners.visible {
    opacity: 1;
    transform: translateY(0);
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
}

.partners h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s, transform 1s;
}

.partners h2.animate-fade {
    opacity: 1;
    transform: translateY(0);
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s, transform 1s;
}

.cards-container.animate-fade {
    opacity: 1;
    transform: translateY(0);
}

.card:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.card:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.card:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
}

.card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 0;
    height: 80px;
    border-left: 3px solid var(--accent-color);
    opacity: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
}

.card:hover::after {
    width: 20px;
    opacity: 1;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-image {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.card p {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.card-details {
    position: absolute;
    top: 50%;
    left: calc(100% + 30px);
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    width: 300px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card:hover .card-details {
    opacity: 1;
    visibility: visible;
}

.card-details h4 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.card-details p {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.contact-button .button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-button .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(20, 16, 250, 0.3);
}

a{
    text-decoration: none;
    color: white;
}

.svgIcon {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

/* Responsive */
@media (max-width: 1200px) {
    .title-full {
        font-size: 1.5rem;
        padding: 15px;
        margin: 20px auto;
    }
    
    .title-full .color-accent {
        font-size: 1.8rem;
    }

    .partners h2 {
        font-size: 2rem;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }

    .card:nth-child(2) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .card:nth-child(3) {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .card:nth-child(4) {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }

    .card {
        padding: 20px;
    }

    .card-image {
        width: 80px;
    }

    .card h3 {
        font-size: 1.2rem;
    }

    .card p {
        font-size: 0.9rem;
    }

    .card-details {
        width: 90%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 3.5rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }

    .title-full {
        display: none;
    }
    
    .adhesion-button {
        padding: 0;
        width: 50px;
        justify-content: center;
    }
    
    .adhesion-button span {
        display: none;
    }

    .nav-header {
        padding: 15px;
    }
    
    .menu-toggle,
    .adhesion-button {
        width: 45px;
        height: 45px;
    }

    .partners h2 {
        font-size: 1.8rem;
    }
}


@media (max-width: 600px) {
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 0.5rem;
    }

    .title-full {
        display: none;
    }
    
    .adhesion-button {
        padding: 0;
        width: 40px;
        justify-content: center;
    }
    
    .adhesion-button span {
        display: none;
    }

    .nav-header {
        padding: 5px;
    }
    
    .menu-toggle,
    .adhesion-button {
        width: 35px;
        height: 35px;
    }

    .partners h2 {
        font-size: 1.8rem;
    }
}






















/* -------------------------------------------------------------------------------- */

.renard-protection {
    background-color: var(--primary-color);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s, transform 1s;
}

.renard-protection.visible {
    opacity: 1;
    transform: translateY(0);
}

.renard-protection-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.renard-protection h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s, transform 1s;
}

.renard-protection h2.animate-fade {
    opacity: 1;
    transform: translateY(0);
}

.intro-text {
    font-family: var(--serif-font);
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s, transform 1s;
}

.intro-text.animate-fade {
    opacity: 1;
    transform: translateY(0);
}

.protection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-flow: dense;
    gap: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s, transform 1s;
}

.protection-grid.animate-fade {
    opacity: 1;
    transform: translateY(0);
}

.grid-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
}

.grid-item .hover-effect {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.grid-item:hover .hover-effect {
    transform: scale(1.1);
}

.text-content {
    padding: 20px;
}

.text-content h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.text-content p {
    font-size: 1rem;
    color: var(--text-color);
}

.results-section {
    margin-top: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s, transform 1s;
}

.results-section.animate-fade {
    opacity: 1;
    transform: translateY(0);
}

.results-section h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.results-section ul {
    list-style-type: none;
    padding: 0;
    font-size: 1.1rem;
    color: var(--text-color);
}

.results-section li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .renard-protection h2 {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .text-content h3 {
        font-size: 1.2rem;
    }

    .text-content p {
        font-size: 0.9rem;
    }

    .results-section h3 {
        font-size: 1.8rem;
    }

    .results-section ul {
        font-size: 1rem;
    }
}






/* Section Récompenses et distinctions */
.awards-section {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    opacity: 1; /* Au lieu de 0 */
    transform: translateY(50px);
    visibility: hidden; /* Ajoutons ceci à la place */
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.awards-section.visible {
    visibility: visible;
    transform: translateY(0);
}

.awards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.awards-section h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.awards-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.awards-section:hover h2::after {
    width: 150px;
}

.awards-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.awards-content img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    transform: rotate(-3deg);
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.awards-content img:hover {
    transform: rotate(0) scale(1.05);
}

.awards-text {
    flex: 1;
    color: var(--text-color);
}

.awards-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.awards-text p strong {
    color: var(--accent-color);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

.awards-text p:nth-child(2n) {
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation à l'apparition */
.awards-text p {
    animation-delay: calc(var(--i) * 0.1s);
}

/* Responsive design */
@media (max-width: 992px) {
    .awards-content {
        flex-direction: column;
        text-align: center;
    }

    .awards-content img {
        width: 250px;
        margin-bottom: 30px;
    }

    .awards-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .awards-section {
        padding: 50px 15px;
    }

    .awards-content img {
        width: 200px;
    }

    .awards-text p {
        font-size: 1rem;
    }

    .awards-text p strong {
        font-size: 1.1rem;
    }
}



.expertise-carousel {
    position: relative;
    padding: 60px 20px;
    background-color: var(--primary-color);
    text-align: center;
}

.expertise-carousel h2 {
    color: white
}


.expertise-carousel .swiper-container {
    position: relative;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 60px;
}

.expertise-carousel .swiper-button-next,
.expertise-carousel .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--accent-color);
    transition: all 0.3s ease;
    z-index: 10;
}

.expertise-carousel .swiper-button-next {
    right: 10px;
}

.expertise-carousel .swiper-button-prev {
    left: 10px;
}

.expertise-carousel .swiper-button-next:after,
.expertise-carousel .swiper-button-prev:after {
    font-size: 20px;
}

.expertise-carousel .swiper-pagination {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.expertise-carousel .swiper-pagination-bullet {
    margin: 5px 0;
}

.expertise-carousel .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    opacity: 0.5;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.expertise-carousel .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .expertise-carousel .swiper-button-next,
    .expertise-carousel .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .expertise-carousel .swiper-button-next:after,
    .expertise-carousel .swiper-button-prev:after {
        font-size: 16px;
    }
}

.swiper-button-next {
    right: 15px; /* Ajustez la distance à droite */
}

.swiper-button-prev {
    left: 15px; /* Ajustez la distance à gauche */
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.4);
    color: var(--accent-color);
}

/* Ajustement des boutons de pagination */
.swiper-pagination-bullet {
    width: 15px; /* Plus grand que l'original */
    height: 15px;
    background: var(--accent-color);
    opacity: 0.8;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.swiper-pagination-bullet-active {
    transform: scale(1.2); /* Met en avant le bouton actif */
    opacity: 1;
}

/* Empêcher le débordement du texte */
.swiper-slide {
    text-align: center; /* Centrer le contenu dans les slides */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px; /* Ajouter de l'espace autour du texte */
    box-sizing: border-box;
}


.swiper-slide h3{
    color: white;
}

.swiper-slide p{
    color: white;
}

@media (max-width: 768px) {
    .expertise-carousel h2 {
        font-size: 2rem;
    }

    .expertise-block {
        flex-direction: column;
        gap: 20px;
    }

    .expertise-image {
        max-width: 100%;
        height: 200px;
    }

    .expertise-content h3 {
        font-size: 1.5rem;
    }

    .expertise-content p {
        font-size: 1rem;
    }
}

.carousel-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}


.join-us-section {
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
    padding: 50px 20px;
    text-align: center;
    color: var(--text-color);
    border-radius: 10px;
    margin: 30px auto;
    max-width: 1200px;
    box-shadow: 0 4px 15px var(--shadow-color);
    animation: fadeIn 1.5s ease;
}

.join-us-section h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.join-us-section .join-text {
    font-family: var(--body-font);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: white;
    color: var(--accent-color);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: white;
    color: var(--secondary-color);
    box-shadow: 0 4px 15px var(--shadow-color);
}


/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid var(--accent-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-info, .footer-association {
    flex: 1;
    min-width: 300px;
}

.footer-info p, .footer-association p {
    margin: 10px 0;
    line-height: 1.8;
    font-size: 1rem;
}

.footer-info p strong {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.footer-association p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-info, .footer-association {
        text-align: center;
    }
}



