/* ===== Variables ===== */
:root {
    --primary-color: #d4a5a5;
    --secondary-color: #f5e6d3;
    --accent-color: #c89595;
    --text-dark: #4a4a4a;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --beige: #f9f5f0;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(212, 165, 165, 0.2);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--beige) 0%, var(--secondary-color) 100%);
    line-height: 1.6;
    position: relative;
    max-width: 100vw;
}

body.loading {
    overflow: hidden;
}

/* ===== Loading Screen ===== */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f9f5f0 0%, #fce4ec 50%, #f5e6d3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-container.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    animation: fadeInLoader 0.5s ease;
}

@keyframes fadeInLoader {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Loading Scene ===== */
.loading-scene {
    position: relative;
    width: 400px;
    height: 250px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Bottle SVG Design - Simple Cartoon ===== */
.bottle-svg {
    display: block;
    filter: drop-shadow(0 8px 20px rgba(212, 165, 165, 0.2));
    z-index: 2;
}

/* ===== Hands ===== */
.hand {
    position: absolute;
    animation: handWave 2s ease-in-out infinite;
}

.hand-left {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.hand-right {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes handWave {
    0%, 100% {
        transform: translateY(-50%) rotate(0deg);
    }
    50% {
        transform: translateY(-50%) rotate(10deg);
    }
}

/* ===== Toys ===== */
.toy {
    position: absolute;
    animation: toyFloat 3s ease-in-out infinite;
}

.toy-1 {
    top: 10px;
    left: 50px;
    animation-delay: 0s;
}

.toy-2 {
    top: 20px;
    right: 60px;
    animation-delay: 0.5s;
}

.toy-3 {
    bottom: 30px;
    left: 40px;
    animation-delay: 1s;
}

.toy-4 {
    bottom: 20px;
    right: 50px;
    animation-delay: 1.5s;
}

@keyframes toyFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* ===== Responsive Loading Scene ===== */
@media (max-width: 768px) {
    .loading-scene {
        width: 300px;
        height: 220px;
    }
    
    .hand {
        display: none;
    }
    
    .toy {
        transform: scale(0.8);
    }
}

@media (max-width: 480px) {
    .loading-scene {
        width: 250px;
        height: 200px;
    }
    
    .toy {
        transform: scale(0.6);
    }
}

/* ===== Loading Text ===== */
.loading-text {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 20px;
    animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}





.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 165, 165, 0.1);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-x: hidden;
}

section {
    position: relative;
    z-index: 1;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(212, 165, 165, 0.1);
    background: rgba(255, 255, 255, 0.98);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform 0.3s ease;
}

.logo img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(212, 165, 165, 0.2));
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.nav-links a i {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    background: rgba(224, 132, 132, 0.13);
    color: var(--primary-color);
}

.nav-links a:hover i {
    opacity: 1;
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(212, 165, 165, 0.1);
}

.menu-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== Section d'accueil interactive scroll-driven ===== */
.welcome-interactive {
    position: relative;
    height: 100vh; /* Juste la hauteur de l'écran - pas de scroll */
    background: linear-gradient(160deg, #faf7f4 0%, #f9f0ed 30%, #fce8ee 60%, #f5e6d3 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Grain texture subtil */
.welcome-interactive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="3" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.03"/></svg>');
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

/* Formes organiques d'arrière-plan */
.welcome-bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.welcome-bg-shape.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #fce4ec 0%, transparent 70%);
    top: -10%;
    left: -10%;
}

.welcome-bg-shape.shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #f5c6d3 0%, transparent 70%);
    bottom: -15%;
    right: -5%;
}

.welcome-bg-shape.shape-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #d4a5a5 0%, transparent 70%);
    top: 40%;
    right: 10%;
}

/* Container du texte - Étape 1 */
.welcome-text-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    z-index: 2;
}

/* Logo en fond derrière le texte */
.welcome-text-container::before {
    content: '';
    position: absolute;
    top: 55%; /* Descendu de 50% à 55% */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-image: url('assets/img/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08; /* Semi-transparent */
    z-index: -1;
    pointer-events: none;
}

.welcome-title {
    font-family: 'Quicksand', 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    max-width: 1200px; /* Augmenté de 900px à 1200px */
    line-height: 1.5;
    letter-spacing: 0.02em;
    opacity: 1;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #d4a5a5 0%, #c89595 50%, #d4a5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 20px;
    position: relative;
    filter: drop-shadow(0 2px 15px rgba(212, 165, 165, 0.3));
}

.welcome-title::before {
    content: '✨';
    position: absolute;
    left: -10px;
    top: -10px;
    font-size: 2rem;
    opacity: 0.6;
    animation: sparkle 2s ease-in-out infinite;
}

.welcome-title::after {
    content: '💕';
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 2rem;
    opacity: 0.6;
    animation: heartFloat 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2) rotate(10deg);
        opacity: 1;
    }
}

@keyframes heartFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-5px) scale(1.1);
        opacity: 1;
    }
}

/* Indicateur de scroll */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 1;
    animation: fadeInScroll 1s ease 2s forwards;
    position: relative;
    z-index: 11; /* Au-dessus de tout */
}

@keyframes fadeInScroll {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-text {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.scroll-arrow {
    animation: bounceArrow 2s ease-in-out infinite;
}

.scroll-arrow svg {
    display: block;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Container des images d'enfants - Étape 2 */
.welcome-images-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    display: none; /* Caché par défaut, activé par JavaScript */
}

.child-image {
    position: absolute;
    width: auto;
    height: auto;
    max-width: 550px;
    opacity: 0;
    top: 40%;
    transform: translateY(-50%) scale(0.9);
    pointer-events: none;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
}

.child-image img {
    width: auto;
    height: 500px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(212, 165, 165, 0.2));
}

.child-caption {
    font-family: 'Quicksand', 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #d4a5a5 !important;
    text-align: center;
    margin: 0;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(212, 165, 165, 0.3);
    white-space: nowrap;
    letter-spacing: 0.02em;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    position: relative;
    z-index: 10;
}

/* Positions des images de gauche à droite - toutes à la même hauteur */
.child-image[data-position="left"] {
    left: 10%;
    transform: translateY(-50%) scale(0.9);
}

.child-image[data-position="center-left"] {
    left: 30%;
    transform: translateY(-50%) scale(0.9);
}

.child-image[data-position="center"] {
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
}

.child-image[data-position="center-right"] {
    left: 62%; /* Légèrement plus vers la gauche */
    transform: translateY(-50%) scale(0.9);
}

.child-image[data-position="right"] {
    left: 80%; /* Légèrement plus vers la gauche */
    transform: translateY(-50%) scale(0.9);
}

/* Spacer pour forcer le scroll - DÉSACTIVÉ */
.welcome-spacer {
    height: 0;
    display: none;
}

/* ===== Hero Section - Style Ayocin Réaliste ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(160deg, #faf7f4 0%, #f9f0ed 30%, #fce8ee 60%, #f5e6d3 100%);
    overflow: hidden;
    padding: 140px 0 100px;
}

/* Formes organiques d'arrière-plan */
.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: organicFloat 12s ease-in-out infinite;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #fce4ec 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #f5c6d3 0%, transparent 70%);
    bottom: -15%;
    right: -5%;
    animation-delay: 4s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #d4a5a5 0%, transparent 70%);
    top: 40%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes organicFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* Animation de mains qui signent - Arrière-plan */
.signing-hands-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.08;
    z-index: 0;
}

.animated-hand {
    position: absolute;
    width: 180px;
    height: 180px;
}

.hand-left {
    top: 25%;
    left: 12%;
    animation: signLeft 6s ease-in-out infinite;
}

.hand-right {
    bottom: 20%;
    right: 10%;
    animation: signRight 6s ease-in-out infinite 1.5s;
}

@keyframes signLeft {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) translateX(10px) rotate(-8deg);
    }
    66% {
        transform: translateY(-10px) translateX(-5px) rotate(5deg);
    }
}

@keyframes signRight {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) translateX(-10px) rotate(8deg);
    }
    66% {
        transform: translateY(-25px) translateX(5px) rotate(-5deg);
    }
}

/* Animation des doigts */
.finger {
    animation: fingerBend 6s ease-in-out infinite;
    transform-origin: bottom center;
}

.finger:nth-child(1) { animation-delay: 0s; }
.finger:nth-child(2) { animation-delay: 0.2s; }
.finger:nth-child(3) { animation-delay: 0.4s; }
.finger:nth-child(4) { animation-delay: 0.6s; }
.finger:nth-child(5) { animation-delay: 0.8s; }

@keyframes fingerBend {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-5deg);
    }
}

/* Grain texture */
.hero-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="3" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.03"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

/* Décorations minimalistes */
.hero-deco {
    position: absolute;
    animation: decoFloat 8s ease-in-out infinite;
}

.deco-flower-1 {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.flower-petal {
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #fce4ec 0%, #f5c6d3 100%);
    border-radius: 50% 0 50% 0;
    opacity: 0.4;
    filter: blur(1px);
}

.deco-star-1 {
    top: 30%;
    left: 10%;
    font-size: 24px;
    color: #d4a5a5;
    opacity: 0.3;
    animation-delay: 2s;
}

.deco-circle-1 {
    bottom: 25%;
    left: 12%;
    width: 20px;
    height: 20px;
    border: 2px solid #f5c6d3;
    border-radius: 50%;
    opacity: 0.3;
    animation-delay: 1s;
}

@keyframes decoFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.5;
    }
}

/* Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Visual Container - Réaliste */
.hero-visual {
    position: relative;
}

.visual-container {
    position: relative;
    animation: visualFloat 6s ease-in-out infinite;
}

@keyframes visualFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.hero-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(212, 165, 165, 0.25);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(252, 228, 236, 0.1) 0%, rgba(245, 198, 211, 0.15) 100%);
    mix-blend-mode: overlay;
}

.image-glow {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(245, 198, 211, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Éléments flottants */
.floating-element {
    position: absolute;
    animation: elementFloat 5s ease-in-out infinite;
}

.heart-element {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.sparkle-element {
    bottom: 15%;
    left: -3%;
    animation-delay: 1.5s;
}

.sparkle {
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #fce4ec 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(3px);
    opacity: 0.6;
}

@keyframes elementFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-15px) scale(1.1);
        opacity: 0.9;
    }
}

/* Contenu moderne */
.hero-content-modern {
    padding: 20px 0;
}

.hero-title-modern {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1.8rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.title-gradient {
    background: linear-gradient(135deg, #d4a5a5 0%, #c89595 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-description-modern {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 520px;
}

/* Offre mise en avant */
.hero-offer {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(252, 228, 236, 0.5) 100%);
    padding: 20px 32px;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(212, 165, 165, 0.2);
    box-shadow: 0 10px 30px rgba(212, 165, 165, 0.15);
    backdrop-filter: blur(10px);
}

.offer-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    animation: heartBeat 1.5s ease-in-out infinite;
}

.offer-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.offer-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.offer-price {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Bouton moderne */
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(212, 165, 165, 0.35);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 165, 0.45);
}

.btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-modern:hover .btn-icon {
    transform: translateX(4px);
}

/* Animations d'entrée style Ayocin */
.hero-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-animate[data-delay="0"] { transition-delay: 0s; }
.hero-animate[data-delay="1"] { transition-delay: 0.1s; }
.hero-animate[data-delay="2"] { transition-delay: 0.2s; }
.hero-animate[data-delay="3"] { transition-delay: 0.3s; }
.hero-animate[data-delay="4"] { transition-delay: 0.4s; }

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 165, 165, 0.3);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(212, 165, 165, 0.2);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: 2px solid transparent;
}

/* ===== Glass Card ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.contact-form.glass-card {
    box-shadow: none;
}
/* ===== Section Styles ===== */
section {
    padding: 100px 0;
}

section.contact {
    padding-bottom: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header {
    cursor: pointer;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.section-header:hover h2 {
    color: var(--accent-color);
}

.section-header:hover .flower-divider {
    max-width: 300px;
    opacity: 1;
    transform: scale(1.1);
}

.flower-divider {
    width: 100%;
    max-width: 200px;
    height: 30px;
    margin: 0 auto 1.5rem;
    display: block;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.flower-divider:hover {
    opacity: 1;
    transform: scale(1.05);
}

.flower-divider path,
.flower-divider line,
.flower-divider circle {
    stroke: var(--primary-color);
    fill: none;
    transition: stroke 0.3s ease;
}

.flower-divider circle.petal {
    fill: var(--primary-color);
    opacity: 0.3;
}

.flower-divider circle.center {
    fill: var(--accent-color);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===== About Section ===== */
.about {
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding-top: 120px; /* Espace pour la navbar fixe */
}

/* Logo en fond dans la section À propos */
.about::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-image: url('assets/img/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.06;
    z-index: 0;
    pointer-events: none;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-text .slogan {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.prochainement-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fce4ec, #f5c6d3);
    padding: 12px 20px;
    border-radius: 25px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(212, 165, 165, 0.2);
}

.prochainement-badge i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.prochainement-badge span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.prochainement-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #fce4ec, #f5c6d3);
    padding: 10px 20px;
    border-radius: 15px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    width: 100%;
    box-shadow: 0 2px 10px rgba(212, 165, 165, 0.15);
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-features {
    display: flex;
    gap: 30px;
    margin-top: 2rem;
}

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.feature-icon i {
    display: block;
}

.feature p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Onglets À propos */
.about-text {
    width: 100%;
    max-width: 100%;
}

.about-tabs {
    margin-top: 2rem;
    width: 100%;
}

.tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--glass-border);
    border-radius: 25px;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn i {
    font-size: 1.1rem;
}

.tab-btn:hover {
    background: rgba(212, 165, 165, 0.1);
    border-color: var(--primary-color);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-color: transparent;
}

.tabs-content {
    position: relative;
    min-height: 250px;
}

.tab-panel {
    display: none;
    opacity: 0;
    animation: fadeInTab 0.4s ease forwards;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-panel .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 1rem;
}

.tab-panel .feature {
    text-align: left;
    display: flex;
    gap: 15px;
    align-items: start;
}

.tab-panel .feature-icon {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.tab-panel .feature p {
    text-align: left;
    margin: 0;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.about-image img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    min-height: 300px;
    max-height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ===== Activities Section ===== */
.activities {
    position: relative;
    overflow: hidden;
}

/* Masonry Background */
.masonry-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.masonry-item {
    overflow: hidden;
    border-radius: 15px;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) blur(1px);
}

.masonry-item-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.masonry-item-2 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.masonry-item-3 {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
}

.masonry-item-4 {
    grid-column: 3 / 4;
    grid-row: 2 / 4;
}

.activities .container {
    position: relative;
    z-index: 1;
}

/* Titre du slider */
.activities-slider-title {
    text-align: center;
    font-size: 2.2rem;
    background: linear-gradient(135deg, #d4a5a5 0%, #c89595 50%, #d4a5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-weight: 700;
    transition: opacity 0.3s ease, transform 0.3s ease;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
    filter: drop-shadow(0 2px 8px rgba(212, 165, 165, 0.2));
    font-family: 'Quicksand', 'Poppins', sans-serif;
}

.activities-slider-title.changing {
    opacity: 0;
    transform: translateY(-10px);
}

/* Container du slider */
.activities-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Wrapper du slider */
.activities-slider-wrapper {
    overflow: hidden;
    border-radius: 25px;
    position: relative;
    width: 100%;
    min-height: 600px;
}

/* Slider */
.activities-slider {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
    min-height: 600px;
}

/* Cards */
/* Card Groups */
.activities-slider .activity-card-group {
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    flex-shrink: 0;
    padding: 0 !important;
    overflow: hidden;
    box-sizing: border-box;
    display: none;
    margin: 0;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.activities-slider .activity-card-group.active {
    display: flex;
    flex-direction: row;
    gap: 0;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

/* Sub-cards dans le groupe */
.activity-sub-card {
    flex: 1;
    padding: 0;
}

/* Card unique (sans divider) */
.activity-card-group.single-card {
    justify-content: center;
}

.activity-card-group.single-card .activity-sub-card {
    max-width: 100%;
}

/* Trait vertical séparateur */
.activity-divider {
    width: 2px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        var(--primary-color) 10%, 
        var(--primary-color) 90%, 
        transparent 100%);
    margin: 20px 0;
    opacity: 0.3;
}

/* Titre des sub-cards */
.sub-card-title {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
    font-weight: 600;
    text-align: center;
}

/* Card prochainement - grisée */
.activities-slider .activity-card-group[data-label="Formations Professionnels"] {
    filter: grayscale(60%);
    opacity: 0.85;
}

.activities-slider .activity-card-group[data-label="Formations Professionnels"] .activity-image {
    position: relative;
}

.activities-slider .activity-card-group[data-label="Formations Professionnels"] .activity-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.activities-slider .activity-card-group[data-label="Formations Professionnels"] .activity-content {
    opacity: 0.9;
}

.activities-slider .activity-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Ajustement des images pour les positionner plus haut */
.activity-image img[src*="parent-enfant2"] {
    object-position: center 30%;
}



.activity-image img[src*="yoga.webp"] {
    object-position: center 40%;
}

.activity-image img[src*="explication.webp"] {
    object-position: center 40%;
}

.activity-image img[src*="explication2"] {
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.1);
}

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.activity-content {
    padding: 20px;
}

/* Logo Signe Avec Moi dans la carte formation */
.formation-logo {
    margin-top: 15px;
    text-align: center;
}

.formation-logo img {
    max-width: 150px;
    height: auto;
    opacity: 0.9;
}

/* Image de formation - décalée vers le bas pour voir les mains */
.formation-image img {
    object-position: center 70%;
}

.activity-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.activity-content p {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.activity-list {
    list-style: none;
}

.activity-list li {
    padding: 6px 0;
    color: var(--text-light);
    position: relative;
    font-size: 0.9rem;
    padding-left: 28px;
    line-height: 1.5;
}

.activity-list li i {
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--primary-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Navigation du slider */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(212, 165, 165, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 1;
    pointer-events: auto;
}

.slider-nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 165, 165, 0.4);
}

.slider-nav.hidden {
    opacity: 0;
    pointer-events: none;
}

.slider-nav-prev {
    left: 15px;
}

.slider-nav-next {
    right: 15px;
}

/* Container du label avec vagues */
.activity-label-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: -20px;
    margin-bottom: 40px;
    min-height: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

/* Vagues SVG */
.label-wave {
    flex: 1;
    height: 20px;
    max-width: 250px;
    min-width: 80px;
}

.label-wave-left {
    transform: scaleX(-1);
}

/* Label dynamique - sous-titre */
.activity-label {
    text-align: center;
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 500;
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-style: italic;
    opacity: 0.9;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-label.changing {
    opacity: 0;
    transform: translateY(-10px);
}

/* Logo dans le label */
.label-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(212, 165, 165, 0.3));
}

/* ===== Testimonials Section ===== */
.testimonials {
    background: linear-gradient(135deg, #faf7f4 0%, #fce8ee 50%, #f5e6d3 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.testimonials-container {
    position: relative;
    margin: 60px 0;
}

.testimonials-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

/* Pas de dégradé, juste les fleurs */

.slider-flower {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    pointer-events: none;
    opacity: 0.8;
    filter: drop-shadow(0 4px 10px rgba(212, 165, 165, 0.3));
}

.slider-flower-left {
    left: -80px;
}

.slider-flower-right {
    right: -80px;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    will-change: transform;
    cursor: grab;
    user-select: none;
    backface-visibility: hidden;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.testimonials-slider.dragging {
    cursor: grabbing;
}

.testimonial-card {
    min-width: 380px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(212, 165, 165, 0.15);
    border: 1px solid rgba(212, 165, 165, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    flex-shrink: 0;
    pointer-events: auto;
}

.testimonials-slider.dragging .testimonial-card {
    pointer-events: none;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(245, 198, 211, 0.3) 0%, transparent 70%);
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonials-slider:not(.dragging) .testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 3px;
    font-weight: 600;
}

.author-role {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
}

.testimonial-rating i {
    color: #f5c6d3;
    font-size: 1rem;
}

/* Décoration florale */
.testimonials-deco {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.deco-flower {
    position: absolute;
    animation: floatFlower 8s ease-in-out infinite;
}

.deco-flower-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.deco-flower-2 {
    bottom: 20%;
    left: 8%;
    animation-delay: 2s;
}

@keyframes floatFlower {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-15px) rotate(10deg);
        opacity: 0.6;
    }
}

/* ===== Pricing Section ===== */
.pricing {
    background: var(--white);
}

/* Sections de tarifs séparées */
.pricing-section {
    margin-bottom: 60px;
}

.pricing-section:last-child {
    margin-bottom: 0;
}

.pricing-section-title {
    text-align: center;
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pricing-section-title i {
    font-size: 1.4rem;
}

.pricing-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 35px;
    max-width: 2000px;
    margin: 0 auto;
    justify-content: center;
    padding: 0 50px;
}

.pricing-grid-3 {
    max-width: 1400px;
}

.pricing-grid-2 {
    max-width: 900px;
}

.pricing-card {
    padding: 35px 30px;
    text-align: center;
    position: relative;
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured-main {
    border: 3px solid var(--primary-color);
    box-shadow: 0 15px 50px rgba(212, 165, 165, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(252, 228, 236, 0.5));
}

.badge-main {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 165, 165, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-main i {
    color: var(--white);
    animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1);
    }
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-header h3 i {
    font-size: 1.2rem;
}

.pricing-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.price {
    margin-bottom: 1.5rem;
}

.amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.pricing-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pricing-features {
    list-style: none;
    margin-bottom: auto;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 9px 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(212, 165, 165, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
}

.pricing-features li i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Boutons dans les pricing cards - même taille et alignés */
.pricing-card .btn {
    width: 100%;
    max-width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
    margin-top: 20px;
}

/* ===== Contact Section ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper {
    width: 100%;
    align-self: start;
}

.contact-form.glass-card {
    height: auto;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: start;
}

.contact-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.contact-item p {
    font-size: 0.9rem;
}

.contact-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border-radius: 50%;
    border: 2px solid var(--glass-border);
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--text-light);
}

.contact-item a {
    color: var(--accent-color);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-link {
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.3s ease;
}

.contact-link:hover {
    text-decoration-color: var(--primary-color);
}

/* ===== Map Section Full Width ===== */
.map-section {
    width: 100%;
    margin: 0;
    padding: 0;
    margin-top: 60px;
}

.map-container-full {
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border-top: 4px solid var(--primary-color);
    border-bottom: 4px solid var(--primary-color);
    box-shadow: 0 -4px 20px rgba(212, 165, 165, 0.2), 0 4px 20px rgba(212, 165, 165, 0.2);
}

.map-container-full iframe {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.contact-form {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    margin-bottom: 0;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--glass-border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(74, 74, 74, 0.6);
    opacity: 1;
}

.form-group input::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder {
    color: rgba(74, 74, 74, 0.6);
    opacity: 1;
}

.form-group input::-moz-placeholder,
.form-group textarea::-moz-placeholder {
    color: rgba(74, 74, 74, 0.6);
    opacity: 1;
}

.contact-form button {
    width: 100%;
    margin-top: 10px;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li i {
    width: 20px;
}

.footer-section a {
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
}

.slide-in-left.visible {
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
}

.slide-in-right.visible {
    animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .about-content,
    .contact-content {
        gap: 50px;
    }

    .activities-slider-container {
        padding: 0 70px;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 1002;
    }

    .nav-content {
        padding: 1rem 0;
    }

    .logo {
        max-width: calc(100% - 60px);
        overflow: hidden;
    }

    .logo-title {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-links {
        position: fixed;
        top: 80px; /* En dessous de la navbar */
        left: 0;
        right: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 40px 20px;
        gap: 0;
        justify-content: center;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 20px rgba(212, 165, 165, 0.15);
        border-bottom: 2px solid var(--primary-color);
    }

    .nav-links.active {
        max-height: calc(100vh - 80px);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links li {
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 400px;
        text-align: center;
        animation: fadeInDown 0.5s ease forwards;
        opacity: 0;
    }

    .nav-links.active li {
        opacity: 1;
    }

    .nav-links.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { animation-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { animation-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { animation-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { animation-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { animation-delay: 0.35s; }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 16px 30px;
        justify-content: center;
        width: 100%;
        display: flex;
        margin: 8px 0;
        border-radius: 15px;
    }
    
    .nav-links a:hover {
        background: rgba(212, 165, 165, 0.15);
    }
    
    .nav-cta {
        margin-top: 10px !important;
    }
    
    /* Pas d'overlay - fond blanc uniquement */
    
    .logo-subtitle {
        display: none;
    }
    
    /* S'assurer que la navbar reste au-dessus */
    .navbar {
        z-index: 1001;
        position: fixed;
    }

    /* Welcome Interactive Responsive */
    .welcome-title {
        font-size: 2.5rem;
        padding: 0 30px;
        margin-bottom: 40px;
    }

    .welcome-title::before {
        left: 5px;
        top: -5px;
        font-size: 1.5rem;
    }

    .welcome-title::after {
        right: 5px;
        bottom: -5px;
        font-size: 1.5rem;
    }

    .scroll-indicator {
        transform: scale(0.9);
    }

    .scroll-text {
        font-size: 0.9rem;
    }

    .child-image {
        max-width: 400px;
        gap: 12px;
        top: 40%;
    }

    .child-image img {
        height: 380px;
    }

    .child-caption {
        font-size: 1.1rem;
        padding: 8px 16px;
    }

    /* Ajuster les positions pour tablette */
    .child-image[data-position="left"] {
        left: 15%;
        transform: translateY(-50%) scale(0.9);
    }

    .child-image[data-position="center-left"] {
        left: 32.5%;
        transform: translateY(-50%) scale(0.9);
    }

    .child-image[data-position="center"] {
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);
    }

    .child-image[data-position="center-right"] {
        left: 62%;
        transform: translateY(-50%) scale(0.9);
    }

    .child-image[data-position="right"] {
        left: 78%;
        transform: translateY(-50%) scale(0.9);
    }

    .hero {
        min-height: 90vh;
        padding: 100px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-visual {
        order: 2;
    }

    .hero-content-modern {
        order: 1;
        text-align: center;
    }

    .hero-title-modern {
        font-size: 2.5rem;
    }

    .hero-description-modern {
        font-size: 1.05rem;
        max-width: 100%;
    }

    .hero-offer {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        max-width: 450px;
        margin: 0 auto;
    }

    section {
        padding: 60px 0;
    }

    section.contact {
        padding: 50px 0 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h3 {
        font-size: 1.7rem;
    }

    .about-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 20px;
    }

    .feature {
        flex: 0 0 calc(33.333% - 20px);
        min-width: 100px;
    }

    .about-image img {
        min-height: 300px;
    }

    .masonry-background {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        opacity: 0.05;
    }

    .masonry-item-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .masonry-item-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .masonry-item-3 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .masonry-item-4 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    /* Onglets À propos - Tablette */
    .tabs-nav {
        justify-content: center;
    }
    
    .tab-panel .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .activities-slider-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .activities-slider-container {
        padding: 0 60px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .activity-label {
        font-size: 1.3rem;
        margin-top: 25px;
    }

    .activity-image {
        height: 180px;
    }
    
    /* Activités en colonne sur tablette */
    .activity-card-group {
        flex-direction: column !important;
        gap: 25px !important;
        padding: 25px !important;
    }
    
    .activity-divider {
        display: none;
    }
    
    .activity-sub-card {
        width: 100%;
        max-width: 100%;
    }

    /* Testimonials Responsive */
    .testimonial-card {
        min-width: 320px;
        padding: 30px 25px;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .testimonial-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .slider-flower {
        display: none;
    }

    .pricing-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0 30px;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }



    .contact-info h3 {
        font-size: 1.7rem;
    }

    .contact-form {
        padding: 30px 25px;
        gap: 15px;
    }

    .map-container-full {
        height: 350px;
    }
    
    .map-section {
        margin-top: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .logo-title {
        font-size: 0.95rem;
    }

    .logo img {
        width: 42px;
        height: 42px;
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: 12px 18px;
    }

    /* Welcome Interactive Mobile */
    .welcome-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        padding: 0 25px;
        max-width: 100%; /* Pleine largeur sur mobile */
    }
    
    /* Logo plus petit sur mobile */
    .welcome-text-container::before {
        width: 400px;
        height: 400px;
        opacity: 0.06;
    }

    .welcome-title::before {
        left: 0;
        top: -5px;
        font-size: 1.2rem;
    }

    .welcome-title::after {
        right: 0;
        bottom: -5px;
        font-size: 1.2rem;
    }

    .scroll-indicator {
        transform: scale(0.8);
    }

    .scroll-text {
        font-size: 0.85rem;
    }

    .child-image {
        max-width: 350px;
        gap: 10px;
        top: 40%;
    }

    .child-image img {
        height: 320px;
    }

    .child-caption {
        font-size: 0.95rem;
        padding: 6px 14px;
    }

    /* Sur mobile, toutes les images sont centrées */
    .child-image[data-position="left"],
    .child-image[data-position="center-left"],
    .child-image[data-position="center"],
    .child-image[data-position="center-right"],
    .child-image[data-position="right"] {
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);
    }

    .hero-title-modern {
        font-size: 2rem;
    }

    .hero-description-modern {
        font-size: 1rem;
    }

    .hero-offer {
        padding: 16px 24px;
        gap: 14px;
    }

    .offer-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .offer-price {
        font-size: 1.5rem;
    }

    .btn-modern {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .hero-image {
        max-width: 320px;
    }

    .hero-deco {
        transform: scale(0.7);
    }
    
    .hand-sign-left,
    .hand-sign-right {
        width: 150px;
        height: 225px;
    }
    
    .signing-hands-bg {
        opacity: 0.04;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    section {
        padding: 50px 0;
    }

    section.contact {
        padding: 40px 0 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .about-text h3,
    .contact-info h3 {
        font-size: 1.5rem;
    }

    .about-features {
        flex-direction: column;
        gap: 15px;
    }

    .feature {
        flex: 1 1 100%;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .about-image img {
        min-height: 250px;
    }

    /* Onglets À propos - Mobile */
    .tabs-nav {
        flex-direction: column;
        gap: 8px;
    }
    
    .tab-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
        justify-content: center;
    }
    
    .tab-panel .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tabs-content {
        min-height: auto;
    }

    .activities-slider-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
        padding: 0 20px;
    }
    
    .activities-slider-container {
        padding: 0 50px;
    }
    
    /* Slider d'activités - Mobile : Une carte à la fois */
    .activities-slider {
        min-height: auto;
        display: block;
    }
    
    .activities-slider-wrapper {
        min-height: auto;
        overflow: hidden;
    }
    
    .activity-card-group {
        display: block !important;
        padding: 20px !important;
        position: relative !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .activity-card-group.active {
        position: relative !important;
    }
    
    .activity-card-group .activity-sub-card {
        width: 100%;
        max-width: 100%;
        margin-bottom: 30px !important;
        position: relative;
        padding-bottom: 30px !important;
        border-bottom: 1px solid rgba(212, 165, 165, 0.2);
    }
    
    /* Respecter les styles inline du JavaScript pour cacher les cartes */
    .activity-card-group .activity-sub-card[style*="display: none"] {
        display: none !important;
    }
    
    .activity-card-group .activity-sub-card[style*="display: block"] {
        display: block !important;
    }
    
    .activity-card-group .activity-sub-card:last-child {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        border-bottom: none;
    }
    
    .activity-divider {
        display: none;
    }
    
    .activity-image {
        height: 180px !important;
    }
    
    .activity-content {
        padding: 20px !important;
    }
    
    .sub-card-title {
        font-size: 1.1rem;
    }
    
    .activity-list li {
        font-size: 0.85rem;
        padding: 5px 0 5px 28px !important;
        display: flex !important;
        align-items: flex-start !important;
    }
    
    .activity-list li i {
        position: absolute !important;
        left: 0 !important;
        top: 7px !important;
        font-size: 0.9rem !important;
        color: var(--primary-color) !important;
        transform: none !important;
    }
    
    /* Navigation entre sub-cards sur mobile */
    .sub-card-nav-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-top: 25px;
        padding: 15px 0;
        position: relative;
        z-index: 10;
    }
    
    .sub-nav-btn {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: 2px solid var(--primary-color);
        background: var(--white);
        color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 1.8rem;
        font-weight: 300;
        line-height: 1;
        padding: 0;
        position: relative;
        z-index: 10;
        pointer-events: auto;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .sub-nav-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
        pointer-events: none;
    }
    
    .sub-nav-btn:not(:disabled):active,
    .sub-nav-btn:not(:disabled):hover {
        background: var(--primary-color);
        color: var(--white);
        transform: scale(0.95);
    }
    
    .sub-nav-indicator {
        font-size: 0.95rem;
        color: var(--text-dark);
        font-weight: 600;
        min-width: 50px;
        text-align: center;
    }
    
    /* Cacher le label avec vagues sur mobile */
    .activity-label-container {
        display: none;
    }
    
    /* Cacher les gros boutons de navigation sur mobile */
    .slider-nav {
        display: none !important;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .activity-label {
        font-size: 1.1rem;
        margin-top: 20px;
    }

    .activity-image {
        height: 200px;
    }

    .activity-content {
        padding: 25px 20px;
    }

    .activity-content h3 {
        font-size: 1.3rem;
    }

    .pricing-grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 0 20px;
        flex-wrap: wrap;
    }
    
    .pricing-card {
        padding: 30px 25px;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .pricing-header h3 {
        font-size: 1.5rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .contact-form {
        padding: 25px 20px;
        gap: 12px;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .contact-content {
        gap: 30px;
    }
    
    .contact-details {
        gap: 12px;
    }
    
    .contact-item {
        gap: 10px;
    }

    .map-section {
        margin-top: 30px;
    }

    .map-container-full {
        height: 300px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .footer-logo {
        width: 50px;
        height: 50px;
    }
    
    /* Testimonials Mobile - Texte mieux formaté */
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-slider-wrapper {
        padding: 15px 0;
    }
    
    .testimonial-card {
        min-width: 280px;
        max-width: 320px;
        padding: 25px 20px;
    }
    
    .testimonial-author {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .author-info h4 {
        font-size: 0.95rem;
    }
    
    .author-role {
        font-size: 0.8rem;
    }
    
    .testimonial-content {
        margin-bottom: 15px;
    }
    
    .testimonial-content p {
        font-size: 0.85rem;
        line-height: 1.5;
        max-height: none;
        overflow: visible;
        word-wrap: break-word;
        white-space: normal;
    }
    
    .testimonial-rating {
        gap: 4px;
    }
    
    .testimonial-rating i {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .welcome-title {
        font-size: 1.5rem;
        padding: 0 15px;
    }
    
    .child-image img {
        height: 280px;
    }
    
    .child-caption {
        font-size: 0.85rem;
        padding: 5px 12px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .activities-slider-container {
        padding: 0 40px;
    }
    
    .slider-nav {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .activities-slider-title {
        font-size: 1.2rem;
    }
    
    .activity-label {
        font-size: 1rem;
    }
    
    .tab-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .logo-title {
        font-size: 0.85rem;
    }
    
    .logo img {
        width: 38px;
        height: 38px;
    }
}
