:root {
    /* Couleurs principales */
    --color-primary: #64091e;
    --color-bg: #f7DAE7;
    --color-bg-light: rgba(247, 218, 231, 0.6);
    --color-bg-glass: rgba(247, 218, 231, 0.85);
    
    /* Ombres multicouches pour profondeur */
    --shadow-sm: 0 2px 4px rgba(100, 9, 30, 0.08);
    --shadow-md: 0 4px 12px rgba(100, 9, 30, 0.12), 0 2px 4px rgba(100, 9, 30, 0.08);
    --shadow-lg: 0 8px 24px rgba(100, 9, 30, 0.15), 0 4px 8px rgba(100, 9, 30, 0.1);
    --shadow-xl: 0 12px 32px rgba(100, 9, 30, 0.18), 0 6px 12px rgba(100, 9, 30, 0.12);
    --shadow-hover: 0 16px 40px rgba(100, 9, 30, 0.2), 0 8px 16px rgba(100, 9, 30, 0.15);
    
    /* Dégradés subtils */
    --gradient-subtle: linear-gradient(135deg, rgba(247, 218, 231, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    --gradient-radial: radial-gradient(circle at center, rgba(247, 218, 231, 0.4) 0%, rgba(247, 218, 231, 0.1) 100%);
    --gradient-button: linear-gradient(135deg, #64091e 0%, #7a0f2a 100%);
    --gradient-button-hover: linear-gradient(135deg, #7a0f2a 0%, #8f1536 100%);
    
    /* Transitions optimisées pour performance - uniquement propriétés GPU-accelerated */
    --transition-smooth: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    --transition-fast: transform 0.2s ease, opacity 0.2s ease;
}

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

body {
    font-family: 'Belleza', sans-serif;
    background-color: #f7DAE7;
    color: #64091e;
    line-height: 1.6;
}

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

/* Header */
header {
    background-color: #f7DAE7;
    padding: 0;
    box-shadow: 0 2px 5px rgba(100, 9, 30, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    overflow: visible;
    min-height: 50px;
}

.hero {
    position: relative;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 5px 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    height: auto;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    overflow: visible;
}

.logo-container:hover {
    opacity: 0.8;
}

.logo {
    height: 140px;
    width: auto;
    opacity: 0.3;
    object-fit: contain;
}

.logo-text {
    font-family: 'Belleza', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #64091e;
    margin-left: 5px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #64091e;
    border-radius: 3px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

/* Sur mobile, nav est caché par défaut */
@media (max-width: 768px) {
    nav:not(.active) {
        display: none !important;
    }
}

nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

nav a {
    color: #64091e;
    text-decoration: none;
    font-family: 'Belleza', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(100, 9, 30, 0.2);
    transition: opacity 0.3s ease;
    position: relative;
}

nav a:hover {
    opacity: 0.7;
}

nav a.active {
    font-weight: 700;
}

nav a.active::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #64091e;
}

.has-dropdown {
    position: relative;
}

.has-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
    z-index: 999;
}

.dropdown-arrow {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-arrow,
.has-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f7DAE7;
    border: 2px solid #64091e;
    border-radius: 10px;
    padding: 10px 0;
    margin-top: 5px;
    min-width: 250px;
    box-shadow: 0 4px 6px rgba(100, 9, 30, 0.2);
    z-index: 1000;
    list-style: none;
    animation: fadeIn 0.2s ease;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown .dropdown-menu:hover {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #64091e;
    text-decoration: none;
    font-family: 'Belleza', sans-serif;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #e2B4C1;
}

.dropdown-menu a.active {
    background-color: #e2B4C1;
    font-weight: 700;
}

.contact-btn {
    background: var(--gradient-button);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Belleza', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(100, 9, 30, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateZ(0);
    will-change: transform;
}

.contact-btn:hover {
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 6px 16px rgba(100, 9, 30, 0.3);
    background: var(--gradient-button-hover);
}

.contact-btn:active {
    transform: translateY(0) translateZ(0);
    box-shadow: 0 2px 8px rgba(100, 9, 30, 0.25);
}

/* Cacher le bouton mobile sur desktop */
.mobile-contact-btn {
    display: none;
    background: var(--gradient-button);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Belleza', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(100, 9, 30, 0.25);
}

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

.mobile-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(100, 9, 30, 0.35);
    background: var(--gradient-button-hover);
}

.mobile-contact-btn:hover::before {
    left: 100%;
}

/* Hero Section */
.hero {
    padding: 100px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-radial);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(247, 218, 231, 0.6) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(247, 218, 231, 0.4) 0%, transparent 50%);
    opacity: 0.8;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-title-wrapper {
    position: relative;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 {
    font-family: 'Belleza', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #64091e;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 4px 12px rgba(100, 9, 30, 0.15);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
}

.hero-image {
    position: absolute;
    left: -230px;
    top: -30px;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

@media (max-width: 1400px) {
    .hero-image {
        left: -280px;
        max-width: 250px;
    }
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #64091e, transparent);
    opacity: 0.5;
    animation: expandLine 1s ease-out 0.5s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 0.5;
    }
}

.hero-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.6rem;
    color: #64091e;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 0 2px 6px rgba(100, 9, 30, 0.1);
}

.hero-description {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.1rem;
    color: #64091e;
    opacity: 0.9;
    max-width: 800px;
    margin: 40px auto 0;
    line-height: 1.8;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    text-shadow: 0 2px 6px rgba(100, 9, 30, 0.1);
}

.hero-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Espacement après le sous-titre pour la vidéo */
.hero-subtitle + #hero-video-container {
    margin-top: 0;
}

.content-block {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(100, 9, 30, 0.1);
    min-height: 400px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

/* Conteneur vidéo en format paysage 16:9 */
#hero-video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 50px; /* Marge en bas pour espacer du content-block */
    padding: 0;
    padding-bottom: 56.25%; /* Ratio 16:9 (9/16 = 0.5625) - Format paysage */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(100, 9, 30, 0.2);
    box-sizing: border-box;
    display: block !important; /* Forcer l'affichage quand la vidéo est chargée */
    clear: both; /* S'assurer qu'il n'y a pas de flottement */
}

#hero-video-container > div,
#hero-video-container > video,
#hero-video-container > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

#hero-video-container video {
    object-fit: cover;
}

/* Responsive pour le conteneur vidéo - Format paysage maintenu sur mobile */
@media (max-width: 768px) {
    #hero-video-container {
        margin: 30px -20px; /* Marges négatives pour compenser le padding du container parent */
        padding: 0;
        padding-bottom: 56.25%; /* Ratio 16:9 maintenu sur mobile - Format paysage */
        border-radius: 10px;
        width: calc(100% + 40px); /* Largeur totale incluant les marges négatives */
        max-width: calc(100% + 40px);
        box-sizing: border-box;
    }
    
    #hero-video-container > div,
    #hero-video-container > video,
    #hero-video-container > iframe {
        border-radius: 10px;
    }
}

.hero-contact {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Animation pulse désactivée pour performance - trop coûteuse */
/* .hero-contact .contact-btn {
    animation: pulse 2s ease-in-out infinite;
} */

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(100, 9, 30, 0.25);
    }
    50% {
        box-shadow: 0 6px 16px rgba(100, 9, 30, 0.3);
    }
}

/* Optimisation pour réduire la latence - désactiver les animations sur mobile si nécessaire */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Désactiver will-change après l'animation pour libérer les ressources */
.mission-card:not(:hover),
.donation-card:not(:hover),
.atelier-card:not(:hover),
.faq-item:not(:hover),
.participer-card:not(:hover),
.participer-option:not(:hover),
.mission-block:not(:hover) {
    will-change: auto;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #64091e;
    text-align: center;
}

.section p {
    font-size: 1.1rem;
    color: #64091e;
    opacity: 0.9;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Missions Section */
.missions-section {
    position: relative;
    padding: 80px 0;
    background-color: #f7DAE7;
}

.missions-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.missions-title {
    font-size: 3rem;
    font-weight: bold;
    color: #64091e;
    background-color: rgba(247, 218, 231, 0.8);
    padding: 10px 20px;
    border-radius: 5px;
    white-space: nowrap;
}

.missions-description {
    font-size: 1.1rem;
    color: #64091e;
    line-height: 1.6;
    margin: 0;
}

.missions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-card {
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateZ(0);
    will-change: transform;
    border: 1px solid rgba(100, 9, 30, 0.08);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-subtle);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    transform: translateZ(0);
}

.mission-card:hover {
    transform: translateY(-6px) translateZ(0);
    box-shadow: var(--shadow-lg);
}

.mission-card:hover::before {
    opacity: 1;
}

.mission-card > * {
    position: relative;
    z-index: 2;
}

.card-grey {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.card-pink {
    background: linear-gradient(135deg, #f7DAE7 0%, rgba(255, 255, 255, 0.95) 100%);
}

.mission-card-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #64091e;
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(247, 218, 231, 0.8) 0%, rgba(247, 218, 231, 0.5) 100%);
    padding: 10px 18px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(100, 9, 30, 0.1);
    transition: var(--transition-smooth);
    border: 1px solid rgba(100, 9, 30, 0.1);
}

.mission-card:hover .mission-card-title {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(100, 9, 30, 0.15);
}

.mission-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #64091e;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: relative;
    transform: translateZ(0);
    will-change: transform;
}

.mission-link:hover {
    transform: translateX(4px) translateZ(0);
    opacity: 0.9;
}

.arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #f7DAE7 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 50%;
    font-size: 1.2rem;
    color: #64091e;
    box-shadow: 0 2px 8px rgba(100, 9, 30, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(100, 9, 30, 0.1);
    transform: translateZ(0);
    will-change: transform;
}

.mission-link:hover .arrow-circle {
    transform: translateX(4px) scale(1.05) translateZ(0);
    box-shadow: 0 4px 10px rgba(100, 9, 30, 0.2);
}

/* Qui sommes-nous Section */
.qui-sommes-nous-section {
    position: relative;
    padding: 80px 0;
    background-color: #f7DAE7;
}

.qui-sommes-nous-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.qui-sommes-nous-title {
    font-size: 3rem;
    font-weight: bold;
    color: #64091e;
    margin-bottom: 30px;
}

.qui-sommes-nous-description {
    font-size: 1.1rem;
    color: #64091e;
    line-height: 1.8;
    margin: 0;
}

.qui-sommes-nous-image {
    width: 100%;
    height: auto;
}

.qui-sommes-nous-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

/* Origine Section Home */
.origine-section-home {
    position: relative;
    padding: 80px 0;
    background-color: #f7DAE7;
    text-align: center;
}

.origine-title-home {
    font-family: 'Belleza', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #64091e;
    margin: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* Video Testimony Section */
.video-testimony-section {
    position: relative;
    padding: 80px 0;
    background-color: #f7DAE7;
}

#testimony-video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(100, 9, 30, 0.2);
    box-sizing: border-box;
    display: block !important;
}

#testimony-video-container > div,
#testimony-video-container > video,
#testimony-video-container > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.video-testimony-text {
    font-family: 'Belleza', sans-serif;
    font-size: 1.3rem;
    color: #64091e;
    text-align: center;
    font-style: italic;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Nos Missions Section */
.nos-missions-section {
    position: relative;
    padding: 80px 0;
    background-color: #f7DAE7;
}

.nos-missions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nos-missions-title {
    font-size: 3rem;
    font-weight: bold;
    color: #64091e;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nos-missions-description {
    font-size: 1.1rem;
    color: #64091e;
    line-height: 1.8;
    margin: 0;
}

.nos-missions-image {
    width: 100%;
    height: auto;
}

.nos-missions-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

/* Ce que nous faisons Section */
.ce-que-nous-faisons-section {
    position: relative;
    padding: 80px 0;
    background-color: #f7DAE7;
}

.ce-que-nous-faisons-title {
    font-size: 3rem;
    font-weight: bold;
    color: #64091e;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.ce-que-nous-faisons-description {
    font-size: 1.1rem;
    color: #64091e;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

/* Cercle Vertueux Section */
.cercle-vertueux-section {
    position: relative;
    padding: 80px 0;
    background-color: #f7DAE7;
}

.cercle-vertueux-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cercle-vertueux-title {
    font-size: 3rem;
    font-weight: bold;
    color: #64091e;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cercle-vertueux-description {
    font-size: 1.1rem;
    color: #64091e;
    line-height: 1.8;
    margin: 0;
}

.cercle-vertueux-image {
    width: 100%;
    height: auto;
}

.cercle-vertueux-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

/* Donation Section */
.donation-section {
    position: relative;
    padding: 80px 0;
    background-color: #f7DAE7;
}

.donation-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.donation-title {
    font-size: 3rem;
    font-weight: bold;
    color: #64091e;
    white-space: nowrap;
}

.donation-description {
    font-size: 1.1rem;
    color: #64091e;
    line-height: 1.6;
    margin: 0;
}

.donation-frequency {
    display: flex;
    gap: 0;
    justify-content: flex-end;
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.frequency-btn {
    padding: 12px 30px;
    border: none;
    background: linear-gradient(135deg, #f7DAE7 0%, rgba(255, 255, 255, 0.9) 100%);
    color: #64091e;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(100, 9, 30, 0.1);
}

.frequency-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-button);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.frequency-btn span {
    position: relative;
    z-index: 1;
}

.frequency-btn:first-child {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    border-right: 1px solid rgba(100, 9, 30, 0.2);
}

.frequency-btn:last-child {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.frequency-btn.active {
    background: var(--gradient-button);
    color: white;
    box-shadow: 0 4px 12px rgba(100, 9, 30, 0.25);
}

.frequency-btn.active::before {
    opacity: 1;
}

.frequency-btn:hover:not(.active) {
    background: linear-gradient(135deg, #e2B4C1 0%, #f7DAE7 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(100, 9, 30, 0.15);
}

.donation-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.donation-card {
    background: var(--color-bg-glass);
    /* backdrop-filter désactivé pour performance - trop coûteux */
    /* backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); */
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateZ(0);
    will-change: transform;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.donation-card:hover {
    transform: scale(1.03) translateY(-4px) translateZ(0);
    box-shadow: var(--shadow-lg);
}

.donation-card > * {
    position: relative;
    z-index: 1;
}

.donation-amount {
    font-family: 'Belleza', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #64091e;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(100, 9, 30, 0.1);
    transition: var(--transition-smooth);
}

.donation-card:hover .donation-amount {
    transform: scale(1.05);
}

.donate-btn {
    background: linear-gradient(135deg, #f7DAE7 0%, rgba(255, 255, 255, 0.95) 100%);
    color: #64091e;
    border: 2px solid #64091e;
    padding: 14px 28px;
    border-radius: 25px;
    font-family: 'Belleza', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(100, 9, 30, 0.15);
    transform: translateZ(0);
    will-change: transform;
}

.donate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-button);
    transition: left 0.3s ease;
    z-index: 0;
}

.donate-btn:hover {
    color: white;
    border-color: #64091e;
    box-shadow: 0 4px 12px rgba(100, 9, 30, 0.25);
    transform: translateY(-2px) translateZ(0);
}

.donate-btn:hover::before {
    left: 0;
}

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

.faq-title {
    font-size: 3rem;
    font-weight: bold;
    color: #64091e;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.faq-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: linear-gradient(135deg, #f7DAE7 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 2px solid rgba(100, 9, 30, 0.15);
    border-radius: 20px;
    padding: 25px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transform: translateZ(0);
    will-change: transform;
}

.faq-item:hover {
    transform: translateY(-3px) translateZ(0);
    box-shadow: var(--shadow-md);
    border-color: rgba(100, 9, 30, 0.3);
}

.faq-item.active {
    border-color: rgba(100, 9, 30, 0.4);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, rgba(247, 218, 231, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
}

.faq-item > * {
    position: relative;
    z-index: 1;
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.faq-number {
    font-size: 2rem;
    font-weight: bold;
    color: #64091e;
    min-width: 50px;
}

.faq-question {
    flex: 1;
    font-size: 1.2rem;
    font-weight: bold;
    color: #64091e;
    margin: 0;
}

.faq-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-button);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(100, 9, 30, 0.2);
    position: relative;
    transform: translateZ(0);
    will-change: transform;
}

.faq-toggle:hover {
    transform: scale(1.1) translateZ(0);
    box-shadow: 0 4px 12px rgba(100, 9, 30, 0.3);
}

.faq-toggle:active {
    transform: scale(1.05) translateZ(0);
}

.faq-icon {
    line-height: 1;
    font-weight: bold;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
    margin-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 2px solid rgba(100, 9, 30, 0.2);
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translate3d(0, -10px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.faq-answer p {
    color: #64091e;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    color: #64091e;
    font-size: 1rem;
    line-height: 1.8;
    margin: 15px 0;
    padding-left: 25px;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background-color: #f7DAE7;
}

.newsletter-box {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--color-bg-glass);
    /* backdrop-filter désactivé pour performance */
    /* backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); */
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-radial);
    opacity: 0.5;
    z-index: 0;
}

.newsletter-box > * {
    position: relative;
    z-index: 1;
}

.newsletter-image {
    position: absolute;
    bottom: 10px;
    right: 20px;
    max-width: 150px;
    height: auto;
    object-fit: contain;
    z-index: 2;
    opacity: 0.9;
}

.newsletter-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #64091e;
    white-space: nowrap;
}

.newsletter-description {
    font-size: 1.1rem;
    color: #64091e;
    line-height: 1.6;
    margin: 0;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.newsletter-input {
    padding: 15px 20px;
    border: 2px solid #64091e;
    border-radius: 10px;
    background-color: white;
    color: #64091e;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input::placeholder {
    color: #64091e;
    opacity: 0.6;
}

.newsletter-input:focus {
    border-color: #64091e;
    box-shadow: 0 0 0 3px rgba(100, 9, 30, 0.1);
}

.newsletter-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.consent-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #64091e;
    flex-shrink: 0;
}

.newsletter-consent label {
    font-size: 0.95rem;
    color: #64091e;
    line-height: 1.5;
    cursor: pointer;
}

.newsletter-submit {
    background: linear-gradient(135deg, #f7DAE7 0%, rgba(255, 255, 255, 0.95) 100%);
    color: #64091e;
    border: 2px solid #64091e;
    padding: 15px 40px;
    border-radius: 25px;
    font-family: 'Belleza', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    align-self: center;
    min-width: 200px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(100, 9, 30, 0.2);
}

.newsletter-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-button);
    transition: left 0.4s ease;
    z-index: 0;
}

.newsletter-submit:hover {
    color: white;
    border-color: #64091e;
    box-shadow: 0 6px 20px rgba(100, 9, 30, 0.3);
    transform: translateY(-3px);
}

.newsletter-submit:hover::before {
    left: 0;
}

.newsletter-submit:active {
    transform: translateY(-1px);
}

/* À propos Section */
.apropos-section {
    padding: 80px 0;
    background-color: #f7DAE7;
    position: relative;
    overflow: hidden;
}

.apropos-title {
    font-family: 'Belleza', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #64091e;
    text-align: center;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.apropos-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.apropos-content p {
    font-size: 1.1rem;
    color: #64091e;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: left;
}

.apropos-section-block {
    margin: 50px 0;
    padding: 30px 0;
    border-top: 2px solid rgba(100, 9, 30, 0.15);
    position: relative;
    transition: var(--transition-smooth);
}

.apropos-section-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #64091e, #f7DAE7, #64091e);
    transition: width 0.6s ease;
}

.apropos-section-block:hover::before {
    width: 100%;
}

.apropos-section-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.apropos-section-text {
    flex: 1;
}

.apropos-section-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.section-emoji {
    font-size: 5rem;
    opacity: 0.7;
    display: block;
}

.section-emoji-image {
    width: 200px;
    height: auto;
    max-width: 250px;
    opacity: 0.7;
    display: block;
}

.apropos-section-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #64091e;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .apropos-section-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .apropos-section-image {
        justify-content: flex-start;
        min-width: auto;
    }
    
    .section-emoji {
        font-size: 3.5rem;
    }

    .section-emoji-image {
        width: 150px;
        max-width: 200px;
    }
}

.apropos-content ul,
.apropos-content ol {
    color: #64091e;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 20px 0;
    padding-left: 25px;
}

.apropos-content li {
    margin-bottom: 10px;
}

.apropos-intro {
    font-family: 'Belleza', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #64091e;
}

.apropos-highlight {
    font-weight: 600;
    font-size: 1.2rem;
    margin: 40px 0;
    padding: 20px;
    background-color: rgba(247, 218, 231, 0.6);
    border-left: 4px solid #64091e;
    border-radius: 5px;
}

/* Système d'onglets */
.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    border-bottom: 2px solid rgba(100, 9, 30, 0.2);
    padding-bottom: 0;
}

.tab-button {
    background: transparent;
    border: none;
    padding: 15px 30px;
    font-family: 'Belleza', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #64091e;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-button:hover {
    color: #64091e;
    background-color: rgba(247, 218, 231, 0.3);
}

.tab-button.active {
    color: #64091e;
    border-bottom-color: #64091e;
    background-color: rgba(247, 218, 231, 0.2);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .tabs-nav {
        flex-direction: column;
        gap: 5px;
    }
    
    .tab-button {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 1.1rem;
        border-bottom: 2px solid transparent;
        border-left: 3px solid transparent;
        margin-bottom: 0;
    }
    
    .tab-button.active {
        border-left-color: #64091e;
        border-bottom-color: transparent;
    }
}

/* Mission Section - Mise en page en colonnes */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-column {
    display: flex;
    flex-direction: column;
}

.mission-block {
    background: linear-gradient(135deg, #ffffff 0%, rgba(247, 218, 231, 0.2) 100%);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(100, 9, 30, 0.08);
    transform: translateZ(0);
    will-change: transform;
}

.mission-block:hover {
    transform: translateY(-3px) translateZ(0);
    box-shadow: var(--shadow-lg);
}

.mission-block > * {
    position: relative;
    z-index: 1;
}

.mission-section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #64091e;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, rgba(247, 218, 231, 0.8) 0%, rgba(247, 218, 231, 0.5) 100%);
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(100, 9, 30, 0.1);
    transition: var(--transition-smooth);
    border: 1px solid rgba(100, 9, 30, 0.1);
}

.mission-block:hover .mission-section-title {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(100, 9, 30, 0.15);
}

.mission-block p {
    font-size: 1.05rem;
    color: #64091e;
    line-height: 1.8;
    margin-bottom: 15px;
}

.mission-block ul {
    color: #64091e;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 15px 0;
    padding-left: 25px;
}

.mission-list {
    list-style: none;
    padding-left: 0;
}

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

.mission-list li::before {
    content: '🌸';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.mission-block li {
    margin-bottom: 10px;
}

.mission-highlight {
    font-weight: 600;
    font-size: 1.15rem;
    margin: 25px 0;
    padding: 18px;
    background: linear-gradient(135deg, rgba(247, 218, 231, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-left: 4px solid #D38C9D;
    border-radius: 10px;
    color: #64091e;
    box-shadow: 0 2px 8px rgba(100, 9, 30, 0.1);
    transition: var(--transition-smooth);
}

.mission-block:hover .mission-highlight {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(100, 9, 30, 0.15);
}

@media (max-width: 968px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-block {
        padding: 25px;
    }
    
    .mission-section-title {
        font-size: 1.3rem;
    }
}

/* Participer Detail Section */
.participer-detail-section {
    padding: 80px 0;
    background-color: #f7DAE7;
}

.participer-detail-title {
    font-family: 'Belleza', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #64091e;
    text-align: center;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.participer-detail-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.participer-detail-content p {
    font-size: 1.1rem;
    color: #64091e;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: left;
}

.participer-detail-content h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #64091e;
    margin: 40px 0 20px;
}

.participer-detail-content ul {
    color: #64091e;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 20px 0;
    padding-left: 25px;
}

.participer-detail-content li {
    margin-bottom: 10px;
}

/* Atelier Detail Section */
.atelier-detail-section {
    padding: 80px 0;
    background-color: #f7DAE7;
    position: relative;
}

.atelier-title-with-image {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.atelier-title-image {
    width: 273px;
    height: 273px;
    object-fit: cover;
    flex-shrink: 0;
}

.atelier-title-wrapper {
    flex: 1;
}

.atelier-detail-title {
    font-size: 2rem;
    font-weight: bold;
    color: #64091e;
    text-align: left;
    margin-bottom: 20px;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.atelier-detail-subtitle {
    font-family: 'Belleza', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #64091e;
    text-align: left;
    margin-bottom: 0;
    padding: 0;
}

.atelier-detail-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.atelier-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.atelier-text-column {
    text-align: left;
}

.atelier-images-column {
    position: relative;
}

.atelier-detail-content .atelier-detail-quote-large {
    display: inline-block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.atelier-detail-content p {
    font-size: 1.1rem;
    color: #64091e;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: left;
}

.atelier-detail-content p.atelier-detail-quote-large {
    text-align: center;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 60px auto;
    padding: 0 20px;
}

.atelier-detail-content ul {
    color: #64091e;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 20px 0;
    padding-left: 25px;
}

.atelier-detail-content li {
    margin-bottom: 10px;
}

.atelier-images-grid {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 0;
    margin-top: -150px;
    margin-bottom: -300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.atelier-image {
    position: absolute;
    width: 273px;
    height: 273px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.atelier-image:nth-child(1) {
    right: 0;
    top: -450px;
}

.atelier-image:nth-child(2) {
    right: 0;
    top: -100px;
}

.atelier-image:nth-child(3) {
    left: 0;
    bottom: 0;
}

/* Positionner une seule image en haut à droite */
.atelier-images-grid:has(.atelier-image:only-child) {
    height: auto;
    min-height: 300px;
}

.atelier-images-grid:has(.atelier-image:only-child) .atelier-image {
    position: absolute;
    right: 0;
    top: -150px;
    left: auto;
    bottom: auto;
    margin: 0;
}

.atelier-image:hover {
    transform: translateY(-5px);
}

.atelier-image:nth-child(2):hover {
    transform: translateY(-5px);
}

.atelier-detail-content h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #64091e;
    margin: 40px 0 20px;
    text-transform: none;
    letter-spacing: normal;
}

.atelier-detail-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #64091e;
    margin: 30px 0 15px;
    text-transform: none;
    letter-spacing: normal;
}

.atelier-detail-content .form-group {
    margin-bottom: 25px;
}

.atelier-detail-content .form-group label {
    display: block;
    font-weight: 600;
    color: #64091e;
    margin-bottom: 8px;
    font-size: 1rem;
}

.atelier-detail-content .form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.atelier-detail-highlight {
    font-weight: 600;
    font-size: 1.2rem;
    margin: 40px 0;
    padding: 20px;
    background-color: rgba(247, 218, 231, 0.6);
    border-left: 4px solid #64091e;
    border-radius: 5px;
    font-style: italic;
}

.atelier-detail-points {
    margin: 40px 0;
}

.atelier-detail-points p {
    font-size: 1.1rem;
    color: #64091e;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.atelier-detail-points p::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #64091e;
    font-weight: bold;
}

.atelier-point-with-image {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.atelier-point-with-image::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: #64091e;
    font-weight: bold;
}

.atelier-point-with-image p {
    flex: 1;
    margin-bottom: 0;
    padding-left: 0;
    margin-top: 0;
    padding-top: 0;
}

.atelier-point-with-image p::before {
    display: none;
}

.atelier-image-inline {
    flex-shrink: 0;
    margin-top: -250px;
    padding-top: 0;
    align-self: flex-start;
    position: relative;
    top: -50px;
}

.atelier-image-inline .atelier-image {
    width: 273px;
    height: 273px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .atelier-point-with-image {
        flex-direction: column;
        gap: 20px;
    }
    
    .atelier-image-inline .atelier-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 0 auto;
    }
}

.atelier-detail-closing {
    font-family: 'Belleza', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-top: 50px;
    color: #64091e;
}

.atelier-detail-quote {
    font-family: 'Belleza', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-top: 50px;
    color: #64091e;
    font-style: italic;
    padding: 20px;
    background-color: rgba(247, 218, 231, 0.6);
    border-radius: 10px;
}

.atelier-detail-quote-large {
    font-family: 'Belleza', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    text-align: center;
    margin: 0 auto 60px auto;
    color: #64091e;
    font-style: italic;
    padding: 3px;
    background-color: white;
    border-radius: 15px;
    line-height: 1.4;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(100, 9, 30, 0.15);
    border: 2px solid #D38C9D;
    width: auto;
    max-width: 90%;
}

/* Atelier CTA Styles */
.atelier-cta-container {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(247, 218, 231, 0.6) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(100, 9, 30, 0.15);
}

.atelier-cta-text {
    font-family: 'Belleza', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #64091e;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.atelier-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    border-radius: 25px;
    font-family: 'Belleza', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transform: translateZ(0);
    will-change: transform;
    min-width: 200px;
}

.atelier-cta-btn.primary {
    background: var(--gradient-button);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.atelier-cta-btn.primary:hover {
    transform: translateY(-3px) translateZ(0);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-button-hover);
}

.atelier-cta-btn.secondary {
    background: linear-gradient(135deg, #f7DAE7 0%, rgba(255, 255, 255, 0.95) 100%);
    color: #64091e;
    border: 2px solid #64091e;
}

.atelier-cta-btn.secondary:hover {
    transform: translateY(-3px) translateZ(0);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #e2B4C1 0%, #f7DAE7 100%);
}

.atelier-cta-btn:active {
    transform: translateY(-1px) translateZ(0);
}

@media (max-width: 768px) {
    .atelier-cta-container {
        padding: 30px 15px;
        margin-top: 40px;
    }
    
    .atelier-cta-text {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
    
    .atelier-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .atelier-cta-btn {
        width: 100%;
        min-width: auto;
        font-size: 1.1rem;
        padding: 14px 30px;
    }
}

/* Floral Banner Styles */
.floral-banner-top,
.floral-banner-bottom {
    width: 100%;
    text-align: center;
    margin: 0 auto 40px;
    max-width: 1200px;
    padding: 0 20px;
}

.floral-banner-top {
    position: absolute;
    bottom: 20px;
    right: 20px;
    text-align: right;
    margin: 0;
    padding: 0;
    width: auto;
    max-width: none;
    z-index: 1;
}

.floral-banner-bottom {
    margin-top: 60px;
    margin-bottom: 40px;
}

.floral-banner-top img {
    width: auto;
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0;
}

.floral-banner-bottom img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Maternité title with decorative images */
.atelier-title-with-image .maternite-decorative-images {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
    align-items: center;
}

.atelier-title-with-image .maternite-decorative-images img {
    max-width: 150px;
    height: auto;
}

/* Maternité Decorative Images */
.maternite-decorative-images {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 40px auto;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    padding: 0 20px;
}

.maternite-decorative-image {
    flex: 0 0 auto;
    max-width: 200px;
    height: auto;
}

/* Maternité Content Image */
.maternite-content-image {
    text-align: center;
    margin: 40px 0;
    max-width: 100%;
}

.maternite-content-image img {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Maternité Separation Image */
.maternite-separation-image {
    text-align: center;
    margin: 30px 0;
    max-width: 100%;
}

.maternite-separation-image img {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.maternite-separation-image.opacity-low img {
    opacity: 0.6;
}

.maternite-separation-image.opacity-medium img {
    opacity: 0.8;
}

/* Maternité Text Image Layout */
.maternite-text-image-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
    max-width: 100%;
    flex-wrap: wrap;
}

.maternite-text-image-layout .text-content {
    flex: 1;
    min-width: 300px;
}

.maternite-text-image-layout .image-content {
    flex: 0 0 auto;
    text-align: right;
}

.maternite-text-image-layout .image-content img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .maternite-decorative-images {
        flex-direction: column;
        gap: 20px;
    }
    
    .maternite-text-image-layout {
        flex-direction: column;
        gap: 30px;
    }
    
    .maternite-text-image-layout .image-content {
        text-align: center;
    }
}

/* Atelier CTA Styles */
.atelier-cta-container {
    margin-top: 80px;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(247, 218, 231, 0.6) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(100, 9, 30, 0.15);
    position: relative;
    overflow: hidden;
}

.atelier-cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-radial);
    opacity: 0.3;
    z-index: 0;
}

.atelier-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.atelier-cta-title {
    font-family: 'Belleza', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #64091e;
    margin-bottom: 20px;
    text-align: center;
}

.atelier-cta-description {
    font-size: 1.2rem;
    color: #64091e;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
    opacity: 0.9;
}

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

.atelier-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    border-radius: 25px;
    font-family: 'Belleza', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(100, 9, 30, 0.2);
    transform: translateZ(0);
    will-change: transform;
    min-width: 200px;
}

.atelier-cta-btn.primary {
    background: var(--gradient-button);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.atelier-cta-btn.primary:hover {
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 6px 20px rgba(100, 9, 30, 0.3);
    background: var(--gradient-button-hover);
}

.atelier-cta-btn.secondary {
    background: linear-gradient(135deg, #ffffff 0%, rgba(247, 218, 231, 0.9) 100%);
    color: #64091e;
    border: 2px solid #64091e;
}

.atelier-cta-btn.secondary:hover {
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 6px 20px rgba(100, 9, 30, 0.25);
    background: linear-gradient(135deg, rgba(247, 218, 231, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
}

.atelier-cta-btn:active {
    transform: translateY(-1px) translateZ(0);
}

@media (max-width: 768px) {
    .atelier-cta-container {
        margin-top: 60px;
        padding: 40px 20px;
    }

    .atelier-cta-title {
        font-size: 2rem;
    }

    .atelier-cta-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .atelier-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .atelier-cta-btn {
        width: 100%;
        font-size: 1.1rem;
        padding: 14px 30px;
    }
}

/* Blog Section Styles */
.blog-section {
    padding: 80px 20px;
    background-color: #f7DAE7;
    min-height: 60vh;
    position: relative;
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 20px;
    background-color: #f7DAE7;
    min-height: 70vh;
    position: relative;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #64091e;
    text-align: center;
    margin-bottom: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-subtitle {
    font-family: 'Belleza', sans-serif;
    font-size: 1.8rem;
    color: #64091e;
    text-align: center;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(100, 9, 30, 0.1);
    margin-bottom: 40px;
    text-align: center;
}

.contact-info p {
    font-size: 1.1rem;
    color: #64091e;
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(100, 9, 30, 0.1);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e8d5e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    color: #64091e;
    transition: border-color 0.3s;
    box-sizing: border-box;
    background-color: white;
}

.contact-form select:focus {
    outline: none;
    border-color: #64091e;
}

.contact-submit-btn {
    background-color: #64091e;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    width: 100%;
    margin-top: 20px;
    font-family: 'Belleza', sans-serif;
}

.contact-submit-btn:hover {
    background-color: #D38C9D;
    transform: translateY(-2px);
}

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

@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1.5rem;
    }

    .contact-info {
        padding: 20px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .contact-submit-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

.blog-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #64091e;
    text-align: center;
    margin-bottom: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blog-subtitle {
    font-family: 'Belleza', sans-serif;
    font-size: 1.8rem;
    color: #64091e;
    text-align: center;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.blog-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #64091e;
    margin-bottom: 40px;
    text-align: center;
}

.blog-placeholder {
    text-align: center;
    color: #64091e;
    font-style: italic;
    padding: 40px 20px;
    background-color: #e2B4C1;
    border-radius: 10px;
}

/* Blog Article Styles */
.blog-article {
    background-color: white;
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(100, 9, 30, 0.1);
    margin-bottom: 40px;
}

.blog-article-content {
    color: #64091e;
    line-height: 1.9;
    font-size: 1.1rem;
}

.blog-article-content p {
    margin-bottom: 1.2em;
    text-align: left;
}

.blog-article-content p:first-child {
    font-size: 1.2rem;
    font-weight: 500;
}

.blog-article-content h2 {
    font-size: 1.6rem;
    font-weight: bold;
    color: #64091e;
    margin-top: 2em;
    margin-bottom: 1em;
    text-transform: none;
    letter-spacing: normal;
}

.blog-article-content strong {
    font-weight: 600;
    color: #64091e;
}

.blog-article-signature {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 2em;
    font-style: italic;
}

@media (max-width: 768px) {
    .blog-article {
        padding: 30px 20px;
    }
    
    .blog-article-content {
        font-size: 1rem;
    }
    
    .blog-article-content h2 {
        font-size: 1.4rem;
    }
    
    .blog-article-content p:first-child {
        font-size: 1.1rem;
    }
    
    .blog-article-signature {
        font-size: 1.1rem;
    }
}

/* Blog Form Styles */
.blog-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(100, 9, 30, 0.1);
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #64091e;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e8d5e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    color: #64091e;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #64091e;
}

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

.form-hint {
    display: block;
    margin-top: 5px;
    font-size: 0.9rem;
    color: #64091e;
    opacity: 0.7;
    font-style: italic;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 4px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.checkbox-label span {
    line-height: 1.6;
    color: #64091e;
}

/* Toggle Switch Styles */
.toggle-label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
    position: relative;
    padding-left: 60px;
    min-height: 30px;
}

.toggle-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 26px;
    background-color: #ccc;
    border-radius: 26px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.toggle-slider:before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.toggle-input:checked + .toggle-slider {
    background-color: #64091e;
}

.toggle-input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.toggle-input:focus + .toggle-slider {
    box-shadow: 0 0 0 3px rgba(100, 9, 30, 0.2);
}

.toggle-text {
    line-height: 1.6;
    color: #64091e;
    margin-left: 15px;
    flex: 1;
}

.blog-submit-btn {
    background-color: #64091e;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    width: 100%;
    margin-top: 20px;
}

.blog-submit-btn:hover {
    background-color: #D38C9D;
    transform: translateY(-2px);
}

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

@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
    }

    .blog-subtitle {
        font-size: 1.5rem;
    }

    .blog-intro {
        font-size: 1.1rem;
    }

    .blog-form {
        padding: 25px 20px;
    }

    .blog-submit-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .toggle-label {
        padding-left: 55px;
        min-height: 28px;
    }

    .toggle-slider {
        width: 45px;
        height: 24px;
    }

    .toggle-slider:before {
        height: 18px;
        width: 18px;
    }

    .toggle-input:checked + .toggle-slider:before {
        transform: translateX(21px);
    }

    .toggle-text {
        font-size: 0.95rem;
        margin-left: 10px;
    }

    .atelier-detail-quote-large {
        font-size: 2.2rem;
        padding: 3px;
        margin: 60px auto 40px auto;
        max-width: 95%;
    }

    .atelier-detail-content h2 {
        font-size: 1.5rem;
        margin: 30px 0 15px;
    }

    .atelier-detail-content h3 {
        font-size: 1.3rem;
        margin: 25px 0 12px;
    }

    .atelier-detail-content > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .atelier-detail-content > div[style*="grid-template-columns: repeat(3"] {
        grid-template-columns: 1fr !important;
    }

    .atelier-images-grid {
        height: auto;
        position: relative;
        min-height: 800px;
    }

    .atelier-image {
        position: relative;
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 0 auto 20px;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
    }

    .atelier-image:nth-child(1) {
        position: relative;
    }

    .atelier-image:nth-child(2) {
        position: relative;
        transform: none;
    }

    .atelier-image:nth-child(3) {
        position: relative;
    }

    .atelier-image:hover {
        transform: translateY(-5px);
    }

    .atelier-image:nth-child(2):hover {
        transform: translateY(-5px);
    }

    .atelier-title-with-image {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .atelier-title-image {
        width: 200px;
        height: 200px;
    }

    .atelier-title-wrapper {
        width: 100%;
    }

    .atelier-detail-title {
        text-align: center;
        font-size: 1.8rem;
    }

    .atelier-detail-subtitle {
        text-align: center;
        font-size: 1.5rem;
    }
}

/* Paiement Section Styles */
.paiement-section {
    padding: 80px 20px;
    background-color: #f7DAE7;
    min-height: 70vh;
    position: relative;
}

.paiement-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #64091e;
    text-align: center;
    margin-bottom: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.paiement-subtitle {
    font-family: 'Belleza', sans-serif;
    font-size: 1.8rem;
    color: #64091e;
    text-align: center;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.paiement-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.coming-soon-box {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(100, 9, 30, 0.12);
    text-align: center;
}

.coming-soon-text {
    font-size: 1.1rem;
    color: #64091e;
    line-height: 1.8;
    margin-bottom: 30px;
}

.coming-soon-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.coming-soon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Belleza', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.coming-soon-btn.primary {
    background: linear-gradient(135deg, #64091e 0%, #8c1f3c 100%);
    color: white;
    box-shadow: 0 6px 18px rgba(100, 9, 30, 0.25);
    border: 1px solid #64091e;
}

.coming-soon-btn.secondary {
    background: white;
    color: #64091e;
    border: 2px solid #64091e;
}

.coming-soon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(100, 9, 30, 0.25);
}

.coming-soon-btn.secondary:hover {
    background: rgba(100, 9, 30, 0.08);
}

@media (max-width: 600px) {
    .coming-soon-box {
        padding: 28px 22px;
    }

    .coming-soon-btn {
        width: 100%;
    }
}

.donation-summary {
    background-color: white;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(100, 9, 30, 0.1);
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.summary-label {
    font-size: 0.9rem;
    color: #64091e;
    opacity: 0.7;
}

.summary-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #64091e;
}

.paiement-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(100, 9, 30, 0.1);
}

.form-section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #64091e;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(100, 9, 30, 0.2);
}

.form-section-title:first-child {
    margin-top: 0;
}

.montant-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.montant-btn {
    padding: 12px 25px;
    border: 2px solid #64091e;
    background-color: white;
    color: #64091e;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
    font-family: 'Belleza', sans-serif;
}

.montant-btn:hover {
    background-color: #e2B4C1;
}

.montant-btn.active {
    background-color: #64091e;
    color: white;
}

.montant-options input[type="number"] {
    flex: 1;
    min-width: 150px;
    padding: 12px;
    border: 2px solid #e8d5e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    color: #64091e;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.montant-options input[type="number"]:focus {
    outline: none;
    border-color: #64091e;
}

.frequency-options {
    display: flex;
    gap: 20px;
}

.frequency-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 15px;
    border: 2px solid #e8d5e0;
    border-radius: 5px;
    transition: all 0.3s;
}

.frequency-option:hover {
    border-color: #64091e;
    background-color: #e2B4C1;
}

.frequency-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.frequency-option input[type="radio"]:checked + span {
    font-weight: 600;
    color: #64091e;
}

.frequency-option:has(input[type="radio"]:checked) {
    border-color: #64091e;
    background-color: #e2B4C1;
}

.paiement-submit-btn {
    background-color: #64091e;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    width: 100%;
    margin-top: 20px;
    font-family: 'Belleza', sans-serif;
}

.paiement-submit-btn:hover {
    background-color: #D38C9D;
    transform: translateY(-2px);
}

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

@media (max-width: 768px) {
    .paiement-title {
        font-size: 2rem;
    }

    .paiement-subtitle {
        font-size: 1.5rem;
    }

    .donation-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .paiement-form {
        padding: 25px 20px;
    }

    .montant-options {
        flex-direction: column;
    }

    .montant-options input[type="number"] {
        width: 100%;
    }

    .frequency-options {
        flex-direction: column;
    }

    .paiement-submit-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Participer CTA Section Styles */
.participer-cta-section {
    padding: 80px 20px;
    background-color: white;
    position: relative;
}

.participer-cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #64091e;
    text-align: center;
    margin-bottom: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.participer-cta-description {
    font-size: 1.1rem;
    color: #64091e;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    line-height: 1.8;
}

.participer-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f7DAE7;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(100, 9, 30, 0.1);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.checkbox-group .checkbox-label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.checkbox-group .checkbox-label:hover {
    background-color: #e2B4C1;
}

.checkbox-group .checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group .checkbox-label span {
    line-height: 1.6;
    color: #64091e;
}

.participer-submit-btn {
    background-color: #64091e;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    width: 100%;
    margin-top: 20px;
    font-family: 'Belleza', sans-serif;
}

.participer-submit-btn:hover {
    background-color: #D38C9D;
    transform: translateY(-2px);
}

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

@media (max-width: 768px) {
    .participer-cta-title {
        font-size: 2rem;
    }

    .participer-cta-description {
        font-size: 1rem;
    }

    .participer-form {
        padding: 25px 20px;
    }

    .participer-submit-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* SVG Decorative Elements */
.svg-decoration {
    position: absolute;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    max-width: 300px;
    max-height: 300px;
    width: auto;
    height: auto;
}

.svg-decoration-large {
    max-width: 500px;
    max-height: 500px;
    opacity: 0.1;
}

.svg-decoration-small {
    max-width: 150px;
    max-height: 150px;
    opacity: 0.2;
}

.svg-container {
    position: relative;
    overflow: hidden;
}

.svg-container > *:not(.svg-decoration) {
    position: relative;
    z-index: 1;
}

.svg-top-left {
    top: 0;
    left: 0;
    transform: translate(-30%, -30%);
}

.svg-top-right {
    top: 0;
    right: 0;
    transform: translate(30%, -30%);
}

.svg-bottom-left {
    bottom: 0;
    left: 0;
    transform: translate(-30%, 30%);
}

.svg-bottom-right {
    bottom: 0;
    right: 0;
    transform: translate(30%, 30%);
}

.svg-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes float {
    0%, 100% {
        transform: translate(-30%, -30%) translateY(0px);
    }
    50% {
        transform: translate(-30%, -30%) translateY(-20px);
    }
}

.svg-top-left.svg-animated {
    animation: float 6s ease-in-out infinite;
}

@keyframes float-top-right {
    0%, 100% {
        transform: translate(30%, -30%) translateY(0px);
    }
    50% {
        transform: translate(30%, -30%) translateY(-20px);
    }
}

.svg-top-right.svg-animated {
    animation: float-top-right 6s ease-in-out infinite;
}

@keyframes float-bottom-left {
    0%, 100% {
        transform: translate(-30%, 30%) translateY(0px);
    }
    50% {
        transform: translate(-30%, 30%) translateY(-20px);
    }
}

.svg-bottom-left.svg-animated {
    animation: float-bottom-left 6s ease-in-out infinite;
}

@keyframes float-bottom-right {
    0%, 100% {
        transform: translate(30%, 30%) translateY(0px);
    }
    50% {
        transform: translate(30%, 30%) translateY(-20px);
    }
}

.svg-bottom-right.svg-animated {
    animation: float-bottom-right 6s ease-in-out infinite;
}

@media (max-width: 768px) {
    .svg-decoration {
        max-width: 150px;
        max-height: 150px;
        opacity: 0.1;
    }

    .svg-decoration-large {
        max-width: 200px;
        max-height: 200px;
    }

    .svg-decoration-small {
        max-width: 100px;
        max-height: 100px;
    }
}

.apropos-signature {
    font-family: 'Belleza', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-top: 50px;
    color: #64091e;
}

/* Page L'origine à Binatna */
.origine-section {
    padding: 80px 0;
    background-color: #f7DAE7;
    position: relative;
    overflow: hidden;
    perspective: 1200px;
}

.origine-title {
    font-family: 'Belleza', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #64091e;
    text-align: center;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.origine-letter-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    min-height: 600px;
}

/* Styles pour la lettre dans l'onglet */
.tab-content .origine-letter-container {
    margin-top: 20px;
}

/* Enveloppe */
.letter-envelope {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 280px;
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d5c4 100%);
    border: 3px solid #d4b8a0;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(100, 9, 30, 0.3);
    z-index: 10;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-style: preserve-3d;
}

.envelope-flap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(135deg, #f0dcc0 0%, #e0c9b0 100%);
    border-radius: 5px 5px 0 0;
    transform-origin: top;
    transition: transform 0.8s ease;
    box-shadow: 0 -2px 10px rgba(100, 9, 30, 0.2);
    z-index: 2;
}

.letter-envelope.envelope-open {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
}

.letter-envelope.envelope-open .envelope-flap {
    transform: rotateX(-180deg);
}

/* Lettre fermée */
.origine-letter-content.letter-closed {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(90deg) scale(0.8);
    opacity: 0;
    transform-style: preserve-3d;
    transform-origin: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

/* Lettre en train de s'ouvrir */
.origine-letter-content.letter-opening {
    position: relative;
    top: auto;
    left: auto;
    transform: translate(0, 0) rotateY(0deg) scale(1);
    opacity: 1;
    animation: letterUnfold 1.5s ease forwards;
}

/* Lettre ouverte */
.origine-letter-content.letter-opened {
    position: relative;
    top: auto;
    left: auto;
    transform: translate(0, 0) rotateY(0deg) scale(1);
    opacity: 1;
}

@keyframes letterUnfold {
    0% {
        transform: translate(-50%, -50%) rotateY(90deg) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) rotateY(0deg) scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: translate(0, 0) rotateY(0deg) scale(1);
        opacity: 1;
    }
}

.origine-letter-content {
    background-color: #fffef8;
    border: 2px solid #e8d5e0;
    border-radius: 10px;
    padding: 50px 40px;
    box-shadow: 0 4px 15px rgba(100, 9, 30, 0.1);
    position: relative;
}

.origine-letter-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            transparent,
            transparent 31px,
            rgba(100, 9, 30, 0.03) 31px,
            rgba(100, 9, 30, 0.03) 32px
        );
    pointer-events: none;
    border-radius: 10px;
}

.letter-text {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    line-height: 2.2;
    color: #64091e;
    position: relative;
    z-index: 1;
    max-width: 100%;
    transition: opacity 1s ease, transform 1s ease;
}

.letter-text-hidden {
    opacity: 0;
    transform: translateY(20px);
}

.letter-text-visible {
    opacity: 1;
    transform: translateY(0);
    animation: textReveal 1.5s ease forwards;
}

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

.letter-text p {
    margin-bottom: 0.8em;
    text-align: left;
    opacity: 0;
}

.letter-text-visible p {
    animation: fadeInText 0.8s ease forwards;
}

.letter-text-visible p:nth-child(1) { animation-delay: 0.1s; }
.letter-text-visible p:nth-child(2) { animation-delay: 0.15s; }
.letter-text-visible p:nth-child(3) { animation-delay: 0.2s; }
.letter-text-visible p:nth-child(4) { animation-delay: 0.25s; }
.letter-text-visible p:nth-child(5) { animation-delay: 0.3s; }
.letter-text-visible p:nth-child(6) { animation-delay: 0.35s; }
.letter-text-visible p:nth-child(7) { animation-delay: 0.4s; }
.letter-text-visible p:nth-child(8) { animation-delay: 0.45s; }
.letter-text-visible p:nth-child(9) { animation-delay: 0.5s; }
.letter-text-visible p:nth-child(10) { animation-delay: 0.55s; }
.letter-text-visible p:nth-child(11) { animation-delay: 0.6s; }
.letter-text-visible p:nth-child(12) { animation-delay: 0.65s; }
.letter-text-visible p:nth-child(13) { animation-delay: 0.7s; }
.letter-text-visible p:nth-child(14) { animation-delay: 0.75s; }
.letter-text-visible p:nth-child(15) { animation-delay: 0.8s; }
.letter-text-visible p:nth-child(16) { animation-delay: 0.85s; }
.letter-text-visible p:nth-child(17) { animation-delay: 0.9s; }
.letter-text-visible p:nth-child(18) { animation-delay: 0.95s; }
.letter-text-visible p:nth-child(19) { animation-delay: 1.0s; }
.letter-text-visible p:nth-child(20) { animation-delay: 1.05s; }
.letter-text-visible p:nth-child(21) { animation-delay: 1.1s; }
.letter-text-visible p:nth-child(22) { animation-delay: 1.15s; }
.letter-text-visible p:nth-child(23) { animation-delay: 1.2s; }
.letter-text-visible p:nth-child(24) { animation-delay: 1.25s; }
.letter-text-visible p:nth-child(25) { animation-delay: 1.3s; }
.letter-text-visible p:nth-child(26) { animation-delay: 1.35s; }
.letter-text-visible p:nth-child(27) { animation-delay: 1.4s; }
.letter-text-visible p:nth-child(28) { animation-delay: 1.45s; }
.letter-text-visible p:nth-child(29) { animation-delay: 1.5s; }
.letter-text-visible p:nth-child(30) { animation-delay: 1.55s; }
.letter-text-visible p:nth-child(31) { animation-delay: 1.6s; }
.letter-text-visible p:nth-child(32) { animation-delay: 1.65s; }
.letter-text-visible p:nth-child(33) { animation-delay: 1.7s; }
.letter-text-visible p:nth-child(34) { animation-delay: 1.75s; }
.letter-text-visible p:nth-child(35) { animation-delay: 1.8s; }
.letter-text-visible p:nth-child(36) { animation-delay: 1.85s; }
.letter-text-visible p:nth-child(37) { animation-delay: 1.9s; }
.letter-text-visible p:nth-child(38) { animation-delay: 1.95s; }
.letter-text-visible p:nth-child(39) { animation-delay: 2.0s; }
.letter-text-visible p:nth-child(40) { animation-delay: 2.05s; }
.letter-text-visible p:nth-child(n+41) { animation-delay: 2.1s; }

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.letter-text p:first-child {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1.2em;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .origine-title {
        font-size: 2.5rem;
    }
    
    .origine-letter-container {
        min-height: 400px;
    }
    
    .letter-envelope {
        width: 300px;
        height: 210px;
    }
    
    .origine-letter-content {
        padding: 30px 20px;
    }
    
    .letter-text {
        font-size: 1.3rem;
        line-height: 2;
    }
    
    .letter-text p:first-child {
        font-size: 1.5rem;
    }
}

/* Nos Ateliers Section */
.nos-ateliers-section {
    padding: 80px 0;
    background-color: #f7DAE7;
    text-align: center;
}

.nos-ateliers-title {
    font-family: 'Belleza', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #64091e;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.nos-ateliers-description {
    font-size: 1.2rem;
    color: #64091e;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 30px;
}

.nos-ateliers-subtitle {
    font-size: 1rem;
    color: #64091e;
    opacity: 0.7;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 50px;
}

.story-circles {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.story-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    box-shadow: 0 4px 8px rgba(100, 9, 30, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.story-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(100, 9, 30, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.8);
}

.story-circle-inner {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: white;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background-color: #f7DAE7;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.video-modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #64091e;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: opacity 0.3s ease;
}

.video-modal-close:hover {
    opacity: 0.7;
}

.video-container {
    width: 100%;
    max-width: 800px;
}

.video-container video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

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

/* Ateliers Section */
.ateliers-section {
    padding: 80px 0;
    background-color: #f7DAE7;
}

.ateliers-title {
    font-family: 'Belleza', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #64091e;
    text-align: center;
    margin-bottom: 60px;
}

.ateliers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.atelier-card {
    background: linear-gradient(135deg, #ffffff 0%, rgba(247, 218, 231, 0.3) 100%);
    border: 2px solid rgba(100, 9, 30, 0.2);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transform: translateZ(0);
    will-change: transform;
}

.atelier-card:hover {
    transform: translateY(-6px) translateZ(0);
    box-shadow: var(--shadow-lg);
    border-color: rgba(100, 9, 30, 0.4);
}

.atelier-card > * {
    position: relative;
    z-index: 1;
}

.atelier-card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #64091e;
    margin-bottom: 20px;
}

.atelier-card-description {
    font-size: 1rem;
    color: #64091e;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.atelier-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #64091e;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    position: relative;
}

.atelier-link::before {
    content: '';
    position: absolute;
    left: -8px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #64091e, transparent);
    transition: width 0.4s ease;
}

.atelier-link:hover {
    transform: translateX(6px);
    opacity: 0.9;
}

.atelier-link:hover::before {
    width: calc(100% + 16px);
}

/* Participer Section */
.participer-section {
    padding: 80px 0;
    background-color: #f7DAE7;
}

.participer-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.participer-main-title {
    font-family: 'Belleza', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #64091e;
    text-align: center;
    margin-bottom: 30px;
}

.participer-intro {
    font-size: 1.2rem;
    color: #64091e;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.participer-option {
    background: linear-gradient(135deg, #ffffff 0%, rgba(247, 218, 231, 0.2) 100%);
    border: 2px solid rgba(100, 9, 30, 0.2);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: var(--shadow-sm);
    transform: translateZ(0);
    will-change: transform;
}

.participer-option:hover {
    transform: translateY(-3px) translateZ(0);
    box-shadow: var(--shadow-md);
    border-color: rgba(100, 9, 30, 0.3);
}

.participer-option > * {
    position: relative;
    z-index: 1;
}

.participer-option-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #64091e;
    margin-bottom: 20px;
}

.participer-option p {
    font-size: 1.1rem;
    color: #64091e;
    line-height: 1.8;
    margin-bottom: 15px;
}

.participer-option ul {
    color: #64091e;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 15px 0;
    padding-left: 25px;
}

.participer-option li {
    margin-bottom: 10px;
}

.participer-option strong {
    font-weight: 600;
}

.participer-quotes {
    background: linear-gradient(135deg, rgba(247, 218, 231, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(100, 9, 30, 0.1);
    position: relative;
    overflow: hidden;
}

.participer-quotes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-radial);
    opacity: 0.3;
    z-index: 0;
}

.participer-quotes > * {
    position: relative;
    z-index: 1;
}

.participer-quote {
    font-size: 1.2rem;
    color: #64091e;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.participer-dons {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.participer-dons li {
    font-size: 1.1rem;
    color: #64091e;
    line-height: 1.8;
    margin-bottom: 10px;
}

.participer-cards-section {
    margin: 50px 0;
}

.participer-cards-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #64091e;
    text-align: center;
    margin-bottom: 30px;
}

.participer-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.participer-card {
    background: linear-gradient(135deg, #ffffff 0%, rgba(247, 218, 231, 0.3) 100%);
    border: 2px solid rgba(100, 9, 30, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transform: translateZ(0);
    will-change: transform;
}

.participer-card:hover {
    transform: translateY(-5px) translateZ(0);
    box-shadow: var(--shadow-md);
    border-color: rgba(100, 9, 30, 0.4);
}

.participer-card > * {
    position: relative;
    z-index: 1;
}

.participer-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #64091e;
    margin: 0;
}

.participer-closing {
    font-family: 'Belleza', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #64091e;
    text-align: center;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 50px;
}

.participer-cta {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.participer-cta-btn {
    background-color: #64091e;
    color: white;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Belleza', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    display: inline-block;
}

.participer-cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(100, 9, 30, 0.3);
}

/* Footer */
footer {
    background-color: #f7DAE7;
    padding: 50px 0 30px;
    border-top: 1px solid rgba(100, 9, 30, 0.1);
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.footer-logo a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-logo a:hover {
    opacity: 0.8;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    opacity: 0.8;
    object-fit: contain;
}

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

.footer-links p {
    color: #64091e;
    opacity: 0.8;
    margin: 0;
    font-size: 0.95rem;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: #64091e;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-legal-links a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.footer-legal-links span {
    color: #64091e;
    opacity: 0.5;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #64091e;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(100, 9, 30, 0.1);
}

.social-icon:hover {
    transform: translateY(-3px);
    background-color: #64091e;
    color: #f7DAE7;
    box-shadow: 0 4px 8px rgba(100, 9, 30, 0.2);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

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

    .footer-logo {
        justify-content: center;
    }

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

    .footer-links {
        text-align: center;
    }

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

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex !important;
    }

    header .container {
        flex-wrap: wrap;
        gap: 20px;
        position: relative;
    }

    .logo-container {
        flex: 1;
    }

    nav {
        width: 100%;
        order: 3;
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #f7DAE7;
        box-shadow: 0 4px 6px rgba(100, 9, 30, 0.1);
        z-index: 1000;
        padding: 20px;
        margin-top: 10px;
        flex-direction: column;
        border-radius: 10px;
    }

    nav.active {
        display: flex !important;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        width: 100%;
        background-color: transparent;
        padding: 0;
        margin-bottom: 0;
    }

    nav a.active::after {
        display: none;
    }

    nav a.active {
        background-color: #e2B4C1;
        padding: 8px 15px;
        border-radius: 20px;
    }

    .has-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        margin-top: 10px;
        border: none;
        box-shadow: none;
        padding: 0;
        background-color: transparent;
    }

    .has-dropdown:hover .dropdown-menu {
        display: none; /* Désactiver hover sur mobile */
    }

    .has-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 10px 20px;
        border-left: 3px solid #64091e;
        margin-left: 20px;
    }

    .dropdown-arrow {
        float: right;
    }

    .contact-btn {
        display: none; /* Cacher le bouton dans le header sur mobile */
    }

    /* Bouton contact dans le menu mobile */
    .mobile-contact-btn {
        display: block;
        background-color: #64091e;
        color: white;
        padding: 12px 20px;
        border-radius: 20px;
        text-decoration: none;
        font-family: 'Belleza', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        margin-top: 20px;
        transition: opacity 0.3s ease, transform 0.2s ease;
        width: 100%;
        order: 999; /* S'assurer qu'il est en bas */
    }

    .mobile-contact-btn:hover {
        opacity: 0.9;
        transform: translateY(-2px);
    }

    .hero-title-wrapper {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2rem;
        max-width: 100%;
    }

    .hero-image {
        display: none;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-top: 30px;
    }

    .hero-cta {
        margin-top: 30px;
    }

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

    .qui-sommes-nous-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .qui-sommes-nous-title {
        font-size: 2rem;
    }

    .origine-title-home {
        font-size: 2.5rem;
    }

    #testimony-video-container {
        margin: 0 -20px 20px;
        padding: 0;
        padding-bottom: 56.25%;
        border-radius: 10px;
        width: calc(100% + 40px);
        max-width: calc(100% + 40px);
    }

    .video-testimony-text {
        font-size: 1.1rem;
    }

    .nos-missions-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nos-missions-title {
        font-size: 2rem;
    }

    .ce-que-nous-faisons-title {
        font-size: 2rem;
    }

    .cercle-vertueux-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cercle-vertueux-title {
        font-size: 2rem;
    }

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

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

    .missions-title {
        font-size: 2rem;
        white-space: normal;
    }

    .missions-grid {
        grid-template-columns: 1fr;
    }

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

    .donation-title {
        font-size: 2rem;
        white-space: normal;
    }

    .donation-frequency {
        justify-content: center;
    }

    .donation-cards {
        grid-template-columns: 1fr;
    }

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

    .faq-header {
        flex-wrap: wrap;
        gap: 15px;
    }

    .faq-number {
        font-size: 1.5rem;
        min-width: 40px;
    }

    .faq-question {
        font-size: 1rem;
        flex: 1;
        min-width: 200px;
    }

    .faq-toggle {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .newsletter-box {
        padding: 30px 20px;
    }

    .newsletter-image {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        max-width: 200px;
        margin: 0 auto 20px;
        display: block;
    }

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

    .newsletter-title {
        font-size: 2rem;
        white-space: normal;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .ateliers-grid {
        grid-template-columns: 1fr;
    }

    .nos-ateliers-title {
        font-size: 2.5rem;
    }

    .nos-ateliers-description {
        font-size: 1rem;
    }

    .nos-ateliers-subtitle {
        font-size: 0.9rem;
    }

    .story-circles {
        gap: 20px;
    }

    .story-circle {
        width: 100px;
        height: 100px;
    }

    .story-circle-inner {
        width: 85px;
        height: 85px;
    }

    .video-modal-content {
        max-width: 95%;
        padding: 15px;
    }

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

    .apropos-intro {
        font-size: 1.5rem;
    }

    .apropos-content p {
        font-size: 1rem;
    }

    .apropos-highlight {
        font-size: 1.1rem;
    }

    .apropos-signature {
        font-size: 1.5rem;
    }

    .participer-detail-title {
        font-size: 2.5rem;
    }

    .participer-detail-content p,
    .participer-detail-content ul {
        font-size: 1rem;
    }

    .participer-detail-content h2 {
        font-size: 1.5rem;
    }

    .participer-main-title {
        font-size: 2.5rem;
    }

    .participer-intro {
        font-size: 1rem;
    }

    .participer-option {
        padding: 25px;
    }

    .participer-option-title {
        font-size: 1.5rem;
    }

    .participer-option p,
    .participer-option ul {
        font-size: 1rem;
    }

    .participer-quote {
        font-size: 1.1rem;
    }

    .participer-closing {
        font-size: 1.5rem;
    }

    .participer-cards-title {
        font-size: 1.5rem;
    }

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

    .participer-card {
        min-height: 100px;
        padding: 25px;
    }

    .participer-card-title {
        font-size: 1.1rem;
    }
}

