/* Variables et réinitialisation - mise à jour avec les nouvelles couleurs */
:root {
    --primary-color: #275925;
    --secondary-color: #F29422;
    --accent-color: #F24464;
    --light-color: #F2DFCE;
    --dark-color: #0D0D0D;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header amélioré avec meilleure visibilité */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(rgba(39, 89, 37, 0.85), rgba(39, 89, 37, 0.9)), url('fond vert.png');
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

#header.scrolled {
    padding: 5px 0;
    background: linear-gradient(rgba(39, 89, 37, 0.9), rgba(39, 89, 37, 0.95)), url('fond vert.png');
    background-size: cover;
    background-position: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#header .container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px;
    border-radius: 12px;
    transition: transform 0.3s ease;
    min-width: 0; /* Permet au conteneur de rétrécir */
}

.logo-image {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none; /* Suppression du fond blanc */
}

.logo-image img {
    width: auto; /* Ne force plus la largeur */
    height: 100%; /* Garde la hauteur */
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-text {
    min-width: 0; /* Permet au texte de rétrécir */
    white-space: nowrap; /* Garde le texte sur une ligne */
    overflow: hidden; /* Cache le débordement */
}

.logo-text h1 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    text-overflow: ellipsis; /* Ajoute des points de suspension si le texte est trop long */
    overflow: hidden;
}

.logo-text p {
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
    text-overflow: ellipsis; /* Ajoute des points de suspension si le texte est trop long */
    overflow: hidden;
}

nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    justify-content: space-evenly; /* Distribue l'espace également */
}

nav ul li a {
    display: flex;
    align-items: center;
    gap: 6px; /* Réduit l'espace entre l'icône et le texte */
    padding: 8px 12px; /* Réduit le padding */
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem; /* Légèrement plus petit */
    white-space: nowrap; /* Empêche le retour à la ligne */
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.1)
    );
    transition: all 0.4s ease;
    z-index: -1;
}

nav ul li a:hover {
    transform: translateY(-2px);
    color: var(--white);
}

nav ul li a:hover::before {
    left: 100%;
}

nav ul li a i {
    font-size: 1rem; /* Icônes légèrement plus petites */
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

nav ul li a:hover i {
    transform: translateY(-3px) rotate(-10deg);
    color: var(--white);
}

/* Menu toggle - Masqué par défaut */
.menu-toggle {
    display: none;  /* Masquer le menu hamburger par défaut */
}

/* Version mobile du header - Mise à jour */
@media (max-width: 992px) {  /* Changé de 768px à 992px */
    #header .container {
        height: 60px;
        padding: 0 15px;
        gap: 10px;
    }

    .logo {
        gap: 10px;
    }

    .logo-image {
        width: 35px;
        height: 35px;
    }

    .logo-text h1 {
        font-size: 1rem;
    }

    .logo-text p {
        font-size: 0.65rem;
    }

    nav {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(39, 89, 37, 0.98);
        backdrop-filter: blur(8px);
        padding: 20px;
        transition: left 0.3s ease;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        width: 100%;
        padding: 12px 15px;
        font-size: 1.1rem;
        justify-content: flex-start;
    }

    nav ul li a i {
        font-size: 1.2rem;
        width: 25px;
    }

    .menu-toggle {
        display: flex;  /* Afficher uniquement en version mobile */
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        cursor: pointer;
        z-index: 100;
    }

    .menu-toggle i {
        color: var(--white);
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

    .menu-toggle.active i {
        transform: rotate(90deg);
    }
}

/* Ajustements supplémentaires pour très petits écrans */
@media (max-width: 360px) {
    .logo-text h1 {
        font-size: 0.9rem;
    }

    .logo-text p {
        display: none;
    }

    nav ul li a {
        font-size: 1rem;
        padding: 10px;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('fond.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(242, 68, 100, 0.3) 0%, rgba(39, 89, 37, 0.5) 50%, rgba(242, 148, 34, 0.3) 100%);
    z-index: 1;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    animation: float 15s infinite linear;
}

.hero-content {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    padding: 0 20px;
}

.logo-hero {
    width: 140px;
    height: 140px;
    margin-bottom: 15px;
    animation: pulse-color 5s infinite alternate;
}

.logo-hero img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(242, 68, 100, 0.7));
}

@keyframes pulse-color {
    0% { 
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(242, 68, 100, 0.7));
    }
    33% { 
        transform: scale(1.03);
        filter: drop-shadow(0 0 15px rgba(39, 89, 37, 0.7));
    }
    66% {
        transform: scale(1.06); 
        filter: drop-shadow(0 0 15px rgba(242, 148, 34, 0.7));
    }
    100% { 
        transform: scale(1.03);
        filter: drop-shadow(0 0 15px rgba(242, 68, 100, 0.7));
    }
}

.animated-text {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    color: var(--white);
    position: relative;
    display: inline-block;
    /* Suppression de l'effet de dégradé et de l'animation */
    /*
    background: linear-gradient(45deg, var(--white) 10%, var(--accent-color) 25%, var(--primary-color) 50%, var(--secondary-color) 75%, var(--white) 90%);
    background-size: 300% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine-colors 6s linear infinite;
    */
}

/* Style du titre du hero avec animation légère - CORRIGÉ */
.hero-title {
    font-size: 6.5rem;  /* Beaucoup plus grand */
    font-weight: 800;   /* Plus épais */
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5), 0 0 30px rgba(39, 89, 37, 0.4);
    color: var(--white);
    position: relative;
    letter-spacing: 1px;
    display: inline-block;
    animation: title-float 4s ease-in-out infinite alternate;
    text-transform: uppercase; /* Texte en majuscules pour plus d'impact */
}

@keyframes title-float {
    0% { 
        transform: translateY(0); 
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5), 0 0 30px rgba(39, 89, 37, 0.4);
    }
    100% { 
        transform: translateY(-12px); 
        text-shadow: 0 12px 20px rgba(0, 0, 0, 0.4), 0 0 40px rgba(242, 148, 34, 0.4);
    }
}

/* Style du titre du hero avec animation légère */
.hero-title {
    font-size: 5.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    color: var(--white);
    position: relative;
    letter-spacing: 1px;
    display: inline-block;
    animation: gentle-float 4s ease-in-out infinite alternate;
}

@keyframes gentle-float {
    0% { 
        transform: translateY(0); 
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    }
    100% { 
        transform: translateY(-10px); 
        text-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
    }
}

@keyframes shine-colors {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.tagline-container {
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeIn 2s ease;
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.badge {
    background-color: rgba(242, 68, 100, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeIn 2.5s ease;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.badge:nth-child(1) {
    background-color: rgba(39, 89, 37, 0.2);
}

.badge:nth-child(2) {
    background-color: rgba(242, 148, 34, 0.2);
}

.badge:nth-child(3) {
    background-color: rgba(242, 68, 100, 0.2);
}

.badge:hover, .badge:focus {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: var(--white);
}

.badge:nth-child(1):hover, .badge:nth-child(1):focus {
    background-color: rgba(39, 89, 37, 0.4);
}

.badge:nth-child(2):hover, .badge:nth-child(2):focus {
    background-color: rgba(242, 148, 34, 0.4);
}

.badge:nth-child(3):hover, .badge:nth-child(3):focus {
    background-color: rgba(242, 68, 100, 0.4);
}

.cta-container {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    animation: fadeIn 3s ease;
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.secondary-button {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.secondary-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 2;
    animation: bounce 2s infinite;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 0.8;
}

.scroll-indicator:active {
    opacity: 0.6;
}

.scroll-indicator p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.wheel {
    width: 3px;
    height: 10px;
    background-color: var(--white);
    border-radius: 3px;
    animation: scroll 1.5s infinite;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="1" d="M0,192L48,186.7C96,181,192,171,288,181.3C384,192,480,224,576,218.7C672,213,768,171,864,149.3C960,128,1056,128,1152,144C1248,160,1344,192,1392,208L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}

.leaves-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.leaf {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.6;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
    animation: float-leaf 20s infinite linear;
    will-change: transform, opacity;
}

.leaf-1, .leaf-7, .leaf-13 { color: var(--primary-color); }
.leaf-2, .leaf-8, .leaf-14 { color: var(--secondary-color); }
.leaf-3, .leaf-9, .leaf-15 { color: var(--accent-color); }
.leaf-4, .leaf-10 { color: var(--light-color); }
.leaf-5, .leaf-11 { color: #27ae60; }
.leaf-6, .leaf-12 { color: #F2DFCE; }

@keyframes float-leaf {
    0% {
        transform: translateY(-10vh) translateX(10px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(110vh) translateX(20vw) rotate(360deg);
        opacity: 0;
    }
}

/* Variations de l'animation pour différentes feuilles */
.leaf-1, .leaf-6, .leaf-11 { animation-name: float-leaf-left; }
.leaf-2, .leaf-7, .leaf-12 { animation-name: float-leaf-right; }
.leaf-3, .leaf-8, .leaf-13 { animation-name: float-leaf-zigzag; }
.leaf-4, .leaf-9, .leaf-14 { animation-name: float-leaf-wave; }
.leaf-5, .leaf-10, .leaf-15 { animation-name: float-leaf-spin; }

@keyframes float-leaf-left {
    0% {
        transform: translateY(-10vh) translateX(10vw) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% {
        transform: translateY(110vh) translateX(-20vw) rotate(360deg);
        opacity: 0;
    }
}

@keyframes float-leaf-right {
    0% {
        transform: translateY(-10vh) translateX(-10vw) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% {
        transform: translateY(110vh) translateX(20vw) rotate(360deg);
        opacity: 0;
    }
}

@keyframes float-leaf-zigzag {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.8; transform: translateY(10vh) translateX(10vw) rotate(90deg); }
    30% { transform: translateY(30vh) translateX(-10vw) rotate(180deg); }
    50% { transform: translateY(50vh) translateX(10vw) rotate(270deg); }
    70% { transform: translateY(70vh) translateX(-10vw) rotate(360deg); }
    90% { opacity: 0.8; transform: translateY(90vh) translateX(10vw) rotate(450deg); }
    100% {
        transform: translateY(110vh) translateX(0) rotate(540deg);
        opacity: 0;
    }
}

@keyframes float-leaf-wave {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg);
        opacity: 0;
        filter: drop-shadow(0 0 8px var(--accent-color));
    }
    10% { opacity: 0.8; }
    25% { 
        transform: translateY(25vh) translateX(15vw) rotate(90deg);
        filter: drop-shadow(0 0 12px var(--primary-color)); 
    }
    50% { 
        transform: translateY(50vh) translateX(-15vw) rotate(180deg);
        filter: drop-shadow(0 0 12px var(--secondary-color)); 
    }
    75% { 
        transform: translateY(75vh) translateX(15vw) rotate(270deg);
        filter: drop-shadow(0 0 12px var(--accent-color)); 
    }
    90% { opacity: 0.8; }
    100% {
        transform: translateY(110vh) translateX(0) rotate(360deg);
        opacity: 0;
        filter: drop-shadow(0 0 8px var(--primary-color));
    }
}

@keyframes float-leaf-spin {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10% { opacity: 0.8; }
    25% transform: translateY(25vh) translateX(10vw) rotate(180deg) scale(1.2); }
    50% { transform: translateY(50vh) translateX(0) rotate(360deg) scale(1); }
    75% { transform: translateY(75vh) translateX(-10vw) rotate(540deg) scale(1.2); }
    90% { opacity: 0.8; }
    100% {
        transform: translateY(110vh) translateX(0) rotate(720deg) scale(1);
        opacity: 0;
    }
}

/* Élément de transition après le hero - CORRIGÉ */
.transition-element {
    position: relative;
    height: 120px;
    margin-top: -70px; /* Modifié pour mieux se superposer */
    background-color: transparent;
    z-index: 10; /* Augmenté pour être sûr qu'il s'affiche au-dessus des autres éléments */
    overflow: visible; /* Changé pour permettre aux éléments de déborder */
    pointer-events: none; /* Pour éviter d'interférer avec les clics */
}

.leaf-divider {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    z-index: 11;
}

.leaf-divider i {
    font-size: 2.5rem; /* Plus grand */
    color: var(--primary-color);
    opacity: 0.9; /* Plus visible */
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
    animation: leaf-float 3s ease-in-out infinite alternate;
    margin: 0 10px; /* Espace entre les feuilles */
}

.leaf-divider i:nth-child(odd) {
    color: var(--secondary-color);
    animation-delay: 0.5s;
}

.leaf-divider i:nth-child(3) {
    color: var(--accent-color);
    animation-delay: 0.3s;
    font-size: 3rem; /* Encore plus grand pour la feuille centrale */
}

.wave-divider {
    position: absolute;
    bottom: -5px; /* Ajusté pour mieux s'aligner */
    left: 0;
    width: 100%;
    height: 80px; /* Hauteur réduite pour s'assurer qu'elle s'affiche correctement */
    fill: #f9f9f9; /* Couleur de fond de la page */
    z-index: 9;
}

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

/* Ajustements pour que les sections s'enchaînent bien */
#presentation {
    padding-top: 120px; /* Pour commencer sous la transition */
    z-index: 5;
    position: relative;
    background-color: #f9f9f9;
    margin-top: -30px; /* Ajusté pour réduire l'espace */
}

/* Élément de transition après le hero */
.transition-element {
    position: relative;
    height: 100px;
    margin-top: -100px;
    z-index: 3;
    overflow: hidden;
}

.leaf-divider {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    z-index: 4;
}

.leaf-divider i {
    font-size: 1.8rem;
    color: var(--primary-color);
    opacity: 0.7;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
    animation: leaf-float 3s ease-in-out infinite alternate;
}

.leaf-divider i:nth-child(odd) {
    color: var(--secondary-color);
    animation-delay: 0.5s;
}

.leaf-divider i:nth-child(3) {
    color: var(--accent-color);
    animation-delay: 0.3s;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 3;
}

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

/* Ajustements pour que les sections s'enchaînent bien */
.section {
    padding: 100px 0;
    background-color: #f9f9f9; /* Assure que toutes les sections ont la même couleur de fond */
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.green-bg {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('fond fleur.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    color: var(--dark-color);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), var(--secondary-color));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Profile Section */
.profile {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.profile-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.profile-content {
    flex: 2;
}

.profile-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var (--dark-color);
}

.profile-content h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.profile-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--dark-color);
    transform: translateY(-3px);
}

/* Amélioration des icônes sociales dans le profil */
.profile-social {
    margin-top: 2rem;
}

.profile-social a {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    margin-right: 15px;
    transition: all 0.3s ease;
}

.profile-social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.profile-social a:nth-child(1) {
    background-color: #E1306C; /* Couleur Instagram */
}

.profile-social a:nth-child(2) {
    background-color: #4267B2; /* Couleur Facebook */
}

.profile-social a:nth-child(3) {
    background-color: #1DA1F2; /* Couleur pour Bluesky */
}

.profile-social i {
    font-size: 1.8rem;
}

/* Podcast Section */
.podcast-container, .micro-trottoir-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.podcast-info h3, .micro-trottoir-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.expert-name {
    font-style: italic;
    color: var(--primary-color);
    margin-top: 1rem;
}

.podcast-player audio, .micro-trottoir-player audio {
    width: 100%;
    margin-top: 1rem;
}

.podcast-player iframe {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    background-color: var(--white);
    margin-top: 1rem;
}

/* Playlist Section */
.playlist-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.playlist-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.playlist-embed {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

/* Partners Section */
.partners {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center; /* Ajout pour centrer horizontalement tous les éléments */
    min-height: 350px;
}

.partner-card:hover {
    transform: translateY(-10px);
}

.partner-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px; /* Modifié: ajout de margin auto pour centrer horizontalement */
    display: block; /* Assure que l'image se comporte comme un bloc pour le centrage */
}

.partner-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.partner-card p {
    margin-bottom: 15px;
}

/* Bouton pour les collaborateurs */
.partner-link {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.partner-link:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Tips Section */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.tip-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 5px solid var(--primary-color);
    overflow: hidden;
    position: relative;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), var(--secondary-color));
    transform: translateX(-100%);
    transition: all 0.5s ease;
}

.tip-card:hover::before {
    transform: translateX(0);
}

.tip-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    transition: all 0.5s ease;
}

.tip-card:hover i {
    transform: scale(1.2) rotate(10deg);
}

.tip-card:nth-child(2n) i {
    color: var(--primary-color);
}

.tip-card:nth-child(3n) i {
    color: var(--secondary-color);
}

/* Footer mis à jour */
#footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), var(--secondary-color));
}

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

.footer-logo h2 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 0;
    border-radius: 2px;
}

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

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact .social-links {
    margin-top: 20px;
}

.footer-contact .social-links a {
    background-color: rgba(255, 255, 255, 0.1);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Nouveau Footer avec effet de vague */
.site-footer {
    position: relative;
    margin-top: 150px; /* Augmenté pour la nouvelle vague */
    background-color: var(--dark-color);
    color: var(--white);
}

.footer-wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.footer-wave svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer-wave path {
    animation: waveAnimation 20s linear infinite;
}

@keyframes waveAnimation {
    0% {
        d: path("M0,160 C230,320 580,0 1440,200 L1440,320 L0,320 Z");
    }
    50% {
        d: path("M0,200 C300,100 700,290 1440,170 L1440,320 L0,320 Z");
    }
    100% {
        d: path("M0,160 C230,320 580,0 1440,200 L1440,320 L0,320 Z");
    }
}

.site-footer .container {
    position: relative;
    padding: 60px 0 20px;
}

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

.site-footer .footer-branding {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-footer .footer-logo {
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none; /* Suppression du fond blanc */
}

.site-footer .footer-logo img {
    width: auto; /* Ne force plus la largeur */
    height: 100%; /* Garde la hauteur */
    object-fit: contain;
}

.site-footer .brand-info h2 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.site-footer .brand-info p {
    color: var(--secondary-color);
}

.site-footer .footer-nav h3,
.site-footer .footer-social h3,
.site-footer .footer-contact h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.site-footer .footer-nav h3::after,
.site-footer .footer-social h3::after,
.site-footer .footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
}

.site-footer .footer-nav ul {
    list-style: none;
}

.site-footer .footer-nav ul li {
    margin-bottom: 10px;
}

.site-footer .footer-nav ul li a {
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.site-footer .footer-nav ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

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

.site-footer .social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.site-footer .social-btn:hover {
    transform: translateY(-5px);
}

.site-footer .social-btn.facebook:hover {
    background: #4267B2;
}

.site-footer .social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.site-footer .social-btn.bluesky:hover {
    background: #1DA1F2;
}

.site-footer .footer-bottom {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Suppression de la bordure du haut */
}

.site-footer .footer-wave svg path {
    fill: var(--dark-color);
    /* Suppression du deuxième trait */
}

.site-footer .copyright {
    opacity: 0.7;
}

.site-footer .eco-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(39, 89, 37, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .site-footer .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .site-footer .footer-branding {
        justify-content: center;
    }

    .site-footer .footer-nav h3::after,
    .site-footer .footer-social h3::after,
    .site-footer .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .site-footer .social-links {
        justify-content: center;
    }

    .site-footer .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Nouveau design pour les informations du slider */
.episode-info {
    background: linear-gradient(135deg, rgba(39, 89, 37, 0.05), rgba(242, 148, 34, 0.05));
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(39, 89, 37, 0.1);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.info-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(39, 89, 37, 0.05);
}

.info-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 15px rgba(39, 89, 37, 0.1);
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.info-item:hover i {
    transform: scale(1.2);
    color: var(--secondary-color);
}

.info-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.info-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .info-item {
        padding: 12px;
    }
}

/* Nouvelle structure de présentation */
.presentation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.presentation-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.presentation-card .profile-image {
    flex: 0 0 200px;
    width: 200px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
}

.presentation-card .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.presentation-content {
    flex: 1;
}

@media (max-width: 768px) {
    .presentation-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .presentation-card .profile-image {
        flex: none;
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }
}

.highlights {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.highlights i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.social-section {
    margin-top: 60px;
    text-align: center;
}

.social-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

/* Audio Slider Styles - Nouveau design plus compact */
.slider-container {
    max-width: 800px; /* Réduit de 900px */
    margin: 0 auto;
    position: relative;
    overflow: visible;
    padding: 30px 15px; /* Réduit de 40px 20px */
}

.audio-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
    padding: 20px 0;
}

.slide {
    flex: 0 0 100%;
    background: var(--white);
    padding: 25px; /* Réduit de 35px */
    border-radius: 15px; /* Réduit de 20px */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    opacity: 0.4;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Ajustements pour les lecteurs Mixcloud plus petits */
.slide {
    min-height: 180px; /* Réduit de 200px à 180px */
    padding: 15px;
}

.audio-frame {
    margin-top: 8px; /* Réduit de 10px à 8px */
    padding: 6px; /* Réduit de 8px à 6px */
    min-height: 72px; /* Hauteur minimale pour le lecteur + padding */
}

.episode-info {
    padding: 10px; /* Réduit de 12px à 10px */
    margin-top: 10px; /* Réduit de 12px à 10px */
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.slide.active::before {
    opacity: 1;
}

.slide h3 {
    font-size: 1.6rem; /* Réduit de 2rem */
    color: var(--primary-color);
    margin-bottom: 12px; /* Réduit de 15px */
    position: relative;
    padding-left: 15px;
}

.slide h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: var(--secondary-color);
    border-radius: 2px;
}

.slide p {
    color: var(--text-light);
    margin-bottom: 20px; /* Réduit de 25px */
    font-size: 1rem; /* Réduit de 1.1rem */
}

.audio-frame {
    margin-top: 20px; /* Réduit de 25px */
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(to right, var(--light-color), #f5eae1);
    padding: 12px; /* Réduit de 15px */
    position: relative;
}

.audio-frame::before {
    content: '\f025';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.prev-slide,
.next-slide {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.prev-slide:hover,
.next-slide:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.prev-slide:active,
.next-slide:active {
    transform: translateY(-1px);
}

.slider-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 0;
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

.dot.active {
    border-color: var(--primary-color);
    transform: scale(1.2);
}

.dot.active::after {
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 768px) {
    .slide {
        padding: 25px;
    }

    .slide h3 {
        font-size: 1.6rem;
    }

    .slide p {
        font-size: 1rem;
    }

    .prev-slide,
    .next-slide {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Animations supplémentaires pour le hero */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes shine {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-1000%) translateX(100px) rotate(720deg);
        opacity: 0;
    }
}

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

@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

/* Ajustements responsive pour le hero amélioré */
@media (max-width: 768px) {
    .animated-text {
        font-size: 3.5rem;
    }
    
    .logo-hero {
        width: 100px;
        height: 100px;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .cta-container {
        flex-direction: column;
        gap: 10px;
    }

    .scroll-indicator {
        bottom: 60px;
    }
}

@media (max-width: 576px) {
    .animated-text {
        font-size: 2.5rem;
    }
    
    .logo-hero {
        width: 80px;
        height: 80px;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
    
    .scroll-indicator {
        bottom: 50px;
    }
}

/* Nouvelles animations */
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes color-change {
    0% { color: var(--primary-color); }
    33% { color: var(--accent-color); }
    66% { color: var(--secondary-color); }
    100% { color: var(--primary-color); }
}

@keyframes highlight-new {
    0%, 100% { box-shadow: 0 0 5px var(--primary-color); }
    33% { box-shadow: 0 0 20px var(--accent-color); }
    66% { box-shadow: 0 0 20px var(--secondary-color); }
    100% { box-shadow: 0 0 5px var(--primary-color); }
}

/* Supprimer toutes les animations d'intro */
#intro-screen {
    display: none;
}

/* Optimiser les animations existantes */
@keyframes gentle-float {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}

/* Optimiser les transitions */
.section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    will-change: opacity, transform;
}

.section.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Optimiser les effets de hover */
.partner-card, .tip-card {
    transition: transform 0.3s ease;
    will-change: transform;
}

/* Réduire les animations superflues */
.leaf {
    will-change: transform;
}

/* Optimiser les media queries */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Optimiser le chargement des polices */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 2rem 0;
}

.social-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
}

.social-card:hover {
    transform: translateY(-5px);
}

.social-card i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.social-card.facebook i {
    color: #4267B2;
}

.social-card.instagram i {
    color: #E1306C;
}

.social-card.bluesky {
    position: relative;
    display: inline-block;
}

.social-card.bluesky img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.social-card.bluesky:hover img {
    transform: rotate(-15deg) scale(1.1);
}

.social-card h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.social-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.bluesky-info {
    margin: 2rem 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(29, 161, 242, 0.1), rgba(255, 255, 255, 0.8));
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bluesky-info summary {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 10px 0;
    outline: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bluesky-info summary::after {
    content: '→';
    transition: transform 0.3s ease;
}

.bluesky-info[open] summary::after {
    transform: rotate(90deg);
}

.bluesky-content {
    padding: 15px 0;
    line-height: 1.6;
    color: var(--text-color);
}

/* Styles spécifiques pour la section découverte */
.discover-presentation-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(39, 89, 37, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.discover-presentation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.discover-presentation-card:hover::before {
    opacity: 1;
}

.discover-presentation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(39, 89, 37, 0.15);
}

.discover-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.discover-image {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.discover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.discover-presentation-card:hover .discover-image {
    border-color: var(--secondary-color);
}

.discover-presentation-card:hover .discover-image img {
    transform: scale(1.1);
}

.discover-header-text {
    flex-grow: 1;
}

.discover-header-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.discover-header-text h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.discover-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .discover-presentation-card {
        padding: 1.5rem;
    }

    .discover-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .discover-image {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .discover-header-text h3 {
        font-size: 1.5rem;
    }

    .discover-content p {
        font-size: 1rem;
        text-align: center;
    }
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ajustements de la section Nos contenus audio */
.audio-content {
    padding: 40px 0; /* Réduit de 60px à 40px */
}

.slider-container {
    max-width: 650px; /* Réduit de 700px */
    padding: 10px; /* Réduit de 15px */
}

.slide {
    min-height: 180px; /* Réduit de 200px à 180px */
    padding: 15px;
}

.audio-frame {
    margin-top: 8px; /* Réduit de 10px à 8px */
    padding: 6px; /* Réduit de 8px à 6px */
    min-height: 72px; /* Hauteur minimale pour le lecteur + padding */
}

.episode-info {
    padding: 10px; /* Réduit de 12px à 10px */
    margin-top: 10px; /* Réduit de 12px à 10px */
}

.info-grid {
    gap: 6px; /* Réduit de 8px */
}

.info-item {
    padding: 6px; /* Réduit de 8px */
}

.info-item i {
    font-size: 1rem; /* Réduit de 1.2rem */
    margin-bottom: 3px; /* Réduit de 4px */
}

.slider-controls {
    margin-top: 20px; /* Réduit de 25px */
}

/* Ajustements responsive globaux */
@media (max-width: 992px) {
    .presentation-grid,
    .discover-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners {
        grid-template-columns: repeat(2, 1fr);
    }

    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .social-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .partners {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .slider-container {
        max-width: 100%;
        padding: 10px 0;
    }

    .slide {
        padding: 15px 10px;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h3::after, 
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero p {
        font-size: 1rem;
    }

    .hero-badges {
        flex-direction: column;
        gap: 8px;
    }

    .badge {
        width: 100%;
        text-align: center;
    }

    .cta-container {
        flex-direction: column;
        gap: 10px;
    }

    .slide h3 {
        font-size: 1.2rem;
    }

    .info-item {
        padding: 8px 5px;
    }

    .info-item i {
        font-size: 0.9rem;
    }

    .info-value {
        font-size: 0.8rem;
    }
}

/* Ajustements pour les images et contenus média */
@media (max-width: 768px) {
    .profile-image {
        width: 100px;
        height: 100px;
    }

    .partner-card img {
        width: 100px;
        height: 100px;
    }

    .audio-frame iframe {
        height: 80px;
    }
}

.conseil-bg {
    background-image: url('fond feuille.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.conseil-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.conseil-bg .container {
    position: relative;
    z-index: 2;
}

.conseil-bg .tip-card {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
}

/* FAQ Section */
.faq-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1em;
    color: #2c3e50;
    list-style: none;
    position: relative;
    padding-right: 40px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 20px 20px;
    margin: 0;
    line-height: 1.6;
    color: #555;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Nouveaux styles pour la section présentation */
.presentation-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.round-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #4CAF50;
}

.round-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.presentation-header h3 {
    font-size: 1.8rem;
    margin: 0;
    color: #2c3e50;
}

.header-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.header-text h4 {
    margin: 0;
    color: #4CAF50;
    font-weight: 500;
}

.presentation-text {
    padding: 0 1rem;
}

.presentation-text p {
    line-height: 1.6;
    color: #505050;
}

/* Ajustements pour les cartes de présentation */
.presentation-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.presentation-card:hover {
    transform: translateY(-5px);
}


