/* ===== CONFIGURATION GÉNÉRALE & PALETTE VIBRANTE ===== */
:root {
    --primary-text: #1A202C; 
    --secondary-text: #4A5568;
    --background-light: #FFFFFF; 
    --accent-color: #00A896; /* Turquoise/Teal Vif */
    --secondary-accent: #FF7F11; /* Orange Énergique */
    --tertiary-accent: #FDE74C; /* Jaune Vif */
    --dark-background: #1A202C; /* Navy pour footer */
    --header-height: 80px;
    --highlight-color: #F8F8F8; /* Gris très pâle */
    
    /* COULEURS DES LIENS DE NAVIGATION MULTICOLORES */
    --link-color-1: #FFD400; /* Jaune - Accueil */
    --link-color-2: #7E489C; /* Violet - Psychomotricité */
    --link-color-3: #FF7F11; /* Orange - Qui suis-je */
    --link-color-4: #EC4C9B; /* Rose/Magenta - Bilan */
    --link-color-5: #A2CC33; /* Vert Citron - Infos */
    --link-color-6: #00C1D5; /* Cyan - Me situer */
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    color: var(--primary-text);
    background-color: var(--background-light);
    line-height: 1.6;
}

/* ===== BARRE DE NAVIGATION EN HAUT ===== */
.nav-bar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid var(--accent-color);
    z-index: 1000;
    padding: 0 4vw;
    display: flex;
    align-items: center;
    min-height: var(--header-height);
}

.nav-menu {
    display: flex;
    margin-left: auto;
    gap: 10px;
}

.nav-link {
    padding: 0 1rem;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    font-size: 15px;
}

.nav-menu a:nth-child(1) { color: var(--link-color-1); }
.nav-menu a:nth-child(2) { color: var(--link-color-2); }
.nav-menu a:nth-child(3) { color: var(--link-color-3); }
.nav-menu a:nth-child(4) { color: var(--link-color-4); }
.nav-menu a:nth-child(5) { color: var(--link-color-5); }
.nav-menu a:nth-child(6) { color: var(--link-color-6); }

.nav-link:hover {
    color: white;
    background-color: var(--accent-color);
    padding: 0.5rem 1rem; 
    border-radius: 0.25rem;
}

.cta-button-nav {
    color: white !important;
    background-color: var(--secondary-accent);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 800;
    margin-left: 1rem;
    box-shadow: 0 4px 8px rgba(255, 127, 17, 0.3);
}

.cta-button-nav:hover {
    background-color: var(--accent-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-left: auto;
}

/* ===== HEADER AVEC FOND BLANC ===== */
.main-header {
    position: relative;
    background-image: url('header-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 400px;
    padding: 60px 20px;
}

/* Overlay blanc 50% sur le header */
.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 0;
}

.header-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px; /* Réduit à 10px pour rapprocher encore plus */
}

/* 3 Photos à GAUCHE */
.floating-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-left: 80px; /* Augmenté à 80px pour rapprocher du centre */
}

/* Logo CENTRÉ */
.logo-center {
    flex-shrink: 0;
}

.header-logo {
    width: 350px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

/* 3 Photos à DROITE */
.floating-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-right: 80px; /* Augmenté à 80px pour rapprocher du centre */
}

.floating-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.floating-photo:hover {
    transform: scale(1.1);
}

.photo-1 { border-color: var(--link-color-1); animation-delay: 0s; }
.photo-2 { border-color: var(--link-color-2); animation-delay: 0.5s; }
.photo-3 { border-color: var(--link-color-3); animation-delay: 1s; }
.photo-4 { border-color: var(--link-color-4); animation-delay: 1.5s; }
.photo-5 { border-color: var(--link-color-5); animation-delay: 2s; }
.photo-6 { border-color: var(--link-color-6); animation-delay: 2.5s; }

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

/* ===== SECTION PSYCHOMOTRICITÉ STYLE ORIGINAL ===== */
.psycho-section-original {
    position: relative;
    width: 100%;
    min-height: 600px;
}

/* Barre de titre violet en haut */
.psycho-title-bar {
    background: linear-gradient(135deg, #7E489C 0%, #9B5DC0 100%);
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

.psycho-title-bar h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 300;
    font-style: italic;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Container du slider avec fond changeant */
.psycho-slider-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
}

.psycho-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.psycho-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
}

.psycho-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Boîte de contenu blanche 50% opacité */
.psycho-content-box {
    background: rgba(255, 255, 255, 0.5);
    padding: 50px 60px;
    border-radius: 15px;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.psycho-content-box h3 {
    color: #7E489C; /* Violet */
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 25px;
    text-align: left;
}

.psycho-content-box p {
    color: #000; /* Noir */
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.psycho-content-box strong {
    color: #000;
    font-weight: 700;
}

.read-more-violet {
    display: inline-block;
    color: #7E489C;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.read-more-violet:hover {
    color: #9B5DC0;
    text-decoration: underline;
}

/* Dots de navigation */
.psycho-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.psycho-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.psycho-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.psycho-dot.active {
    background-color: white;
    transform: scale(1.3);
}

/* ===== SECTION QUI SUIS-JE AVEC PHOTO DE FOND ===== */
.qui-suis-je-section {
    position: relative;
    background-image: url('qui-suis-je-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 0;
    border-top: 3px solid #000; /* Ligne noire de séparation */
}

.qui-suis-je-container {
    position: relative;
    z-index: 1;
}

/* Layout : photo à gauche, texte orange à droite */
.qui-suis-je-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2rem;
}

/* Photo à gauche */
.column-image-left {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* Bloc orange (premier texte) à droite de la photo */
.column-text-orange {
    background-color: #ff7f00;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.column-text-orange p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Bloc blanc PLEINE LARGEUR en dessous (plus large, moins haut) */
.column-text-white-full {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.column-text-white-full h3 {
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 1rem;
    display: inline-block;
    margin-right: 1rem;
}

.column-text-white-full p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    display: inline;
}

/* Textes colorés */
.text-white {
    color: white !important;
}

.text-orange {
    color: #ff7f00 !important;
}

.text-dark {
    color: #333 !important;
}

/* Lien "Lire la suite" orange */
.read-more-orange {
    display: inline-block;
    color: #ff7f00;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    font-size: 1rem;
    transition: color 0.3s ease;
    float: right;
}

.read-more-orange:hover {
    color: #ff9933;
    text-decoration: underline;
}

/* Photo de profil */
.photo-profile {
    border-radius: 50%;
    height: 350px;
    width: 350px;
    object-fit: cover;
    border: 5px solid var(--tertiary-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== SECTION BILAN & SÉANCES AVEC PHOTO DE FOND ===== */
.bilan-seances-section {
    position: relative;
    background-image: url('bilan-seances-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-top: 3px solid #000;
}

/* Bloc rose pour les titres */
.title-rose-box {
    background-color: #f14975;
    padding: 30px 50px;
    border-radius: 15px;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.title-rose-box .section-title,
.title-rose-box .section-subtitle-line {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Blocs info avec fond rose #f14975 */
.info-block-rose {
    background-color: #f14975 !important;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: none !important;
}

.info-block-rose p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    text-align: justify;
    line-height: 1.8;
}

/* Titre de bloc en blanc */
.block-title-white {
    color: white !important;
    border-bottom-color: white !important;
}

/* Bouton blanc */
.cta-button-white {
    background-color: white !important;
    color: #f14975 !important;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
}

.cta-button-white:hover {
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: #f14975 !important;
    transform: translateY(-2px);
}

/* ===== SECTIONS DE CONTENU ===== */
.content-section {
    padding: 5rem 0;
    width: 100%;
}

.content-section:nth-child(even) {
    background-color: var(--background-light);
}

.alt-bg {
    background-color: var(--highlight-color);
}

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

/* ===== TITRES DE SECTION ===== */
.section-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.25rem;
    color: var(--secondary-accent);
    text-transform: uppercase;
}

.section-subtitle-line {
    display: block;
    text-align: center;
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

/* ===== SOUS-TITRES DE BLOC ===== */
.block-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--tertiary-accent);
    padding-bottom: 0.25rem;
    display: inline-block;
}

.block-title.centered {
    display: block;
    text-align: center;
    width: 100%;
}

/* ===== BOUTONS CTA ===== */
.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 168, 150, 0.3);
    text-decoration: none;
    font-size: 16px;
}

.cta-button:hover {
    background-color: var(--secondary-accent);
    transform: translateY(-1px);
}

.cta-button.secondary {
    background-color: var(--secondary-accent);
    box-shadow: 0 4px 8px rgba(255, 127, 17, 0.3);
}

.cta-button.secondary:hover {
    background-color: var(--accent-color);
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

/* ===== DISPOSITION EN COLONNES ===== */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.two-columns.reverse .column-text {
    order: 2;
}

.two-columns.reverse .column-image {
    order: 1;
}

.column-text p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    text-align: justify;
    line-height: 1.8;
    color: var(--secondary-text);
}

.column-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== IMAGES AVEC CADRE ===== */
.img-with-frame {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
    border: 5px solid var(--tertiary-accent);
}

.photo-profile {
    border-radius: 50%;
    height: 350px;
    width: 350px;
    object-fit: cover;
}

/* ===== GRILLE 2 COLONNES ===== */
.grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* ===== BLOCS D'INFO ===== */
.info-block {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

.info-block p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    text-align: justify;
    line-height: 1.8;
    color: var(--secondary-text);
}

.highlight-text {
    font-size: 0.9rem;
    text-align: center;
    color: #666;
    margin-top: 1.5rem;
}

.highlight-text strong {
    color: var(--accent-color);
}

/* ===== CONTACT ===== */
.contact-block {
    padding: 2rem;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--accent-color);
}

.address-text {
    font-style: normal;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-text);
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-details p {
    margin-bottom: 0.75rem;
    color: var(--primary-text);
    font-size: 1rem;
}

.contact-details a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--secondary-accent);
}

.map-block {
    position: relative;
}

.map-frame {
    width: 100%;
    height: 450px;
    border-radius: 0.75rem;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
    border: 5px solid var(--tertiary-accent);
}

/* ===== LIEN AVEC FLÈCHE ===== */
.link-arrow {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-text);
    text-decoration: none;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: var(--primary-text);
}

/* ===== FOOTER ===== */
.main-footer {
    background-color: var(--dark-background);
    color: white;
    padding: 3rem 0;
    font-size: 0.9rem;
    text-align: center;
}

.main-footer p {
    margin-bottom: 0.5rem;
}

.footer-small {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 0.75rem 4vw;
        text-align: left;
        width: 100%;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .header-logo {
        width: 250px;
    }
    
    .floating-photo {
        width: 100px;
        height: 100px;
        border-width: 4px;
    }
    
    .floating-left,
    .floating-right {
        gap: 20px;
    }
    
    .psycho-title-bar h2 {
        font-size: 1.8rem;
    }
    
    .psycho-slider-wrapper {
        height: 500px;
    }
    
    .psycho-content-box {
        padding: 30px 40px;
        max-width: 500px;
    }
    
    .psycho-content-box h3 {
        font-size: 1.5rem;
    }
    
    .psycho-content-box p {
        font-size: 0.95rem;
    }
    
    .qui-suis-je-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .column-image-left {
        order: 2;
    }
    
    .column-text-orange {
        order: 1;
        padding: 30px;
    }
    
    .column-text-white-full {
        padding: 25px 30px;
    }
    
    .column-text-white-full h3 {
        display: block;
        margin-bottom: 1rem;
    }
    
    .column-text-white-full p {
        display: block;
    }
    
    .qui-suis-je-section {
        background-attachment: scroll;
    }
    
    .bilan-seances-section {
        background-attachment: scroll;
    }
    
    .title-rose-box {
        padding: 20px 30px;
    }
    
    .two-columns,
    .grid-two {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .two-columns.reverse .column-text,
    .two-columns.reverse .column-image {
        order: initial;
    }
    
    .img-with-frame {
        height: 300px;
    }
    
    .photo-profile {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 600px) {
    .main-header {
        min-height: 300px;
        padding: 40px 10px;
    }
    
    .header-content {
        gap: 20px;
    }
    
    .header-logo {
        width: 180px;
    }
    
    .floating-photo {
        width: 70px;
        height: 70px;
        border-width: 3px;
    }
    
    .floating-left,
    .floating-right {
        gap: 15px;
    }
    
    .psycho-title-bar h2 {
        font-size: 1.5rem;
        padding: 0 20px;
    }
    
    .psycho-slider-wrapper {
        height: 450px;
    }
    
    .psycho-slide {
        padding: 0 5%;
    }
    
    .psycho-content-box {
        padding: 25px 30px;
        max-width: 100%;
    }
    
    .psycho-content-box h3 {
        font-size: 1.3rem;
    }
    
    .psycho-content-box p {
        font-size: 0.9rem;
    }
    
    .psycho-dots {
        bottom: 20px;
    }
    
    .psycho-dot {
        width: 10px;
        height: 10px;
    }
    
    .column-text-orange {
        padding: 20px;
    }
    
    .column-text-white-full {
        padding: 20px 25px;
    }
    
    .column-text-white-full h3 {
        font-size: 1.5rem;
    }
    
    .photo-profile {
        width: 250px;
        height: 250px;
    }
    
    .title-rose-box {
        padding: 15px 20px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle-line {
        font-size: 1.2rem;
    }
}


/* ===== SECTION ME SITUER - STYLE SIMPLE ET ÉPURÉ ===== */
.situer-coordonnees {
    text-align: center;
    margin: 50px 0;
}

.situer-coordonnees h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.situer-coordonnees .adresse {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #333;
    margin: 20px 0;
}

.situer-coordonnees p {
    font-size: 1.125rem;
    margin: 10px 0;
}

.situer-coordonnees a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.situer-coordonnees a:hover {
    text-decoration: underline;
}

/* Plans côte à côte */
.situer-maps-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin: 50px 0;
}

.map-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Infos pratiques - style simple */
.situer-infos-pratiques {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 50px 0;
}

.info-simple {
    text-align: left;
}

.info-simple p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.info-simple strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
    font-size: 1.125rem;
}

/* Info bus avec icône à droite */
.info-bus-simple {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-bus-simple p {
    flex: 1;
}

.bus-img {
    width: 80px;
    height: auto;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .situer-maps-grid {
        grid-template-columns: 1fr;
    }
    
    .situer-infos-pratiques {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .situer-coordonnees h3 {
        font-size: 1.5rem;
    }
    
    .situer-coordonnees .adresse {
        font-size: 1.125rem;
    }
}
