/* ========================================
   RESET & VARIABLES
======================================== */

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

:root {
    /* Colors */
    --orange-main: #FF8C42;
    --orange-dark: #F67A35;
    --orange-light: #FFB380;
    --pink-pastel: #FFB3C6;
    --yellow-accent: #FFD93D;
    --brown-text: #6B4423;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-handwritten: 'Caveat', cursive;
    --font-playful: 'Pacifico', cursive;
    --font-main: 'Quicksand', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;

    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: linear-gradient(135deg, #FF8C42 0%, #FFB380 50%, #FF8C42 100%);
    background-attachment: fixed;
    color: var(--brown-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 211, 61, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 179, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 140, 66, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ========================================
   HEADER & NAVIGATION
======================================== */

#header {
    background: linear-gradient(135deg, var(--orange-dark) 0%, #E6692D 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    height: var(--header-height);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid rgba(255, 211, 61, 0.5);
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px var(--shadow));
}

.main-nav {
    display: flex;
    gap: var(--spacing-md);
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav a:hover {
    background: linear-gradient(135deg, var(--yellow-accent) 0%, #FFC700 100%);
    color: var(--brown-text);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 211, 61, 0.4);
}

.main-nav a.active {
    background: linear-gradient(135deg, var(--yellow-accent) 0%, #FFC700 100%);
    color: var(--brown-text);
    box-shadow: 0 2px 8px rgba(255, 211, 61, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION
======================================== */

#hero {
    margin-top: var(--header-height);
    padding: var(--spacing-xl) 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle, rgba(255, 211, 61, 0.2) 0%, transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(255, 179, 198, 0.2) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 150px 0 0;
}

.hero-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid var(--white);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 15px rgba(255, 211, 61, 0.2),
        0 0 0 30px rgba(255, 179, 198, 0.1);
    animation: pulse 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.3),
            0 0 0 15px rgba(255, 211, 61, 0.2),
            0 0 0 30px rgba(255, 179, 198, 0.1);
    }
    50% {
        transform: scale(1.02);
        box-shadow:
            0 25px 70px rgba(0, 0, 0, 0.35),
            0 0 0 20px rgba(255, 211, 61, 0.3),
            0 0 0 40px rgba(255, 179, 198, 0.15);
    }
}

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

.balloons-badge {
    position: absolute;
    top: 20px;
    right: -50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: 30px;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border: 3px solid rgba(255, 211, 61, 0.4);
    text-align: center;
    max-width: 200px;
    animation: float-badge 4s ease-in-out infinite;
    z-index: 2;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-2deg); }
    75% { transform: translateY(10px) rotate(2deg); }
}

.balloons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
}

.balloon {
    animation: float 3s ease-in-out infinite;
}

.balloon:nth-child(2) {
    animation-delay: 0.5s;
}

.balloon:nth-child(3) {
    animation-delay: 1s;
}

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

.badge-text {
    font-family: var(--font-handwritten);
    font-size: 1.3rem;
    color: var(--brown-text);
    font-weight: 600;
}

.hero-slogan {
    font-family: var(--font-handwritten);
    font-size: 2.5rem;
    color: var(--brown-text);
    text-align: center;
    max-width: 700px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    text-shadow:
        2px 2px 4px rgba(255, 255, 255, 0.8),
        -1px -1px 2px rgba(255, 211, 61, 0.3);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow:
            2px 2px 4px rgba(255, 255, 255, 0.8),
            -1px -1px 2px rgba(255, 211, 61, 0.3);
    }
    to {
        text-shadow:
            2px 2px 8px rgba(255, 255, 255, 1),
            -1px -1px 4px rgba(255, 211, 61, 0.5),
            0 0 20px rgba(255, 179, 198, 0.3);
    }
}

/* ========================================
   SECTION STYLING
======================================== */

section {
    padding: var(--spacing-xl) 0;
    overflow: hidden;
    scroll-margin-top: calc(var(--header-height) + 20px);
}

.section-title {
    font-family: var(--font-handwritten);
    font-size: 3rem;
    color: var(--brown-text);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    text-transform: lowercase;
    position: relative;
    display: inline-block;
    width: 100%;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--yellow-accent), transparent);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 211, 61, 0.4);
}

/* ========================================
   HERO ENHANCEMENTS
======================================== */

.hero-subtitle {
    font-family: var(--font-main);
    font-size: 1.2rem;
    color: var(--brown-text);
    text-align: center;
    max-width: 650px;
    margin: var(--spacing-md) auto;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--yellow-accent) 0%, var(--orange-main) 100%);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow:
        0 10px 30px rgba(255, 140, 66, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: var(--spacing-md);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.7s;
}

.hero-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 15px 40px rgba(255, 140, 66, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 0 0 4px rgba(255, 211, 61, 0.3);
    background: linear-gradient(135deg, var(--orange-main) 0%, var(--orange-dark) 100%);
}

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

/* ========================================
   STATS SECTION
======================================== */

.stats-section {
    background: linear-gradient(135deg, rgba(255, 211, 61, 0.15) 0%, rgba(255, 179, 198, 0.15) 100%);
    padding: var(--spacing-lg) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: 30px;
    text-align: center;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 211, 61, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 3px rgba(255, 211, 61, 0.5);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    display: block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-number {
    font-family: var(--font-handwritten);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--orange-main);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 1rem;
    color: var(--brown-text);
    font-weight: 600;
}

/* ========================================
   FAQ SECTION
======================================== */

#faq {
    background: transparent;
    position: relative;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    border: 2px solid rgba(255, 211, 61, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 211, 61, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: var(--spacing-md);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-handwritten);
    font-size: 1.5rem;
    color: var(--brown-text);
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--orange-main);
}

.faq-icon {
    font-size: 2rem;
    font-weight: 300;
    color: var(--yellow-accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 var(--spacing-md);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-md) var(--spacing-md);
}

.faq-answer p {
    line-height: 1.8;
    color: var(--brown-text);
}

/* ========================================
   CONTACT FORM
======================================== */

.contact-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--spacing-xl);
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
}

.certificate-image-mobile {
    display: none;
    margin-top: var(--spacing-md);
    border-radius: 25px;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.certificate-image-mobile img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: 30px;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 211, 61, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.form-title {
    font-family: var(--font-handwritten);
    font-size: 2.2rem;
    color: var(--brown-text);
    margin-bottom: var(--spacing-xs);
}

.form-subtitle {
    font-size: 1.05rem;
    color: var(--brown-text);
    margin-bottom: var(--spacing-lg);
    opacity: 0.8;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    flex: 1;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-weight: 600;
    color: var(--brown-text);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--spacing-sm);
    border: 2px solid rgba(255, 211, 61, 0.3);
    border-radius: 15px;
    font-family: var(--font-main);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow-accent);
    box-shadow: 0 0 0 3px rgba(255, 211, 61, 0.2);
    background: var(--white);
}

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

.form-submit {
    background: linear-gradient(135deg, var(--yellow-accent) 0%, var(--orange-main) 100%);
    color: var(--white);
    padding: var(--spacing-md) var(--spacing-lg);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow:
        0 8px 24px rgba(255, 140, 66, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: var(--spacing-sm);
    grid-column: 1 / -1;
    width: 100%;
}

.form-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 12px 32px rgba(255, 140, 66, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 0 0 3px rgba(255, 211, 61, 0.3);
    background: linear-gradient(135deg, var(--orange-main) 0%, var(--orange-dark) 100%);
}

.form-submit:active {
    transform: translateY(-1px) scale(1.01);
}

/* ========================================
   LE RIRE SECTION
======================================== */

#le-rire {
    background: transparent;
    position: relative;
}

#le-rire::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 179, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 211, 61, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

#le-rire > .container {
    position: relative;
    z-index: 1;
}

.rire-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.rire-images {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.oval-image {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 4/5;
    border-radius: 50% / 60%;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.2),
        0 0 0 12px rgba(255, 211, 61, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.oval-image:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.25),
        0 0 0 16px rgba(255, 211, 61, 0.3);
}

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

.rire-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: 30px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 211, 61, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 211, 61, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 4px rgba(255, 211, 61, 0.5);
    border-color: rgba(255, 211, 61, 0.6);
}

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

.benefit-card h3 {
    font-family: var(--font-handwritten);
    font-size: 1.8rem;
    color: var(--brown-text);
    margin-bottom: var(--spacing-sm);
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* ========================================
   YOGA DU RIRE SECTION
======================================== */

#yoga-du-rire {
    background: transparent;
    position: relative;
}

#yoga-du-rire::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(255, 211, 61, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(255, 140, 66, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

#yoga-du-rire > .container {
    position: relative;
    z-index: 1;
}

.yoga-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.yoga-list {
    list-style: none;
    padding: 0;
}

.yoga-list li {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    border-radius: 25px;
    border-left: 5px solid var(--yellow-accent);
    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    position: relative;
    padding-left: 3rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.yoga-list li:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        -8px 0 0 0 var(--yellow-accent);
    border-left-width: 10px;
    background: rgba(255, 255, 255, 1);
}

.yoga-list li::before {
    content: "✓";
    position: absolute;
    left: var(--spacing-sm);
    top: 50%;
    transform: translateY(-50%);
    color: var(--yellow-accent);
    font-size: 1.5rem;
    font-weight: bold;
}

.yoga-visual {
    position: relative;
    padding: 0 30px 30px 0;
}

.yoga-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 40px;
    overflow: hidden;
    border: 8px solid var(--white);
    box-shadow: 0 10px 30px var(--shadow);
}

.yoga-image img {
    width: 100%;
    height: auto;
    display: block;
}

.haha-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background-color: var(--yellow-accent);
    padding: var(--spacing-sm);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 8px 20px var(--shadow);
    border: 5px solid var(--white);
    z-index: 2;
}

.stick-figures {
    font-size: 1.8rem;
    display: flex;
    gap: 0.2rem;
    line-height: 1;
    margin-bottom: 0;
}

.haha-text {
    font-family: var(--font-handwritten);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brown-text);
    margin: 0;
    line-height: 1;
}

/* ========================================
   ANIMATRICE SECTION
======================================== */

#animatrice {
    background: transparent;
    position: relative;
}

#animatrice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 179, 198, 0.2) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

#animatrice > .container {
    position: relative;
    z-index: 1;
}

.animatrice-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.portrait-oval {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 4/5;
    border-radius: 50% / 60%;
    overflow: hidden;
    border: 8px solid var(--white);
    box-shadow: 0 10px 30px var(--shadow);
    margin: 0 auto;
}

.portrait-oval img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.animatrice-story {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.story-text {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: 30px;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 211, 61, 0.2);
    transition: all 0.3s ease;
}

.story-text:hover {
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.story-text p {
    margin-bottom: var(--spacing-sm);
    font-size: 1.05rem;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.reference-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.reference-box {
    background: linear-gradient(135deg, var(--yellow-accent) 0%, #FFE066 100%);
    padding: var(--spacing-md);
    border-radius: 25px;
    box-shadow:
        0 8px 24px rgba(255, 211, 61, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.reference-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transition: all 0.5s ease;
}

.reference-box:hover {
    transform: translateY(-5px) rotate(-1deg);
    box-shadow:
        0 12px 32px rgba(255, 211, 61, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.reference-box:hover::before {
    top: -25%;
    right: -25%;
}

.reference-box h4 {
    font-family: var(--font-handwritten);
    font-size: 1.5rem;
    color: var(--brown-text);
    margin-bottom: var(--spacing-xs);
}

.reference-box p {
    font-size: 0.95rem;
}

.animatrice-extras {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.banana-badge {
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: 30px;
    box-shadow: 0 8px 20px var(--shadow);
    text-align: center;
}

.banana-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: var(--spacing-sm);
}

.banana-text {
    font-family: var(--font-handwritten);
    font-size: 1.5rem;
    color: var(--brown-text);
    font-weight: 600;
}

.quote-box {
    background-color: var(--yellow-accent);
    padding: var(--spacing-md);
    border-radius: 25px;
    box-shadow: 0 6px 15px var(--shadow);
    text-align: center;
    border: 4px solid var(--white);
}

.quote-text {
    font-family: var(--font-handwritten);
    font-size: 1.6rem;
    color: var(--brown-text);
    font-weight: 600;
    line-height: 1.4;
}

/* ========================================
   CONTACT SECTION
======================================== */

#contact {
    background: transparent;
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(255, 211, 61, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 179, 198, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

#contact > .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.contact-info {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: 30px;
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 211, 61, 0.3);
    transition: all 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 2px rgba(255, 211, 61, 0.4);
}

.contact-info h3 {
    font-family: var(--font-handwritten);
    font-size: 1.8rem;
    color: var(--brown-text);
    margin-bottom: var(--spacing-sm);
}

.diploma-text {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    color: var(--brown-text);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.contact-details p {
    font-size: 1rem;
}

.contact-details a {
    color: var(--brown-text);
    word-break: break-word;
}

.certificate-image {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    border: 8px solid var(--white);
    box-shadow: 0 10px 30px var(--shadow);
}

.certificate-image img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-cta {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: 30px;
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 211, 61, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
}

.contact-cta:hover {
    transform: translateY(-5px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 2px rgba(255, 211, 61, 0.4);
}

.phone-icon {
    font-size: 4rem;
}

.cta-text {
    font-family: var(--font-handwritten);
    font-size: 1.4rem;
    color: var(--brown-text);
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--yellow-accent) 0%, #FFC700 100%);
    color: var(--brown-text);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow:
        0 8px 24px rgba(255, 211, 61, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    border-radius: 50%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 12px 32px rgba(255, 211, 61, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 0 0 3px rgba(255, 140, 66, 0.3);
    background: linear-gradient(135deg, #FFC700 0%, var(--orange-dark) 100%);
    color: var(--white);
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

/* ========================================
   FOOTER
======================================== */

#footer {
    background: linear-gradient(135deg, var(--pink-pastel) 0%, #FFCCD9 100%);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    position: relative;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 211, 61, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 140, 66, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-logo {
    font-family: var(--font-playful);
    font-size: 3.5rem;
    color: var(--yellow-accent);
    text-shadow:
        -2px -2px 0 var(--brown-text),
        2px -2px 0 var(--brown-text),
        -2px 2px 0 var(--brown-text),
        2px 2px 0 var(--brown-text);
    margin-bottom: var(--spacing-xs);
    text-transform: lowercase;
}

.footer-tagline {
    font-family: var(--font-handwritten);
    font-size: 1.3rem;
    color: var(--brown-text);
    font-weight: 600;
}

.footer-title {
    font-family: var(--font-handwritten);
    font-size: 1.8rem;
    color: var(--brown-text);
    margin-bottom: var(--spacing-xs);
}

.footer-link {
    color: var(--brown-text);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: block;
}

.footer-link a {
    color: var(--brown-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover,
.footer-link a:hover {
    color: var(--orange-dark);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 2px solid rgba(255, 211, 61, 0.3);
    padding-top: var(--spacing-md);
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-text {
    font-size: 0.9rem;
    color: var(--brown-text);
    font-weight: 500;
}

/* ========================================
   FLOATING BUTTONS
======================================== */

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    z-index: 999;
}

.whatsapp-button,
.share-button,
.back-to-top {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* WhatsApp Button */
.whatsapp-button {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    text-decoration: none;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow:
            0 8px 24px rgba(37, 211, 102, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow:
            0 8px 32px rgba(37, 211, 102, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.7);
    }
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-button:hover {
    transform: scale(1.15) rotate(-5deg);
    box-shadow:
        0 12px 32px rgba(37, 211, 102, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 0 0 4px rgba(37, 211, 102, 0.3);
}

/* Share Button */
.share-button {
    background: linear-gradient(135deg, var(--pink-pastel) 0%, #FF99B3 100%);
    border: none;
}

.share-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.share-button:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow:
        0 12px 32px rgba(255, 179, 198, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 0 0 4px rgba(255, 179, 198, 0.3);
}

/* Back to Top Button */
.back-to-top {
    background: linear-gradient(135deg, var(--yellow-accent) 0%, var(--orange-main) 100%);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.15);
    box-shadow:
        0 12px 32px rgba(255, 140, 66, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 0 0 4px rgba(255, 211, 61, 0.4);
    background: linear-gradient(135deg, var(--orange-main) 0%, var(--orange-dark) 100%);
}

.back-to-top:active {
    transform: translateY(-2px) scale(1.1);
}

.arrow-up {
    font-size: 2rem;
    color: var(--white);
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Share Menu */
.share-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: var(--spacing-lg);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 211, 61, 0.4);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 320px;
}

.share-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.share-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--brown-text);
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.share-close:hover {
    background: rgba(255, 140, 66, 0.1);
    transform: rotate(90deg);
}

.share-menu h3 {
    font-family: var(--font-handwritten);
    font-size: 2rem;
    color: var(--brown-text);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.share-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.share-option {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 20px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 1rem;
}

.share-option-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    background: rgba(255, 255, 255, 0.2);
}

.share-option.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d5cbf 100%);
}

.share-option.twitter {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.share-option.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005582 100%);
}

.share-option.copy-link {
    background: linear-gradient(135deg, var(--yellow-accent) 0%, var(--orange-main) 100%);
}

.share-option:hover {
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Overlay pour le menu de partage */
.share-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.share-menu.active::before {
    opacity: 1;
}

/* Badge Effects */
.balloons {
    animation: float-balloons 3s ease-in-out infinite;
}

@keyframes float-balloons {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(-3deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(3deg);
    }
}

.balloon {
    display: inline-block;
    animation: balloon-bounce 2s ease-in-out infinite;
}

.balloon:nth-child(1) {
    animation-delay: 0s;
}

.balloon:nth-child(2) {
    animation-delay: 0.3s;
}

.balloon:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes balloon-bounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(-5deg);
    }
}

.stick-figures .figure {
    display: inline-block;
    animation: yoga-pose 3s ease-in-out infinite;
}

.stick-figures .figure:nth-child(1) {
    animation-delay: 0s;
}

.stick-figures .figure:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes yoga-pose {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-10deg) scale(1.1);
    }
    75% {
        transform: rotate(10deg) scale(1.1);
    }
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media screen and (max-width: 1200px) {
    .hero-image-wrapper {
        padding: 0 100px 0 0;
    }

    .balloons-badge {
        right: -30px;
        max-width: 180px;
        padding: var(--spacing-sm);
    }

    .badge-text {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 968px) {
    .rire-content,
    .yoga-content,
    .animatrice-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-image-wrapper {
        padding: 0;
    }

    .balloons-badge {
        position: static;
        margin-top: var(--spacing-md);
        max-width: 100%;
    }

    .yoga-visual {
        padding: 0;
    }

    .reference-boxes {
        grid-template-columns: 1fr;
    }

    .hero-image {
        width: 300px;
        height: 300px;
    }

    .hero-slogan {
        font-size: 2rem;
    }

    .animatrice-extras {
        order: -1;
    }

    .rire-images {
        align-items: center;
    }

    .oval-image {
        margin: 0 auto;
    }

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

    .footer-section {
        align-items: center;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .certificate-image-mobile {
        display: block;
    }

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

    .form-submit {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background-color: var(--orange-dark);
        flex-direction: column;
        padding: var(--spacing-md);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 12px var(--shadow);
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .main-nav a {
        width: 100%;
        text-align: center;
        padding: var(--spacing-sm);
    }

    .hero-image {
        width: 250px;
        height: 250px;
    }

    .hero-slogan {
        font-size: 1.8rem;
    }

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

    .footer-logo {
        font-size: 3rem;
    }

    .oval-image,
    .portrait-oval {
        max-width: 100%;
    }

    .haha-badge {
        position: static;
        margin: var(--spacing-md) auto 0;
        width: 100px;
        height: 100px;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 0.75rem;
    }

    .whatsapp-button,
    .share-button,
    .back-to-top {
        width: 55px;
        height: 55px;
    }

    .share-menu {
        min-width: 280px;
        padding: var(--spacing-md);
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero-image {
        width: 200px;
        height: 200px;
    }

    .hero-slogan {
        font-size: 1.5rem;
    }

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

    .benefit-card {
        padding: var(--spacing-sm);
    }

    .benefit-card h3 {
        font-size: 1.5rem;
    }

    .yoga-list li {
        font-size: 1rem;
        padding-left: 2.5rem;
    }

    .footer-logo {
        font-size: 2.5rem;
    }

    .balloons-badge,
    .banana-badge,
    .quote-box {
        padding: var(--spacing-sm);
    }

    .banana-icon {
        font-size: 3rem;
    }

    .quote-text,
    .banana-text {
        font-size: 1.3rem;
    }

    .haha-badge {
        width: 80px;
        height: 80px;
    }

    .haha-text {
        font-size: 1.2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .stat-card {
        padding: var(--spacing-md);
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-button,
    .share-button,
    .back-to-top {
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }

    .share-icon {
        font-size: 1.5rem;
    }

    .arrow-up {
        font-size: 1.6rem;
    }
}
