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

:root {
    --bg-primary: #F3F3F3;
    --color-title: #5a5940;
    --color-text: #6a6a5a;
    --color-accent-1: #e8dfd0;
    --color-accent-2: #F3E7D9;
    --color-border: #8C885C;
    --color-nav-bg: #F3E7D9;
    --color-button: #b5ad96;
}

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

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-nav-bg);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid var(--color-border);
    border-radius: 30px;
    max-width: 1400px;
    width: 90%;
    gap: 20px;
}

.logo {
    width: 60px;
    height: 60px;
    z-index: 1001;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.burger-line {
    width: 25px;
    height: 3px;
    background-color: var(--color-title);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

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

.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0 auto;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    padding: 10px 24px;
    border-radius: 25px;
    border: 1px solid #c4bfb3;
    background-color: transparent;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.nav-cta {
    padding: 10px 24px;
    border-radius: 25px;
    background-color: var(--color-button) !important;
    color: #ffffff !important;
    border: 1px solid var(--color-button) !important;
    font-weight: 600;
    cursor: pointer;
    margin-left: auto;
}

.nav-cta:hover {
    background-color: #a09882 !important;
}

/* Hero Section */
.hero {
    margin-top: 100px;
    padding: 80px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    min-height: calc(100vh - 100px);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--color-title);
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 30px;
    border: 1px solid #c4bfb3;
    color: var(--color-button);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: rgba(181, 173, 150, 0.1);
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    width: 100%;
    max-width: 700px;
    height: auto;
    position: relative;
    z-index: 2;
}

/* .illustration-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--color-accent-2) 0%, var(--color-accent-1) 100%);
    border-radius: 50%;
    z-index: 1;
} */

/* Psychomotricité Section */
.psychomotricite {
    padding: 100px 100px;
    position: relative;
    display: flex; 
    align-items: center;
    gap: 80px;border-radius: 60px 60px 60px 60px;
    background: linear-gradient(135deg, var(--color-accent-2) 0%, var(--color-accent-1) 100%);
    border-radius: 50% 50% 50% 50% / 100px 100px 100px 100px;
    }

/* .psychomotricite > * {
    position: relative;
    z-index: 1;
} */

.psycho-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.psycho-circle {
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.psycho-toys {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.psycho-content {
    flex: 1;
    padding-right: 40px;
}

.psycho-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-title);
    margin-bottom: 30px;
    /* max-width: 400px; */
}

.psycho-content p {
    font-size: 17px;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.8;
    /* max-width: 500px; */
}

/* Indications Section */
.indications {
    padding: 100px 100px;
    background-color: var(--bg-primary);
}

.indications-header {
    text-align: center;
    margin-bottom: 60px;
}

.indications-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-title);
    margin-bottom: 15px;
}

.indications-subtitle {
    font-size: 18px;
    color: var(--color-text);
    opacity: 0.8;
}

.indications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.indication-card {
    background: linear-gradient(135deg, var(--color-accent-2) 0%, var(--color-accent-1) 100%);
    border-radius: 40px;
    padding: 30px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

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

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block; /* Change de inline-block à block */
    text-align: center; /* Centre l'icône */
    transition: transform 0.3s ease;
}

.indication-card:hover .card-icon {
    transform: scale(1.2) rotate(10deg);
}

.indication-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-title);
    margin-bottom: 25px;
    text-align: center;
}

.card-content ul {
    list-style: none;
}

.card-content li {
    font-size: 15px;
    color: var(--color-text);
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.card-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--color-title);
    border-radius: 50%;
}

/* Indication Card Full Width */
.indication-card-full {
    grid-column: 1 / -1; /* Prend toute la largeur de la grille */
    max-width: 100%;
}

/* Indication Card Full Width - Liste horizontale */
.indication-card-full .card-content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.indication-card-full .card-content li {
    flex: 1;
    min-width: 250px;
    margin-bottom: 0;
}

/* Praticienne Section */
.praticienne {
    padding: 100px 100px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 80px;
    background: linear-gradient(135deg, var(--color-accent-2) 0%, var(--color-accent-1) 100%);
    border-radius: 50% 50% 50% 50% / 100px 100px 100px 100px;
}

/* .praticienne > * {
    position: relative;
    z-index: 1;
} */

.praticienne-image {
    flex: 0.8;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .praticienne-circle-bg {
    width: 500px;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.praticienne-photo-container {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-title);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.praticienne-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.praticienne-content {
    flex: 1.2;
}

.praticienne-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-title);
    margin-bottom: 30px;
}

.praticienne-content p {
    font-size: 17px;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.praticienne-content strong {
    color: var(--color-title);
    font-weight: 600;
}

/* Collaboratrice Card */
.collaboratrice-card-container {
    position: relative;
    z-index: 10;
    padding: 0 100px;
    margin-top: -55px; /* Superposition sur desktop */
    margin-bottom: 80px;
}

.collaboratrice-card {
    max-width: 750px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 40px;
    text-align: center;
    border: 2px solid rgba(90, 89, 64, 0.1);
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.collaboratrice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border-color: var(--color-title);
}

.collaboratrice-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-title);
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
}

.collaboratrice-card p {
    font-size: 17px;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.collaboratrice-card p:last-child {
    margin-bottom: 0;
}

.collaboratrice-photo-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--color-title);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.collaboratrice-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tarifs Section */
.tarifs {
    padding: 100px 100px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--color-accent-1) 100%);
}

.tarifs-container {
    max-width: 1400px;
    margin: 0 auto;
}

.tarifs-header {
    text-align: center;
    margin-bottom: 60px;
}

.tarifs-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-title);
    margin-bottom: 15px;
}

.tarifs-subtitle {
    font-size: 18px;
    color: var(--color-text);
    opacity: 0.8;
}

.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
    max-width: 1200px; /* Ajoute cette ligne pour limiter la largeur */
    margin-left: auto; /* Ajoute cette ligne pour centrer */
    margin-right: auto; /* Ajoute cette ligne pour centrer */
}

.tarif-bubble {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(90, 89, 64, 0.1);
}

.tarif-bubble:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--color-title);
}

.tarif-bubble.large {
    grid-column: span 2;
    border-radius: 40px;
    aspect-ratio: auto;
}

.tarif-bubble.large.devis {
    background: linear-gradient(135deg, var(--color-accent-2) 0%, var(--color-accent-1) 100%);
    grid-column: span 2;
    border-radius: 40px;
    aspect-ratio: auto;
}

.tarif-bubble.accent {
    background: linear-gradient(135deg, var(--color-accent-2) 0%, var(--color-accent-1) 100%);
    border-radius: 40px;
    aspect-ratio: auto;
}

/* .tarif-duration {
    font-size: 14px; 
    font-weight: 500;
    color: var(--color-title);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
} */

.tarif-price {
    font-size: 16px; /* Réduit de 48px à 16px */
    font-weight: 500; /* Réduit de 700 à 500 */
    color: var(--color-text); /* Change la couleur */
    font-family: 'Inter', sans-serif; /* Change la font */
    margin-top: 10px;
    margin-bottom: 10px;
}

.tarif-label {
    font-size: 20px; /* Augmente de 16px à 42px */
    font-weight: 700; /* Augmente de 500 à 700 */
    color: var(--color-title); /* Change la couleur */
    font-family: 'Playfair Display', serif; /* Ajoute cette ligne */
    margin-bottom: 5px;
    line-height: 1; /* Ajoute cette ligne pour éviter l'espacement */
}

.tarif-description {
    font-size: 14px;
    color: var(--color-text);
    opacity: 0.8;
    line-height: 1.5;
    max-width: 200px;
}

.tarifs-note {
    background: rgba(255, 255, 255, 0.5);
    border-left: 4px solid var(--color-title);
    border-radius: 15px;
    padding: 25px 30px;
    margin-top: 40px;
}

.tarifs-note p {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 100px;
    background: var(--color-accent-1);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-title);
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 18px;
    color: var(--color-text);
    opacity: 0.8;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-title);
    margin-bottom: 8px;
}

.contact-details-div {
    display: flex;
    flex-direction: column;
}

.contact-details p {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.6;
}

.contact-details a {
    color: var(--color-title);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 15px;
}

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

.contact-map-section {
    display: flex;
    flex-direction: row; /* Changé de column à row */
    gap: 20px;
}

.contact-map {
    border-radius: 30px;
    overflow: hidden;
    height: 450px;
    flex: 1; /* Ajoute flex: 1 pour que chaque élément prenne 50% */
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-photo {
    border-radius: 30px;
    overflow: hidden;
    height: 450px;
    flex: 1; /* Ajoute flex: 1 pour que chaque élément prenne 50% */
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.contact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Barkley Page Styles */
.barkley-section {
    padding: 40px 100px;
    position: relative;
}

.barkley-section.barkley-bg {
    background: transparent;
    border-radius: 0;
}

.barkley-content-full {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 50px;
    border: 2px solid rgba(90, 89, 64, 0.1);
    transition: all 0.4s ease;
}

.barkley-section.barkley-bg .barkley-content-full {
    background: linear-gradient(135deg, var(--color-accent-2) 0%, var(--color-accent-1) 100%);
}

.barkley-content-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--color-title);
}

.barkley-icon {
    font-size: 64px;
    margin-bottom: 30px;
    display: block;
    text-align: center;
    transition: transform 0.3s ease;
}

.barkley-content-full:hover .barkley-icon {
    transform: scale(1.1);
}

.barkley-content-full h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-title);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.barkley-content-full p {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.barkley-content-full p:last-child {
    margin-bottom: 0;
}

.barkley-content-full strong {
    color: var(--color-title);
    font-weight: 600;
}

.barkley-ul {
    list-style: none;
}

/* Footer */
footer {
    background-color: var(--color-title);
    color: #ffffff;
    text-align: center;
    padding: 30px 20px;
    font-size: 14px;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-illustration {
    animation: float 6s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 1100px) {
    .hero, .psychomotricite, .praticienne, .indications, .tarifs, .contact {
        padding: 60px 50px;
    }

    .hero h1 {
        font-size: 42px;
    }

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

    .contact-map-section {
        flex-direction: column; /* Revient en colonne sur mobile */
    }

    .contact-map,
    .contact-photo {
        height: 250px;
    }

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

    .tarif-bubble.large {
        grid-column: span 1;
    }

    nav {
        padding: 15px 20px;
    }

    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: auto; 
        max-height: 100vh; 
        background-color: var(--color-nav-bg);
        flex-direction: column;
        justify-content: flex-start; 
        align-items: stretch;
        gap: 0;
        margin: 0; 
        padding: 60px 30px 20px 30px; 
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
        border-radius: 30px 30px 30px 30px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 15px 20px;
        font-size: 16px;
        text-align: center;
        border-radius: 15px;
        margin-bottom: 10px;
    }

    .nav-cta {
        position: static;
        width: 100%;
        max-width: none;
        margin-top: 20px;
        margin-left: 0;
        display: block;
        text-align: center;
    }

    .nav-cta.active {
        right: auto;
    }

    /* Overlay when menu is open */
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0);
        pointer-events: none;
        transition: background-color 0.4s ease;
        z-index: 999;
    }

    body.menu-open::after {
        background-color: rgba(0, 0, 0, 0.5);
        pointer-events: all;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero, .psychomotricite, .praticienne {
        flex-direction: column;
        text-align: center;
    }

    .psycho-content {
        padding-right: 0;
    }

    .psycho-content p {
        padding-right: 5px;
        padding-left: 5px;
    }

    .praticienne-photo-container {
        width: 250px;
        height: 250px;
    }

    .praticienne-circle-bg {
        width: 300px;
        height: 300px;
    }

    /* .psychomotricite::before,
    .praticienne::before {
        display: none; 
    } */

    .psychomotricite,
    .praticienne {
        background: linear-gradient(135deg, var(--color-accent-2) 0%, var(--color-accent-1) 100%);
        border-radius: 30px; /* Coins arrondis */
        padding: 60px 30px; /* Ajuste le padding si nécessaire */
    }

    .hero h1 {
        font-size: 36px;
    }

    .illustration-bg {
        display: none;
    }

    .psycho-circle {
        /* width: 350px;
        height: 350px; */
        display: none;
    }

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

    .indication-card-full {
        grid-column: auto; /* Annule le span sur mobile */
    }

    .indication-card-full .card-content ul {
        display: block; /* Annule le flex sur mobile */
    }

    .indication-card-full .card-content li {
        flex: none;
        min-width: auto;
        margin-bottom: 15px; /* Remet la marge verticale sur mobile */
    }

    /* Collaboratrice Card Mobile */
    .collaboratrice-card-container {
        padding: 0 30px;
        margin-top: -30px; 
        margin-bottom: 0;
    }

    .collaboratrice-card {
        padding: 30px 25px;
        border-radius: 30px;
    }

    .collaboratrice-card h3 {
        font-size: 22px;
    }

    .collaboratrice-card p {
        font-size: 15px;
    }

    .tarifs-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .tarif-bubble {
        width: 100%;
        max-width: 300px;
    }

    .tarif-bubble.large,
    .tarif-bubble.large.devis {
        width: 100%;
        max-width: 300px;
    }

    .tarif-bubble {
        border-radius: 30px;
        aspect-ratio: auto;
        padding: 30px;
    }

    .contact {
        padding: 60px 20px !important;
    }

    /* Barkley Page Mobile */
    .barkley-section {
        padding: 60px 30px;
    }

    .barkley-content-full {
        padding: 40px 30px;
        border-radius: 30px;
    }

    .barkley-content-full h2 {
        font-size: 32px;
    }

    .barkley-content-full p {
        font-size: 16px;
    }

    .barkley-icon {
        font-size: 48px;
    }
}

@media (min-width: 1101px) and (max-width: 1489px) {
    .indications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* iPhone SE et très petits écrans */
@media (max-width: 385px) {
    .contact {
        padding: 60px 15px !important;
    }

    .contact-item {
        padding: 20px 15px;
    }

    .contact-icon {
        font-size: 28px;
    }

    .contact-details h3 {
        font-size: 16px;
    }

    .contact-details a,
    .contact-details p {
        font-size: 14px;
    }

    .contact-header h2 {
        font-size: 32px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    /* Réduire aussi les autres sections si besoin */
    .hero {
        padding: 40px 15px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .psychomotricite,
    .praticienne,
    .indications,
    .tarifs {
        padding: 40px 15px;
    }
}