/* =====================================================
   DELPHINE MARION - SITE WEB
   CSS Optimisé et Organisé
   ===================================================== */

/* =====================================================
   1. VARIABLES ET POLICES
   ===================================================== */

:root {
    --color-gold: #d5a34e;
    --color-teal: #5a8780;
    --color-rose: #d8a7a7;
    --color-brick: #ae4c29;
    --color-cream: #EFEFE8;
    --color-dark: #2c2c2c;
    --color-tealNav: rgba(90, 135, 128, 0.8);
}

@font-face {
    font-family: 'Kudryashev';
    src: url('../fonts/Kudryashev_Display_Extra_Contrast_Sans.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* =====================================================
   2. RESET ET BASE
   ===================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', 'Montserrat', sans-serif;
    color: var(--color-dark);
    line-height: 1.6;
    background-color: var(--color-cream);
    font-size: 1.3rem;
}

h1, h2, h3 {
    font-family: 'Kudryashev', sans-serif;
}

/* =====================================================
   3. LAYOUT COMMUN
   ===================================================== */

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

section {
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-teal);
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

/* Classes d'accent de couleur */
.accent-gold {
    color: var(--color-gold);
    font-weight: 600;
}

.accent-teal {
    color: var(--color-teal);
    font-weight: 600;
}

.accent-rose {
    color: var(--color-rose);
    font-weight: 600;
}

.accent-brick {
    color: var(--color-brick);
    font-weight: 600;
}

/* =====================================================
   4. NAVIGATION
   ===================================================== */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--color-tealNav);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo avec Lotus */
.headerLogo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Kudryashev', 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lotus-icon {
    font-size: 2rem;
    color: var(--color-gold);
    transition: transform 0.5s ease, color 0.3s ease;
    display: inline-block;
}

.headerLogo:hover .lotus-icon {
    transform: rotate(180deg);
    color: var(--color-teal);
}

.headerLogo:hover {
    color: var(--color-rose);
}

/* Menu Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    position: relative;
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.4s ease;
    font-size: 18px;
    font-family: 'Kudryashev', sans-serif;
    font-weight: 600;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 2px;
    width: 0;
    background-color: var(--color-gold);
    transition: width 0.4s ease;
}

nav a:hover {
    color: var(--color-gold);
}

nav a:hover::after {
    width: 100%;
}

/* Menu Toggle Mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-dark);
}

/* =====================================================
   5. HERO SECTION
   ===================================================== */

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background-color: var(--color-cream);
    overflow: hidden;
}

.hero .logo {
    padding-top: 60px;
    width: 550px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--color-dark);
    line-height: 1.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    font-weight: 400;
}

/* Arrière-plan géométrique */
.geometric-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Pétales */
.petal {
    position: absolute;
    opacity: 0.15;
    border-radius: 50% 0% 50% 50%;
    transform-origin: bottom center;
}

.petal-1 {
    width: 400px;
    height: 500px;
    background: var(--color-teal);
    top: 10%;
    left: -5%;
    transform: rotate(-30deg);
    animation: float 8s ease-in-out infinite, sway1 10s ease-in-out infinite;
}

.petal-2 {
    width: 350px;
    height: 450px;
    background: var(--color-rose);
    top: -10%;
    right: 20%;
    transform: rotate(0deg);
    animation: float 10s ease-in-out infinite 1s, sway2 12s ease-in-out infinite;
}

.petal-3 {
    width: 450px;
    height: 550px;
    background: var(--color-gold);
    top: 15%;
    right: -8%;
    transform: rotate(25deg);
    animation: float 9s ease-in-out infinite 2s, sway3 11s ease-in-out infinite;
}

.petal-4 {
    width: 250px;
    height: 300px;
    background: var(--color-teal);
    bottom: 15%;
    left: 15%;
    transform: rotate(-60deg);
    opacity: 0.1;
    animation: float 12s ease-in-out infinite 1.5s, sway1 14s ease-in-out infinite 3s;
}

.petal-5 {
    width: 280px;
    height: 350px;
    background: var(--color-rose);
    bottom: 10%;
    right: 25%;
    transform: rotate(45deg);
    opacity: 0.12;
    animation: float 11s ease-in-out infinite 3s, sway2 13s ease-in-out infinite 2s;
}

.petal-6 {
    width: 200px;
    height: 250px;
    background: var(--color-gold);
    bottom: 25%;
    right: 10%;
    transform: rotate(-15deg);
    opacity: 0.08;
    animation: float 13s ease-in-out infinite 2.5s, sway3 15s ease-in-out infinite 1s;
}

/* Cercles décoratifs */
.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.circle-1 {
    width: 150px;
    height: 150px;
    background: var(--color-teal);
    top: 60%;
    left: 10%;
    animation: pulse 6s ease-in-out infinite, drift1 8s ease-in-out infinite;
}

.circle-2 {
    width: 100px;
    height: 100px;
    background: var(--color-rose);
    top: 30%;
    right: 15%;
    animation: pulse 7s ease-in-out infinite 1s, drift2 9s ease-in-out infinite;
}

.circle-3 {
    width: 80px;
    height: 80px;
    background: var(--color-gold);
    bottom: 30%;
    left: 30%;
    animation: pulse 8s ease-in-out infinite 2s, drift3 10s ease-in-out infinite;
}

/* =====================================================
   6. ANIMATIONS GLOBALES
   ===================================================== */

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotation, 0deg)) scale(1);
    }
    25% {
        transform: translateY(-50px) rotate(calc(var(--rotation, 0deg) + 8deg)) scale(1.05);
    }
    50% {
        transform: translateY(-80px) rotate(calc(var(--rotation, 0deg) + 12deg)) scale(1.08);
    }
    75% {
        transform: translateY(-50px) rotate(calc(var(--rotation, 0deg) + 8deg)) scale(1.05);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.08;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.18;
    }
}

@keyframes sway1 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(60px); }
}

@keyframes sway2 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-50px); }
}

@keyframes sway3 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-70px); }
}

@keyframes drift1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -60px); }
}

@keyframes drift2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-45px, 55px); }
}

@keyframes drift3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(60px, 50px); }
}

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

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

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

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

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

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

/* =====================================================
   7. SERVICES
   ===================================================== */

.services {
    padding: 5rem 2rem;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background-color: var(--color-cream);
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card:nth-child(1) {
    border-color: var(--color-teal);
}

.service-card:nth-child(2) {
    border-color: var(--color-gold);
}

.service-card:nth-child(3) {
    border-color: var(--color-rose);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
    text-align: center;
}

.service-card:nth-child(1) h3 {
    color: var(--color-teal);
}

.service-card:nth-child(2) h3 {
    color: var(--color-gold);
}

.service-card:nth-child(3) h3 {
    color: var(--color-rose);
}

.services .service-card img {
    width: 300px;
}

/* =====================================================
   8. À PROPOS - SECTION INTERACTIVE
   ===================================================== */

.about {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--color-cream) 0%, #fff 100%);
}

/* Introduction avec photo */
.about-intro {
    max-width: 1000px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(90, 135, 128, 0.15);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.intro-image {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    position: relative;
}

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

.intro-image:hover img {
    transform: scale(1.08);
}

.intro-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(90, 135, 128, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.intro-image:hover::after {
    opacity: 1;
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.9;
    color: var(--color-dark);
    font-weight: 400;
}

/* Accordéon */
.accordion-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.accordion-item {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease both;
}

.accordion-item:nth-child(1) {
    animation-delay: 0.3s;
}

.accordion-item:nth-child(2) {
    animation-delay: 0.4s;
}

.accordion-item:nth-child(3) {
    animation-delay: 0.5s;
}

.accordion-item.active {
    box-shadow: 0 15px 50px rgba(90, 135, 128, 0.2);
}

.accordion-header {
    display: grid;
    grid-template-columns: 280px 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: linear-gradient(135deg, rgba(90, 135, 128, 0.05), rgba(213, 163, 78, 0.05));
}

.accordion-image {
    width: 280px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
}

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

.accordion-header:hover .accordion-image img {
    transform: scale(1.1);
}

.image-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.accordion-item:nth-child(1) .image-badge {
    color: var(--color-teal);
}

.accordion-item:nth-child(2) .image-badge {
    color: var(--color-rose);
}

.accordion-item:nth-child(3) .image-badge {
    color: var(--color-gold);
}

.accordion-title-section {
    flex: 1;
}

.accordion-header h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.accordion-item:nth-child(1) .accordion-header h3 {
    color: var(--color-teal);
}

.accordion-item:nth-child(2) .accordion-header h3 {
    color: var(--color-rose);
}

.accordion-item:nth-child(3) .accordion-header h3 {
    color: var(--color-gold);
}

.accordion-subtitle {
    font-size: 1.1rem;
    color: var(--color-dark);
    opacity: 0.8;
    line-height: 1.6;
}

.accordion-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.accordion-item:nth-child(1) .accordion-icon {
    background: var(--color-teal);
}

.accordion-item:nth-child(2) .accordion-icon {
    background: var(--color-rose);
}

.accordion-item:nth-child(3) .accordion-icon {
    background: var(--color-gold);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    background: var(--color-gold);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
    max-height: 3000px;
}

.accordion-body {
    padding: 2.5rem 3rem 3rem 3rem;
    background: linear-gradient(135deg, rgba(239, 239, 232, 0.3), transparent);
}

.accordion-body p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    text-align: justify;
    animation: fadeIn 0.8s ease;
}

.formation-highlight {
    background: linear-gradient(135deg, rgba(90, 135, 128, 0.08), rgba(216, 167, 167, 0.08));
    padding: 2rem 2.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid var(--color-gold);
    position: relative;
    animation: slideInLeft 0.6s ease;
}

.formation-highlight::before {
    content: '✦';
    position: absolute;
    top: 1.5rem;
    left: -12px;
    font-size: 1.5rem;
    color: var(--color-gold);
    background-color: white;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.formation-highlight p {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 500;
}

/* Conclusion */
.bio-conclusion {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-gold) 100%);
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(90, 135, 128, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.bio-conclusion::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.bio-conclusion-content {
    position: relative;
    z-index: 1;
}

.bio-conclusion p {
    font-size: 1.5rem;
    line-height: 2;
    color: white;
    margin: 0;
    font-weight: 400;
    font-style: italic;
}

.bio-conclusion .accent-gold {
    color: var(--color-cream);
    font-weight: 600;
    font-style: normal;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* =====================================================
   9. GALERIE 3D COVERFLOW
   ===================================================== */

.coverflow-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #EFEFE8 0%, #fff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coverflow-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.info {
    text-align: center;
    max-width: 600px;
    z-index: 10;
}

.info h2 {
    font-size: 2rem;
    color: var(--color-teal);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.info p {
    font-size: 1.1rem;
    color: var(--color-dark);
    line-height: 1.6;
}

.coverflow-container {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
    position: relative;
    outline: none;
}

.coverflow {
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    position: relative;
    width: 100%;
    height: 400px;
}

.coverflow-item {
    position: absolute;
    width: 350px;
    height: 350px;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    user-select: none;
}

.coverflow-item .cover {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(90, 135, 128, 0.3);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    background: linear-gradient(135deg, #5a8780 0%, #d5a34e 100%);
    border: 3px solid #fff;
}

.coverflow-item.active .cover {
    box-shadow: 0 30px 60px rgba(90, 135, 128, 0.5);
    border-color: #d5a34e;
}

.coverflow-item .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

.image-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #5a8780 0%, #d5a34e 50%, #5a8780 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 12px;
    z-index: 1;
}

.coverflow-item .cover:not(.image-loading)::before {
    display: none;
}

.reflection {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    background-size: cover;
    background-position: center bottom;
    opacity: 0.3;
    transform: scaleY(-1);
    filter: blur(2px);
    border-radius: 0 0 15px 15px;
    pointer-events: none;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-teal);
    color: white;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(90, 135, 128, 0.3);
    z-index: 100;
    line-height: 1;
    padding: 0;
}

.nav-button:hover {
    background-color: var(--color-gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(213, 163, 78, 0.4);
}

.nav-button:active {
    transform: translateY(-50%) scale(0.95);
}

.nav-button.prev {
    left: 20px;
}

.nav-button.next {
    right: 20px;
}

.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(90, 135, 128, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dot:hover {
    background-color: rgba(90, 135, 128, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background-color: var(--color-teal);
    border-color: var(--color-gold);
    transform: scale(1.3);
}

.play-pause-button {
    position: absolute;
    bottom: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-teal);
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(90, 135, 128, 0.3);
    z-index: 10;
}

.play-pause-button:hover {
    background-color: var(--color-gold);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(213, 163, 78, 0.4);
}

.play-icon,
.pause-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =====================================================
   10. MÉTHODE POYET
   ===================================================== */

.about-poyet {
    background-color: white;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    text-align: justify;
}

.highlight {
    background-color: rgba(90, 135, 128, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid var(--color-teal);
}

.highlight p {
    font-size: 1.15rem;
    font-weight: 500;
    margin: 0;
}

/* Timeline */
.deroulement {
    background: linear-gradient(135deg, var(--color-cream) 0%, #fff 100%);
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--color-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.timeline-content {
    flex-grow: 1;
    background-color: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.timeline-content h3 {
    color: var(--color-teal);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.timeline-content p {
    margin: 0;
    line-height: 1.7;
}

/* Indications */
.indications {
    background-color: white;
}

.indications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.indication-card {
    background-color: var(--color-cream);
    padding: 2rem;
    border-radius: 15px;
    border-top: 4px solid var(--color-rose);
    transition: transform 0.3s, box-shadow 0.3s;
}

.indication-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.indication-card h3 {
    color: var(--color-rose);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.indication-card ul {
    list-style: none;
    padding: 0;
}

.indication-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.indication-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-rose);
    font-size: 1.5rem;
    line-height: 1.2;
}

/* =====================================================
   11. YOGA
   ===================================================== */

.yoga-intro {
    background: linear-gradient(135deg, var(--color-cream) 0%, #fff 100%);
    padding-top: 3rem;
}

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

.yoga-intro img {
    max-width: 550px;
    border-radius: 50%;
    padding: 12px;
    background: var(--color-cream);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: transform 0.5s ease;
}

.yoga-intro img:hover {
    transform: scale(1.05);
}

.intro-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-teal);
    margin-bottom: 3rem;
    line-height: 1.9;
    padding: 2rem;
    background-color: rgba(90, 135, 128, 0.08);
    border-radius: 15px;
}

.iyengar-section {
    background-color: white;
}

.iyengar-content {
    max-width: 900px;
    margin: 0 auto;
}

.iyengar-intro {
    background-color: var(--color-cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--color-gold);
}

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

.iyengar-content h3 {
    color: var(--color-teal);
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem 0;
}

.iyengar-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    text-align: justify;
}

.iyengar-content img {
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.iyengar-content img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(90, 135, 128, 0.1), rgba(216, 167, 167, 0.1));
    padding: 2rem;
    border-radius: 15px;
    margin: 2.5rem 0;
    border-left: 4px solid var(--color-rose);
}

.highlight-box p {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-dark);
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.content-with-image.reverse {
    direction: rtl;
}

.content-with-image.reverse > * {
    direction: ltr;
}

.deroulement-section {
    background: linear-gradient(135deg, var(--color-cream) 0%, #fff 100%);
}

.deroulement-content {
    max-width: 900px;
    margin: 0 auto;
}

.deroulement-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    text-align: justify;
}

.practice-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.practice-card {
    width: 100%;
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 300px;
    flex: 0 0 calc(25% - 1.5rem);
}

.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.practice-card h3 {
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.practice-card p {
    margin: 0;
    text-align: center;
    font-size: 1rem;
}

/* =====================================================
   12. CITATIONS & CTA
   ===================================================== */

.quote-section {
    background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-gold) 100%);
    color: white;
    text-align: center;
}

.quote-content {
    max-width: 900px;
    margin: 0 auto;
}

.quote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.quote-author {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
}

.quote-author::before {
    content: "— ";
}

.conclusion-section {
    background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-gold) 100%);
    color: white;
    text-align: center;
}

.conclusion-quote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.cta-section {
    background-color: var(--color-cream);
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--color-teal);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(90, 135, 128, 0.3);
}

.cta-button:hover {
    background-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(213, 163, 78, 0.4);
}

/* =====================================================
   13. CONTACT
   ===================================================== */

.contact-section {
    padding: 4rem 2rem;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background-color: var(--color-cream);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid var(--color-teal);
}

.info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.info-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--color-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.info-content h3 {
    color: var(--color-teal);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.info-content p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.info-content a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: var(--color-gold);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    height: 100%;
    min-height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
}

/* Horaires */
.horaires-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--color-cream) 0%, #fff 100%);
}

.horaires-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.horaire-card {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 4px solid var(--color-gold);
}

.horaire-card h3 {
    color: var(--color-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.horaire-card p {
    margin: 0.5rem 0;
    font-size: 1.05rem;
}

/* =====================================================
   14. FOOTER
   ===================================================== */

footer {
    background-color: var(--color-teal);
    color: white;
    text-align: center;
    padding: 2rem;
}

/* =====================================================
   15. RESPONSIVE
   ===================================================== */

@media (max-width: 1024px) {
    .indications-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .practice-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .coverflow-item {
        width: 300px;
        height: 300px;
    }

    .coverflow-container {
        height: 450px;
    }

    .nav-button {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
}

@media (max-width: 968px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .intro-image {
        height: 300px;
        margin: 0 auto;
    }

    .accordion-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .accordion-image {
        width: 100%;
        height: 250px;
    }

    .accordion-icon {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }

    .accordion-body {
        padding: 2rem 1.5rem;
    }

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

    .map-container {
        order: -1;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0.5rem;
    }

    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-tealNav);
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        gap: 1rem;
    }

    nav ul.active {
        display: flex;
    }

    .headerLogo {
        font-size: 1.5rem;
    }

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

    .hero .logo {
        padding-top: 30px;
        width: 400px;
    }

    .hero p {
        font-size: 1.3rem;
        line-height: 1.5;
        max-width: 300px;
    }

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

    .section-subtitle {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .services .service-card img {
        width: 200px;
    }

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

    .accordion-header h3 {
        font-size: 1.6rem;
        padding-right: 60px;
    }

    .bio-conclusion p {
        font-size: 1.2rem;
    }

    .coverflow-section {
        padding: 3rem 1rem;
        min-height: auto;
    }

    .coverflow-item {
        width: 250px;
        height: 250px;
    }

    .timeline {
        max-width: 100%;
        padding: 0 1rem;
    }

    .timeline-item {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .indications-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .yoga-intro img {
        max-width: 300px;
        padding: 8px;
    }

    .iyengar-content img {
        max-width: 280px;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.10);
    }

    .content-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-with-image.reverse {
        direction: ltr;
    }

    .intro-quote {
        font-size: 1.05rem;
        padding: 1.5rem;
    }

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

@media (max-width: 640px) {
    .section-title {
        font-size: 2.2rem;
    }

    .about-intro {
        padding: 1.5rem;
    }

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

    .accordion-header {
        padding: 1.5rem;
    }

    .accordion-image {
        height: 200px;
    }

    .accordion-header h3 {
        font-size: 1.4rem;
    }

    .accordion-subtitle {
        font-size: 1rem;
    }

    .accordion-body {
        padding: 1.5rem;
    }

    .accordion-body p {
        font-size: 1.05rem;
        text-align: left;
    }

    .bio-conclusion {
        padding: 2.5rem 1.5rem;
    }

    .bio-conclusion p {
        font-size: 1.1rem;
    }

    .practice-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    .coverflow-item {
        width: 220px;
        height: 220px;
    }

    .nav-button {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }

    .timeline-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .indication-card {
        padding: 1.2rem;
        border-top-width: 3px;
    }
}
/* =====================================================
   15. RESPONSIVE - CORRECTIONS GALERIE 3D
   ===================================================== */

@media (max-width: 1024px) {
    .coverflow-section {
        overflow: hidden; /* CRITIQUE pour éviter le débordement */
        padding: 3rem 1rem;
    }
    
    .coverflow-wrapper {
        max-width: 100%;
        overflow: hidden; /* CRITIQUE */
    }
    
    .coverflow-container {
        height: 400px;
        overflow: hidden; /* CRITIQUE */
        width: 100%;
        max-width: 100vw; /* Ne jamais dépasser la largeur de l'écran */
    }

    .coverflow-item {
        width: 280px;
        height: 280px;
    }

    .nav-button {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .nav-button.prev {
        left: 10px;
    }
    
    .nav-button.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .coverflow-section {
        padding: 3rem 0.5rem; /* Réduire le padding latéral */
        min-height: auto;
        overflow-x: hidden; /* CRITIQUE - cache le débordement horizontal */
    }
    
    .coverflow-wrapper {
        gap: 2rem;
        padding: 0;
        overflow: hidden; /* CRITIQUE */
    }
    
    .info {
        padding: 0 1rem;
        max-width: 90%;
    }
    
    .coverflow-container {
        height: 380px;
        padding: 0;
        overflow: hidden; /* CRITIQUE */
    }
    
    .coverflow {
        height: 320px;
    }

    .coverflow-item {
        width: 240px;
        height: 240px;
    }
    
    .reflection {
        height: 60px;
        bottom: -60px;
    }
    
    .nav-button {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    .nav-button.prev {
        left: 5px;
    }
    
    .nav-button.next {
        right: 5px;
    }
    
    .dots-container {
        bottom: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .play-pause-button {
        width: 45px;
        height: 45px;
        bottom: 10px;
        right: 10px;
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .coverflow-section {
        padding: 2.5rem 0; /* Pas de padding latéral */
        overflow-x: hidden; /* CRITIQUE */
    }
    
    .coverflow-container {
        height: 350px;
        overflow: hidden; /* CRITIQUE */
    }
    
    .coverflow {
        height: 280px;
    }

    .coverflow-item {
        width: 200px;
        height: 200px;
    }
    
    .coverflow-item .cover {
        border-width: 2px;
    }
    
    .reflection {
        height: 50px;
        bottom: -50px;
    }
    
    .nav-button {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .coverflow-section {
        padding: 2rem 0;
        overflow-x: hidden; /* CRITIQUE */
    }
    
    .info h2 {
        font-size: 1.5rem;
    }
    
    .info p {
        font-size: 1rem;
    }
    
    .coverflow-container {
        height: 320px;
        overflow: hidden; /* CRITIQUE */
    }
    
    .coverflow {
        height: 250px;
    }

    .coverflow-item {
        width: 180px;
        height: 180px;
    }
    
    .nav-button {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .nav-button.prev {
        left: 2px;
    }
    
    .nav-button.next {
        right: 2px;
    }
    
    .dots-container {
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .play-pause-button {
        width: 40px;
        height: 40px;
        bottom: 5px;
        right: 5px;
    }
}

/* AJOUT CRITIQUE - Empêcher tout débordement horizontal sur mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    main {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .container {
        max-width: 100%;
        padding: 0 1rem;
    }
}

/* =====================================================
   FIN DU CSS
   ===================================================== */