/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Animations fluides globales */
html {
    scroll-behavior: smooth;
}

/* Animation fade-in au chargement pour les éléments principaux */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation des éléments au chargement */
.hero {
    animation: fadeInUp 0.8s ease-out;
}

.container > h2 {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.team-member, .emission-card, .social-card, .content-format {
    animation: fadeInUp 0.6s ease-out both;
}

/* Délais échelonnés pour les grilles */
.team-member:nth-child(1), .emission-card:nth-child(1), .social-card:nth-child(1) {
    animation-delay: 0.1s;
}
.team-member:nth-child(2), .emission-card:nth-child(2), .social-card:nth-child(2) {
    animation-delay: 0.2s;
}
.team-member:nth-child(3), .emission-card:nth-child(3), .social-card:nth-child(3) {
    animation-delay: 0.3s;
}
.team-member:nth-child(4), .emission-card:nth-child(4), .social-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Amélioration pour les appareils tactiles */
@media (hover: none) and (pointer: coarse) {
    /* Réduction des animations sur mobile pour de meilleures performances */
    * {
        animation-duration: 0.1s !important;
        transition-duration: 0.1s !important;
    }
    
    /* Garder les animations importantes */
    .mobile-menu-toggle i,
    nav ul,
    .mobile-menu-overlay {
        transition-duration: 0.3s !important;
    }
}

/* Améliore la lisibilité sur mobile */
@media screen and (max-width: 768px) {
    /* Désactive le zoom par défaut sur les inputs sur iOS */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    textarea,
    select {
        font-size: 16px !important;
    }
    
    /* Amélioration de la lisibilité */
    body {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
}

body {
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

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

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    justify-content: flex-start;
}

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05) rotate(2deg);
}

/* Navigation mobile */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

nav {
    position: relative;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 5px;
    display: block;
}

/* Styles spécifiques pour la navigation principale dans le header */
header nav ul li a {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Animation uniquement pour les liens de navigation principale */
header nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2E7D32, #4CAF50);
    transition: width 0.3s ease;
}

/* Effet hover pour tous les liens nav */
nav ul li a:hover, nav ul li a.active {
    color: #1B5E20;
}

/* Effet supplémentaire uniquement pour la navigation principale */
header nav ul li a:hover, header nav ul li a.active {
    transform: translateY(-1px);
}

/* Animation uniquement pour les liens de navigation principale */
header nav ul li a:hover::before, header nav ul li a.active::before {
    width: 100%;
}

/* Hero Section */
.hero {
    background-color: #2E7D32;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

/* Hero Équipe avec photo de groupe */
.equipe-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.8), rgba(27, 94, 32, 0.9));
    padding: 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.equipe-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.team-group-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.6);
}

.equipe-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.equipe-hero .hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.equipe-hero .hero-content p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
}

/* À Propos Section */
.a-propos {
    padding: 80px 0;
    background-color: #fff;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #2E7D32;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover {
    background-color: #1B5E20;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(0);
}

.about-btn {
    margin-top: 20px;
    display: inline-block;
}

/* Réseaux page styles */
.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.social-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2E7D32, #4CAF50);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.social-card:hover::before {
    transform: scaleX(1);
}

.social-icon {
    width: 70px;
    height: 70px;
    background-color: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #2E7D32;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
}

.social-card:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: #2E7D32;
    color: white;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.social-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.social-card p {
    color: #666;
    margin-bottom: 30px;
    min-height: 100px;
    display: flex;
    align-items: center;
}

.social-btn {
    width: 100%;
    padding: 10px 15px;
    margin-top: 15px;
}

.reseaux-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.2rem;
    color: #555;
}

.contenu-complementaire {
    padding: 70px 0;
    background-color: #f1f8e9;
}

.contenu-complementaire h2 {
    text-align: center;
    font-size: 2.3rem;
    color: #2E7D32;
    margin-bottom: 40px;
}

.content-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.content-type {
    text-align: center;
    padding: 25px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.content-type i {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 20px;
}

.content-type h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.content-type p {
    color: #666;
    line-height: 1.6;
}

.section-subtitle {
    text-align: center;
    color: #2E7D32;
    font-size: 1.8rem;
    margin: 40px 0 25px;
}

.content-formats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.content-format {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.content-format:hover {
    transform: translateY(-8px);
}

.format-icon {
    width: 70px;
    height: 70px;
    background-color: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #2E7D32;
    font-size: 1.8rem;
}

.content-format h3 {
    text-align: center;
    color: #2E7D32;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.content-format p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.format-example {
    background-color: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #2E7D32;
    position: relative;
}

.format-tag {
    position: absolute;
    top: -10px;
    left: 15px;
    background-color: #2E7D32;
    color: white;
    font-size: 0.8rem;
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 600;
}

.format-example p {
    margin-top: 5px;
    margin-bottom: 0;
    font-style: italic;
    color: #555;
    line-height: 1.5;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .content-formats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .content-formats {
        grid-template-columns: 1fr;
    }
}

.call-to-action {
    text-align: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.call-to-action h3 {
    color: #2E7D32;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.call-to-action p {
    color: #555;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

.secondary-btn {
    background-color: #3B5998;
}

.secondary-btn:hover {
    background-color: #2d4373;
}

/* Analyse des réseaux sociaux */
.analyse-section {
    margin-top: 80px;
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.analyse-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.analyse-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #444;
}

.analyse-content h4 {
    color: #2E7D32;
    font-size: 1.4rem;
    margin: 35px 0 15px;
    border-bottom: 2px solid #e8f5e9;
    padding-bottom: 10px;
}

.analyse-list {
    margin: 20px 0 30px 20px;
    list-style-type: none;
}

.analyse-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.analyse-list li:before {
    content: "•";
    color: #2E7D32;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

@media (max-width: 992px) {
    .social-grid, .content-types {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .social-grid, .content-types {
        grid-template-columns: 1fr;
    }
}

.a-propos h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 40px;
}

.profile-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.profile-image {
    flex: 1;
    text-align: center;
}

.creator-photo {
    width: 150px;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.profile-content {
    flex: 2;
}

.profile-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.creator-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    flex: 1;
}

.footer-logo img {
    height: 50px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #2E7D32;
}

.footer-nav {
    flex: 1;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    justify-content: center;
}

.footer-nav ul li {
    margin: 0 15px;
}

.footer-nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav ul li a:hover {
    color: #4CAF50;
}

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

/* Add additional styles for sections */
.projet-content, .emissions-content, .equipe-content, .reseaux-content, .contact-content {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.projet-content h2, .emissions-content h2, .equipe-content h2, .reseaux-content h2, .contact-content h2 {
    color: #2E7D32;
    margin-bottom: 30px;
    text-align: center;
}

/* Projet page specific styles */
.projet-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

.projet-description h3 {
    color: #2E7D32;
    margin: 35px 0 15px;
    font-size: 1.8rem;
}

.projet-description p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.mission-list {
    margin: 20px 0 30px 25px;
}

.mission-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.mission-list li:before {
    content: "•";
    color: #2E7D32;
    font-weight: bold;
    position: absolute;
    left: -15px;
}

.projet-highlight {
    background-color: #e8f5e9;
    border-left: 5px solid #2E7D32;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 5px 5px 0;
    font-style: italic;
}

.thematiques-container {
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 10px;
}

.thematiques-container h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #2E7D32;
}

.thematiques-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 25px;
}

.thematique-item {
    text-align: center;
    background-color: white;
    padding: 25px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.thematique-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thematique-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    margin-top: 10px;
}

.thematique-icon {
    display: inline-block;
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 15px;
}

.thematique-item h4 {
    font-size: 1.2rem;
    color: #333;
}

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

@media (max-width: 480px) {
    .thematiques-grid {
        grid-template-columns: 1fr;
    }
}

/* Équipe page specific styles */
.equipe-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.2rem;
    color: #555;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.team-member {
    display: flex;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.03), rgba(76, 175, 80, 0.03));
    transition: all 0.4s ease;
    transform: translateX(-50%);
    pointer-events: none;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-member:hover::before {
    width: 100%;
}

.member-photo {
    flex: 1;
    max-width: 300px;
}

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

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.member-info {
    flex: 2;
    padding: 30px;
}

.member-info h3 {
    color: #2E7D32;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.member-role {
    color: #777;
    font-style: italic;
    margin-bottom: 15px;
}

.member-bio {
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.member-social a {
    color: #555;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.member-social a:hover {
    color: #2E7D32;
}

/* Style spécifique pour l'icône Threads */
.member-social a[href*="threads"] i {
    font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands", Arial, sans-serif;
}

/* Fallback si l'icône Threads n'est pas disponible */
.member-social a[href*="threads"] i.fa-threads:before {
    content: "@";
    font-family: Arial, sans-serif;
    font-weight: bold;
}

/* Style pour le logo We Don't Have Time */
.wdht-logo {
    width: 28px;
    height: auto;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

/* Le logo hérite de la couleur du lien parent dans member-social */
.member-social a .wdht-logo {
    color: #555;
}

/* Force la couleur blanche dans le footer */
.social-links a .wdht-logo {
    color: white;
    filter: brightness(0) saturate(100%) invert(100%);
}

/* Effet hover */
.member-social a:hover .wdht-logo,
.social-links a:hover .wdht-logo {
    transform: scale(1.1);
}

/* Style pour le logo We Don't Have Time dans les social-cards */
.wdht-logo-large {
    width: 64px;
    height: auto;
}

/* Pour les social-cards, on utilise la couleur des icônes (blanc) */
.social-icon .wdht-logo-large {
    color: white;
    transition: transform 0.3s ease;
}

.social-card:hover .wdht-logo-large {
    transform: scale(1.05);
}

/* Ajustements responsive pour le logo */
@media (max-width: 768px) {
    .wdht-logo {
        width: 24px;
    }
    
    .wdht-logo-large {
        width: 56px;
    }
}

.collaboration-info {
    margin-top: 60px;
    background-color: #e8f5e9;
    padding: 40px;
    border-radius: 10px;
}

.collaboration-info h3 {
    color: #2E7D32;
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
}

.collaboration-header {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.collaboration-image {
    flex: 1;
    max-width: 400px;
}

.collab-group-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.collaboration-text {
    flex: 1;
}

.collaboration-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.collaborators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.collaborator {
    display: flex;
    gap: 15px;
    align-items: center;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.collaborator-photo {
    flex-shrink: 0;
}

.collaborator-photo img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
}

.collaborator-info h4 {
    color: #2E7D32;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.collaborator-role {
    color: #1B5E20;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.collaborator-bio {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
}

.radio-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

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

.radio-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
}

.radio-logo span {
    font-weight: bold;
    color: #333;
}

@media (max-width: 768px) {
    .team-member {
        flex-direction: column;
    }
    
    .member-photo {
        max-width: 100%;
        height: 250px;
    }
    
    .radio-logos {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .collaboration-header {
        flex-direction: column;
        gap: 20px;
    }

    .collaboration-image {
        max-width: 100%;
    }

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

    .collaborator {
        gap: 15px;
        padding: 15px;
    }

    .collaborator-photo img {
        width: 60px;
        height: 60px;
    }
}

/* Contact page styles */
.contact-container {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    margin-right: 20px;
    width: 50px;
    height: 50px;
    background-color: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #2E7D32;
    font-size: 1.4rem;
}

.contact-item h3 {
    margin-bottom: 8px;
    color: #333;
    font-size: 1.3rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-item p a {
    color: #2E7D32;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-item p a:hover {
    color: #1B5E20;
    border-bottom: 1px solid #2E7D32;
    transform: translateY(-1px);
}

.social-contact {
    margin-top: 40px;
}

.social-contact h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.3rem;
}

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

.social-icons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background-color: #f1f1f1;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: #2E7D32;
    color: white;
}

.contact-form h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
    min-height: 44px; /* Taille tactile minimale */
    -webkit-appearance: none; /* Supprime le style par défaut sur iOS */
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2E7D32;
    outline: none;
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
}

.form-message {
    margin-top: 20px;
    padding: 12px;
    border-radius: 5px;
}

.form-message.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.form-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.form-message.sending {
    background-color: #e3f2fd;
    color: #1976d2;
    border: 1px solid #90caf9;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-info, .contact-form {
        width: 100%;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .contact-item {
        margin-bottom: 25px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Emissions page styles */
.emissions-categories {
    margin-bottom: 30px;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.category-filter {
    padding: 8px 16px;
    background-color: #f0f0f0;
    border-radius: 20px;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.category-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.1), transparent);
    transition: left 0.5s ease;
}

.category-filter:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.category-filter:hover::before {
    left: 100%;
}

.category-filter.active {
    background-color: #2E7D32;
    color: white;
}

.emissions-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.emission-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.micro-trottoir-tag {
    background-color: #E8F5E9;
    color: #2E7D32;
}

.interview-tag {
    background-color: #E3F2FD;
    color: #1565C0;
}

.playlist-tag {
    background-color: #FFF3E0;
    color: #E65100;
}

.emission-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.emission-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), rgba(76, 175, 80, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.emission-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.emission-card:hover::after {
    opacity: 1;
}

.emission-image {
    height: 300px;
}

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

.emission-content {
    padding: 30px;
}

.emission-content h3 {
    color: #2E7D32;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.emission-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.emission-meta span {
    display: flex;
    align-items: center;
    padding: 4px 8px;
    background-color: #f8f9fa;
    border-radius: 4px;
    font-weight: 500;
}

.emission-meta i {
    margin-right: 6px;
    color: #2E7D32;
    font-size: 0.85rem;
}

.emission-description {
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Player Mixcloud intégré */
.mixcloud-player {
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.mixcloud-player iframe {
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: block;
    min-height: 60px;
    border: none;
}

/* Styles pour la mise en page horizontale des émissions */
.emission-layout {
    display: flex;
    gap: 25px;
    align-items: center;
}

.podcast-cover {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-width: 220px;
}

.podcast-cover-square {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 3px solid #fff;
}

.podcast-cover-square:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.25);
}

.emission-content {
    flex: 1;
    min-width: 0;
}

/* Anciens styles pour compatibilité */
.audio-player {
    margin: 20px 0;
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #2E7D32;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.play-btn:hover {
    background-color: #1B5E20;
}

.track-title {
    font-weight: 500;
    color: #555;
}

.btn-outline {
    display: inline-block;
    padding: 12px 20px;
    border: 2px solid #2E7D32;
    color: #2E7D32;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 15px;
    font-size: 0.95rem;
}

.btn-outline:hover {
    background-color: #2E7D32;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.btn-outline i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.emissions-cta {
    text-align: center;
    background-color: #e8f5e9;
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
}

.emissions-cta h3 {
    color: #2E7D32;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.emissions-cta p {
    max-width: 700px;
    margin: 0 auto 25px;
    color: #555;
}

/* Amélioration responsives pour les émissions */
@media (max-width: 768px) {
    .emissions-categories {
        padding: 30px 0;
    }
    
    .category-filters {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        padding: 0 15px;
    }
    
    .category-filter {
        padding: 10px 15px;
        font-size: 0.9rem;
        min-height: 44px;
        white-space: nowrap;
    }
    
    .emissions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .emission-card {
        flex-direction: column;
        border-radius: 8px;
    }
    
    .emission-image {
        height: 200px;
        width: 100%;
    }
    
    .emission-content {
        padding: 20px;
    }
    
    .emission-layout {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
    
    .podcast-cover {
        padding: 15px;
        min-width: auto;
    }
    
    .podcast-cover-square {
        width: 140px;
        height: 140px;
        border-radius: 12px;
    }
    
    .emission-content h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .emission-meta {
        margin-bottom: 15px;
        font-size: 0.9rem;
    }
    
    .emission-description {
        font-size: 0.95rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    
    .mixcloud-player {
        padding: 12px;
        border-radius: 6px;
    }
    
    .mixcloud-player iframe {
        height: 60px;
    }
    
    .audio-player {
        padding: 15px;
        border-radius: 6px;
    }
    
    .play-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        min-height: 44px;
    }
    
    .track-title {
        font-size: 0.9rem;
        margin-left: 15px;
    }
    
    .emissions-cta {
        padding: 30px 15px;
    }
    
    .emissions-cta h3 {
        font-size: 1.6rem;
    }
}

/* Home page styles */
.home-presentation {
    padding: 80px 0;
    background-color: #fff;
}

.home-presentation h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 40px;
}

.presentation-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.presentation-img {
    flex: 1;
    text-align: center;
}

.presentation-logo {
    width: 200px;
    height: auto;
}

.presentation-text {
    flex: 2;
}

.presentation-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #2E7D32;
    color: #2E7D32;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 15px;
}

.btn-outline:hover {
    background-color: #2E7D32;
    color: white;
}

.home-emissions {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.home-emissions h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 40px;
}

.home-emissions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.home-emission-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

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

.emission-icon {
    width: 70px;
    height: 70px;
    background-color: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #2E7D32;
    font-size: 1.8rem;
}

.home-emission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.home-emission-card p {
    color: #666;
    margin-bottom: 20px;
}

.btn-small {
    display: inline-block;
    padding: 8px 15px;
    background-color: #2E7D32;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.btn-small:hover {
    background-color: #1B5E20;
}

.home-section-cta {
    text-align: center;
    margin-top: 30px;
}

.home-collaboration {
    padding: 80px 0;
    background-color: #fff;
}

.home-collaboration h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 20px;
}

.collab-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #555;
}

.home-collab-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

.collab-item {
    text-align: center;
    max-width: 250px;
}

.collab-logo {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.collab-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.collab-item p {
    color: #666;
}

.home-contact {
    padding: 80px 0;
    background-color: #e8f5e9;
    text-align: center;
}

.home-contact h2 {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 20px;
}

.home-contact p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: #555;
}

.hero-btn {
    margin-top: 30px;
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* MEDIA QUERIES POUR MOBILE */

/* Navigation mobile */
@media (max-width: 768px) {
    header {
        padding: 12px 20px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }
    
    nav ul.mobile-menu-open {
        right: 0;
    }
    
    nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }
    
    nav ul li a {
        padding: 20px;
        font-size: 1.1rem;
        width: 100%;
        border-radius: 0;
    }
    
    /* Overlay pour fermer le menu */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 99;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
    
    /* Hero responsive */
    .hero {
        padding: 40px 20px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .hero-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    /* Sections responsive */
    .home-presentation, .home-emissions, .home-collaboration, .home-contact, .a-propos {
        padding: 50px 0;
    }
    
    .home-presentation h2, .home-emissions h2, .home-collaboration h2, .home-contact h2, .a-propos h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .presentation-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .presentation-img {
        order: -1;
    }
    
    .presentation-logo {
        width: 120px;
    }
    
    .presentation-text p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    /* Grilles responsive */
    .home-emissions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .home-emission-card {
        padding: 25px 20px;
    }
    
    .home-emission-card h3 {
        font-size: 1.3rem;
    }
    
    .emission-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .home-collab-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .collab-logo {
        width: 120px;
    }
    
    /* Profile section responsive */
    .profile-container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .creator-photo {
        width: 120px;
    }
    
    .profile-content h3 {
        font-size: 1.6rem;
    }
    
    .creator-bio {
        font-size: 1rem;
    }
    
    /* Footer responsive */
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .footer-nav ul li {
        margin: 5px;
    }
    
    /* Team page responsive */
    .team-member {
        flex-direction: column;
        text-align: center;
    }
    
    .member-photo {
        max-width: 100%;
        height: 250px;
    }
    
    .radio-logos {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    /* Responsive pour hero équipe */
    .equipe-hero {
        min-height: 50vh;
        padding: 30px 0;
    }

    .equipe-hero .hero-content h1 {
        font-size: 2rem;
    }

    .equipe-hero .hero-content p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    /* Boutons responsive */
    .btn, .btn-outline, .btn-small {
        padding: 12px 20px;
        font-size: 0.95rem;
        min-height: 44px; /* Taille tactile recommandée */
        display: inline-block;
        text-align: center;
    }
    
    .btn-outline {
        padding: 10px 18px;
    }
    
    /* Container responsive */
    .container {
        padding: 0 15px;
    }
}

/* Très petits écrans */
@media (max-width: 480px) {
    .hero {
        padding: 30px 15px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .home-presentation, .home-emissions, .home-collaboration, .home-contact, .a-propos {
        padding: 40px 0;
    }
    
    .home-presentation h2, .home-emissions h2, .home-collaboration h2, .home-contact h2, .a-propos h2 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .presentation-text p {
        font-size: 0.95rem;
    }
    
    .home-emission-card {
        padding: 20px 15px;
    }
    
    .home-emission-card h3 {
        font-size: 1.2rem;
    }
    
    .emission-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .collab-logo {
        width: 100px;
    }
    
    .creator-photo {
        width: 100px;
    }
    
    /* Navigation très petits écrans */
    nav ul {
        width: 95%;
        padding-top: 70px;
    }
    
    nav ul li a {
        padding: 16px;
        font-size: 1rem;
    }
    
    /* Footer très petits écrans */
    .footer-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-nav ul li {
        margin: 0;
    }
    
    /* Formulaires très petits écrans */
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 12px;
        font-size: 16px; /* Évite le zoom sur iOS */
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    /* Émissions très petits écrans */
    .category-filter {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .emission-content {
        padding: 15px;
    }
    
    .emission-content h3 {
        font-size: 1.1rem;
    }
    
    .mixcloud-player {
        padding: 10px;
    }
    
    .mixcloud-player iframe {
        height: 60px;
    }
    
    .play-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Amélioration des zones tactiles */
    .social-links a,
    .member-social a,
    .social-icons a {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
}