:root {
    --couleur-creme: #FAF0E9;
    --couleur-blanc: #f6f6f6;
    --couleur-orange: #b58974;
    --couleur-texte: #49433f;
    --couleur-sable: #d8cfc2;
    --couleur-terre: #a89985;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    min-height: 100vh;
    background: var(--couleur-blanc);
    position: relative;
    overflow-x: hidden;
    color: var(--couleur-texte);
    line-height: 1.6;
}

/* Sélecteur de langue */
.language-selector {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.lang-link {
    text-decoration: none;
    color: var(--couleur-texte);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 4px 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.lang-link:hover {
    background: var(--couleur-sable);
    color: var(--couleur-orange);
}

.lang-link.active {
    background: var(--couleur-orange);
    color: white;
}

/* Correction pour éviter le scroll horizontal sur mobile */
@media (max-width: 768px) {
    .deco-right {
        display: none;
    }
    
    body {
        overflow-x: hidden !important;
    }
    
    html {
        overflow-x: hidden !important;
    }
    
    .language-selector {
        top: 10px;
        left: 10px;
        padding: 6px 10px;
    }
    
    .lang-link {
        font-size: 0.8rem;
        padding: 3px 6px;
    }
}

/* Style pour le body quand le menu est ouvert */
body.menu-open {
    overflow: hidden;
}

/* Éléments de background animés */
.background-deco {
    position: fixed;
    opacity: 0.15;
    z-index: -1;
}

.deco-left {
    left: -50px;
    top: 20%;
    animation: float 6s ease-in-out infinite;
}

.deco-right {
    right: -50px;
    animation: float 6s ease-in-out infinite 2s;
}

.deco-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--couleur-orange), var(--couleur-sable));
    z-index: 1000;
}

.deco-square {
    width: 100px;
    height: 100px;
    transform: rotate(45deg);
    background: rgba(228, 140, 99, 0.2);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.3rem 2rem;
    
    background: var(--couleur-white);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    justify-content: center;
}


.header-scrolled {
    padding: 1rem 2rem;
    background: rgba(251, 233, 219, 0.571);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    color: #49433f;
}

.header-hidden {
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--couleur-orange);
    animation: fadeIn 1s ease-out;
    font-family: "Merriweather", serif;
    text-decoration: none;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
    position: relative;
}

/* Animation et style améliorés pour les liens de navigation */
.nav-link {
    text-decoration: none;
    color: #392c22;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--couleur-orange);
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--couleur-orange);
    transform: translateY(-2px);
}

.nav-link:hover::before, .nav-link.active::before {
    visibility: visible;
    width: 100%;
}

.nav-link.active {
    color: var(--couleur-orange);
    font-weight: 600;
}



/* Section Hero avec grande image */
.hero-section {
    height: 100vh;
    width: 100%;
    background-image: url('img/istockphoto-1465053603-612x612.webp');
    background-size: cover;
    background-position: center;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(182, 144, 182, 0.31);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 6.8rem;
    margin-bottom: 1rem;
    font-family: "Merriweather", serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--couleur-blanc);
    position: relative;
    display: inline-block;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -0px;
    left: 0;
    width: var(--underline-width, 0%);
    height: 3px;
    background-color: var(--couleur-orange);
    transition: width 0.5s ease;
}

.hero-content .subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    color: #49433f;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--couleur-orange);
    color: white;
    box-shadow: 0 4px 15px rgba(228, 140, 99, 0.3);
}

.btn-primary:hover {
    background-color: var(--couleur-terre);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(228, 140, 99, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: rgb(137, 137, 137);
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--couleur-texte);
    transform: translateY(-3px);
}

/* Conteneur pour les éléments de contenu */
.content-section {
    padding: 60px 40px;
    position: relative;
    background-color: var(--couleur-blanc);
    z-index: 2;
    margin-top: 125vh;
    margin-bottom: 0;
}

.content-section2 {
    padding: 60px 40px;
    position: relative;
    background-color: var(--couleur-blanc);
    z-index: 2;
    margin-top: 5rem;
    margin-bottom: 0;
}

/* Styles spécifiques pour les sections */
.intro-section {
    padding-bottom: 0;
    margin-bottom: 0;
    height: 30rem;
}

.specialites-section {
    padding-top: 0;
    margin-top: 0;
    padding-bottom: 60px;
}

/* Page Banner */
.page-banner {
    height: 35vh;
    min-height: 250px;
    width: 100%;
    background-image: linear-gradient(135deg, var(--couleur-orange) 0%, var(--couleur-sable) 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    margin-top: 80px;
    overflow: hidden;
    padding: 0 20px;
}

.service-detail-image {
    width: 150px; /* Taille du conteneur rond */
    height: 150px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.service-image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%; /* Crée la forme circulaire */
    background: linear-gradient(135deg, #f5e9e2, #ffffff); /* Dégradé subtil */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Cache les parties débordantes du SVG */
    border: 7px solid transparent; /* Bordure transparente pour l'effet de gradient */
    box-shadow: 0 8px 25px rgba(181, 137, 116, 0.25); /* Ombre plus prononcée */
    position: relative;
}

.service-image-placeholder::before {
    content: '';
    position: absolute;
    top: -7px;
    left: -7px;
    right: -7px;
    bottom: -7px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--couleur-orange), var(--couleur-sable));
    z-index: -1;
}

.service-image-placeholder svg {
    width: 60%; /* Taille relative à conteneur */
    height: 60%;
    object-fit: contain; /* Garde le SVG entier et proportionnel */
    color: #b58974; /* Couleur de l'icône */
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2)); /* Ombre portée sur l'icône */
    transition: transform 0.3s ease, filter 0.3s ease;
}

.service-image-placeholder:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.3));
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.banner-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: "Merriweather", serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-content p {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 600px;
    margin: 5rem auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

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

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

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

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

@media (max-width: 174px) {
    .hero-description {
        margin-bottom: 2rem; /* Ajoute de l'espace en dessous de la description */
        font-size: 0.8rem; /* Réduit la taille de la police */
    }
}

/* Media Queries pour la responsivité */
@media (max-width: 992px) {

    
    .content-section, .content-section2 {
        padding: 60px 30px;
    }
    
    .content-section h2, .content-section2 h2 {
        font-size: 2rem;
    }
}

/* Grille pour l'accompagnement spécialisé */
.specialized-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.specialized-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialized-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.specialized-item h3 {
    color: var(--couleur-orange);
    margin-bottom: 1rem;
}

/* Styles pour le menu mobile */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 30px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--couleur-orange);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
}

@media (max-width: 1024px) {
    /* Afficher le bouton hamburger et cacher le header par défaut */
    .mobile-menu-toggle {
        display: flex;
    }
    
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(251, 233, 219, 0.95);
        transform: translateX(-100%);
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
    }

    header.mobile-menu-open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .page-banner h1 {
        padding: 0 20px;
    }

    .philosophy-image,
    .music-experience-image {
        margin-bottom: 30px;
    }
    
    header.mobile-menu-open {
        transform: translateX(0);
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .hero-content h1 {
        font-size: 3.8rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .specialite-grid, .modalites-grid, .qualifications-grid, .experience-content {
        gap: 1.5rem;
    }
    
    .content-section h2, .content-section2 h2 {
        font-size: 1.8rem;
    }
    
    .service-detail-section {
        padding: 3rem 0;
    }
    
    .specialised-services, .art-therapy-types {
        grid-template-columns: 1fr;
    }
    
    .profile-container {
        padding: 1.5rem;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
    }
    
    .qualification-card, .experience-item {
        padding: 1.5rem;
    }
    
    /* Responsive Qui suis-je - Tablette */
    .about-hero {
        padding: 80px 0 50px;
    }
    
    .philosophy-section {
        padding: 70px 0;
        margin-top: 5rem;
    }
    
    .hero-content-wrapper,
    .philosophy-grid {
        display: block !important;
        width: 100% !important;
    }
    
    .hero-text,
    .philosophy-content {
        display: block !important;
        width: 100% !important;
        padding: 0 2rem;
        margin-bottom: 3rem;
        text-align: left;
    }
    
    .hero-image-container,
    .philosophy-image {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 0 auto;
    }
    
    .hero-content-wrapper .hero-image-container,
    .philosophy-grid .philosophy-image {
        text-align: center;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .floating-card {
        transform: rotate(-2deg) translateX(0) !important;
        margin: 0 auto !important;
    }
    
    .hero-image-container {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .philosophy-grid {
        padding: 0 1rem;
    }
    
    .content-inner {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .philosophy-image .image-wrapper {
        display: inline-block;
        width: auto;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .content-inner h2 {
        font-size: 2rem;
    }
    
    .hero-portrait {
        width: 160px;
        height: 200px;
    }
    
    .philosophy-portrait {
        width: 260px;
        height: 320px;
    }
    
    /* Responsive Musicothérapie - Tablette */
    .music-hero-section {
        padding: 80px 0 60px;
    }
    
    .music-hero-grid,
    .music-experience-grid {
        display: block !important;
        width: 100% !important;
    }
    
    .music-hero-content,
    .music-experience-content {
        display: block !important;
        width: 100% !important;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .music-hero-image,
    .music-experience-image {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        text-align: center;
    }
    
    .music-image-wrapper,
    .experience-image-wrapper {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto;
    }
    
    .music-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .music-experience-content h2 {
        font-size: 2rem;
    }
    
    .music-portrait {
        width: 260px;
        height: 310px;
    }
    
    .experience-portrait {
        width: 240px;
        height: 290px;
    }
    
    .music-image-overlay,
    .experience-image-overlay {
        top: 12px;
        left: 12px;
        right: -12px;
        bottom: -12px;
    }
    
    .music-pattern,
    .experience-pattern {
        width: 70px;
        height: 70px;
        background-size: 16px 16px;
    }
    
    .music-hero-section::before {
        width: 350px;
        height: 350px;
        top: -20%;
        left: -30%;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn {
        width: 100%;
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .content-section, .content-section2 {
        padding: 40px 20px;
    }
    
    .content-section h2, .content-section2 h2 {
        font-size: 1.8rem;
    }
    
    .specialite-card, .modalite-item, .qualification-card, .experience-item {
        padding: 1.5rem;
    }
    
    .specialite-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .qualifications-grid, .experience-content {
        grid-template-columns: 1fr;
    }
    
    .hero-content-wrapper,
    .philosophy-grid {
        display: block !important;
        width: 100% !important;
        padding: 0 1rem;
    }
    
    .hero-text,
    .philosophy-content {
        display: block !important;
        width: 100% !important;
        padding: 0 1rem;
        margin-bottom: 2rem;
        max-width: 100%;
        overflow-wrap: break-word;
        text-align: left;
    }
    
    .hero-image-container,
    .philosophy-image {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 0 auto;
    }
    
    .hero-content-wrapper .hero-image-container,
    .philosophy-grid .philosophy-image {
        text-align: center;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .philosophy-grid {
        padding: 0 0.5rem;
    }
    
    .content-inner {
        max-width: 95%;
        margin: 0 auto;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin: 1rem 0;
    }
    
    .content-inner h2 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .content-inner p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 1rem 0;
    }
    
    .about-hero {
        padding: 60px 0 40px;
    }
    
    .philosophy-section {
        padding: 50px 0;
        margin-top: 4rem;
    }
    
    .philosophy-section::before {
        width: 400px;
        height: 400px;
        top: -30%;
        right: -30%;
    }
    
    .hero-portrait {
        width: 180px;
        height: 220px;
    }
    
    .philosophy-portrait {
        width: 280px;
        height: 340px;
    }
    
    .image-overlay {
        top: 15px;
        left: 15px;
        right: -15px;
        bottom: -15px;
    }
    
    .overlay-pattern {
        width: 80px;
        height: 80px;
        background-size: 20px 20px;
    }
    
    .floating-card {
        padding: 15px;
    }
    
    .deco-1 {
        width: 40px;
        height: 40px;
        top: -20px;
        right: -20px;
    }
    
    .deco-2 {
        width: 30px;
        height: 30px;
        bottom: -15px;
        left: -15px;
    }
    
    .hero-text h1 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .content-inner h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .about-hero {
        padding: 50px 0 30px;
    }
    
    .philosophy-section {
        padding: 40px 0;
        margin-top: 3rem;
    }
    
    .hero-content-wrapper,
    .philosophy-grid {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .philosophy-section::before {
        width: 300px;
        height: 300px;
        top: -20%;
        right: -40%;
    }
    
    .hero-portrait {
        width: 150px;
        height: 190px;
    }
    
    .philosophy-portrait {
        width: 240px;
        height: 300px;
    }
    
    .image-overlay {
        top: 10px;
        left: 10px;
        right: -10px;
        bottom: -10px;
        border-width: 3px;
    }
    
    .overlay-pattern {
        width: 60px;
        height: 60px;
        background-size: 15px 15px;
    }
    
    .floating-card {
        padding: 12px;
        transform: rotate(0deg);
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .point-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .point-item p {
        font-size: 1rem;
    }
    
    .deco-1 {
        width: 30px;
        height: 30px;
        top: -15px;
        right: -15px;
    }
    
    .deco-2 {
        width: 25px;
        height: 25px;
        bottom: -10px;
        left: -10px;
    }
    
    .deco-line {
        display: none;
    }
    
    .about-hero::before {
        width: 400px;
        height: 400px;
        top: -30%;
        right: -30%;
    }
    
    /* Responsive Musicothérapie */
    .music-hero-section {
        padding: 60px 0 40px;
    }
    
    .music-hero-grid,
    .music-experience-grid {
        display: block !important;
        width: 100% !important;
        padding: 0 1rem;
    }
    
    .music-hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .music-hero-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 1rem 0;
    }
    
    .music-experience-content h2 {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .music-experience-content ul {
        text-align: left;
        max-width: 100%;
        margin: 0 auto;
        padding-left: 1rem;
    }
    
    .music-experience-content li {
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0.8rem 0;
    }
    
    .music-hero-image,
    .music-experience-image {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        text-align: center;
    }
    
    .music-image-wrapper,
    .experience-image-wrapper {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto;
    }
    
    .music-hero-content,
    .music-experience-content {
        display: block !important;
        width: 100% !important;
        padding: 0;
        margin-bottom: 1.5rem;
        max-width: 100%;
        overflow-wrap: break-word;
        text-align: left;
    }
    
    .music-portrait {
        width: 250px;
        height: 300px;
    }
    
    .experience-portrait {
        width: 240px;
        height: 290px;
    }
    
    .music-image-overlay,
    .experience-image-overlay {
        top: 10px;
        left: 10px;
        right: -10px;
        bottom: -10px;
    }
    
    .music-pattern,
    .experience-pattern {
        width: 60px;
        height: 60px;
        background-size: 15px 15px;
    }
    
    .music-hero-section::before {
        width: 300px;
        height: 300px;
        top: -20%;
        left: -40%;
    }
    
    .music-deco-1,
    .music-deco-2 {
        display: none;
    }

    
    .qualification-icon, .experience-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .qualification-icon svg, .experience-icon svg {
        width: 25px;
        height: 25px;
    }
}

/* Styles pour la page Musicothérapie */
.music-hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(251, 243, 235, 0.4) 0%, rgba(255, 255, 255, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.music-hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(228, 140, 99, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.music-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.music-hero-content {
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--couleur-orange), var(--couleur-sable));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(228, 140, 99, 0.3);
}

.music-hero-content h1 {
    font-size: 3.2rem;
    font-family: "Merriweather", serif;
    color: var(--couleur-texte);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--couleur-texte);
    opacity: 0.8;
    margin-bottom: 3rem;
}

.music-decorative-elements {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.music-deco-1 {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--couleur-orange), var(--couleur-sable));
    border-radius: 50%;
    opacity: 0.1;
    animation: musicFloat 6s ease-in-out infinite;
}

.music-deco-2 {
    position: absolute;
    bottom: 30%;
    right: 5%;
    width: 40px;
    height: 40px;
    background: var(--couleur-sable);
    border-radius: 50%;
    opacity: 0.15;
    animation: musicFloat 4s ease-in-out infinite reverse;
}

.music-deco-line {
    position: absolute;
    top: 50%;
    right: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--couleur-orange), transparent);
    opacity: 0.3;
}

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

.music-image-container {
    position: relative;
    display: inline-block;
}

.music-portrait {
    width: 320px;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.music-image-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--couleur-orange);
    border-radius: 20px;
    opacity: 0.6;
    z-index: 1;
    transition: all 0.4s ease;
}

.music-image-container:hover .music-portrait {
    transform: translate(-8px, -8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.music-image-container:hover .music-image-overlay {
    transform: translate(8px, 8px);
    opacity: 0.8;
    border-color: var(--couleur-sable);
}

.music-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--couleur-sable) 2px, transparent 2px);
    background-size: 20px 20px;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    z-index: 0;
}

/* Section Expérience Musicale */
.music-experience-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.music-experience-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    align-items: center;
}

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

.experience-image-wrapper {
    position: relative;
    display: inline-block;
}

.experience-portrait {
    width: 300px;
    height: 360px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.experience-image-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border: 3px solid var(--couleur-sable);
    border-radius: 25px;
    opacity: 0.5;
    z-index: 1;
    transition: all 0.4s ease;
}

.experience-image-wrapper:hover .experience-portrait {
    transform: translate(-6px, -6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.experience-image-wrapper:hover .experience-image-overlay {
    transform: translate(6px, 6px);
    opacity: 0.7;
    border-color: var(--couleur-orange);
}

.experience-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--couleur-orange) 1px, transparent 1px);
    background-size: 15px 15px;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    z-index: 0;
}

.music-experience-content {
    padding-left: 2rem;
}

.music-experience-content h2 {
    font-size: 2.6rem;
    font-family: "Merriweather", serif;
    color: var(--couleur-texte);
    margin-bottom: 3rem;
    position: relative;
}

.music-experience-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--couleur-orange), var(--couleur-sable));
    border-radius: 2px;
}

.experience-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.experience-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(251, 243, 235, 0.3);
    border-radius: 15px;
    border-left: 4px solid var(--couleur-sable);
    transition: all 0.3s ease;
}

.experience-item:hover {
    background: rgba(251, 243, 235, 0.5);
    transform: translateX(8px);
    border-left-color: var(--couleur-orange);
}

.experience-icon {
    width: 12px;
    height: 12px;
    background: var(--couleur-orange);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.experience-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--couleur-texte);
    margin: 0;
    opacity: 0.9;
}

@keyframes musicFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

/* Animations pour les sections au scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.specialite-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.specialite-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.specialite-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.specialite-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(228, 140, 99, 0.1);
    border-radius: 50%;
    color: var(--couleur-orange);
}

.specialite-icon svg {
    width: 30px;
    height: 30px;
}

.specialite-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--couleur-texte);
}

.specialite-card p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    color: var(--couleur-texte);
    opacity: 0.9;
}

.btn-link {
    color: var(--couleur-orange);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-link:hover {
    color: var(--couleur-terre);
    transform: translateX(3px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Styles pour les sections de contenu */
.content-section h2, .content-section2 h2 {
    font-size: 2.2rem;
    margin-bottom: 3.5rem;
    color: var(--couleur-orange);
    text-align: center;
    font-family: "Merriweather", serif;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.content-section h2::after, .content-section2 h2::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--couleur-sable), var(--couleur-orange), var(--couleur-sable));
    border-radius: 2px;
    animation: gradient-shift 3s infinite ease-in-out;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.section-content {
    margin: 2rem auto;
    line-height: 1.7;
    max-width: 900px;
}

.section-content p {
    margin-bottom: 2rem;
    font-size: 1rem;
    color: var(--couleur-texte);
    opacity: 0.9;
}

/* Styles modernes pour la page Qui suis-je */

/* Section Hero */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(251, 243, 235, 0.4) 0%, rgba(248, 240, 230, 0.6) 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(181, 137, 116, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    padding-right: 2rem;
    padding-left: 1rem;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--couleur-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--couleur-orange);
}

.hero-text h1 {
    font-size: 3.2rem;
    font-family: "Merriweather", serif;
    color: var(--couleur-texte);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--couleur-texte);
    opacity: 0.8;
    margin-bottom: 0;
}

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

.floating-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    transition: all 0.4s ease;
}

.floating-card:hover {
    transform: rotate(0deg) translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.hero-portrait {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.therapy-image {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.card-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--couleur-orange), var(--couleur-sable));
    border-radius: 30px;
    opacity: 0.2;
    z-index: -1;
    filter: blur(20px);
}

.decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--couleur-orange);
    opacity: 0.6;
}

.deco-1 {
    width: 60px;
    height: 60px;
    top: -30px;
    right: -30px;
    animation: float 6s ease-in-out infinite;
}

.deco-2 {
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: -20px;
    background: var(--couleur-sable);
    animation: float 4s ease-in-out infinite reverse;
}

.deco-line {
    position: absolute;
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, var(--couleur-orange), transparent);
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    opacity: 0.4;
}

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

/* Section Philosophie */
.philosophy-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(251, 243, 235, 0.3) 0%, rgba(255, 255, 255, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(228, 140, 99, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.image-wrapper {
    position: relative;
    display: inline-block;
}

.philosophy-portrait {
    width: 350px;
    height: 420px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.image-overlay {
    position: absolute;
    top: 25px;
    left: 25px;
    right: -25px;
    bottom: -25px;
    border: 4px solid var(--couleur-orange);
    border-radius: 25px;
    opacity: 0.7;
    z-index: 1;
    transition: all 0.4s ease;
}

.image-wrapper:hover .philosophy-portrait {
    transform: translate(-8px, -8px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.image-wrapper:hover .image-overlay {
    transform: translate(8px, 8px);
    opacity: 0.9;
    border-color: var(--couleur-sable);
}

.overlay-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--couleur-sable) 2px, transparent 2px);
    background-size: 25px 25px;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    z-index: 0;
}

.philosophy-content {
    padding-right: 2rem;
}

.content-inner h2 {
    font-size: 2.8rem;
    font-family: "Merriweather", serif;
    color: var(--couleur-texte);
    margin-bottom: 3rem;
    position: relative;
}

.content-inner h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--couleur-orange), var(--couleur-sable));
    border-radius: 2px;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(251, 243, 235, 0.3);
    border-radius: 16px;
    border-left: 4px solid var(--couleur-orange);
    transition: all 0.3s ease;
}

.point-item:hover {
    background: rgba(251, 243, 235, 0.6);
    transform: translateX(10px);
}

.point-icon {
    width: 12px;
    height: 12px;
    background: var(--couleur-orange);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.point-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--couleur-texte);
    margin: 0;
    opacity: 0.9;
}

/* Styles pour la section qualifications */
.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.qualification-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(216, 207, 194, 0.2);
    opacity: 0;
    transform: translateY(20px);
}

.qualification-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.qualification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--couleur-sable), var(--couleur-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.qualification-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(181, 137, 116, 0.3);
}

.qualification-card:hover::before {
    transform: scaleX(1);
}

.qualification-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(228, 140, 99, 0.15), rgba(216, 207, 194, 0.15));
    border-radius: 50%;
    color: var(--couleur-orange);
    position: relative;
    transition: all 0.3s ease;
}

.qualification-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 1px dashed var(--couleur-orange);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.qualification-card:hover .qualification-icon {
    transform: rotate(5deg);
}

.qualification-card:hover .qualification-icon::after {
    transform: scale(1.1) rotate(-5deg);
    opacity: 0.7;
}

.qualification-icon svg {
    width: 35px;
    height: 35px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.qualification-card:hover .qualification-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 3px 4px rgba(0, 0, 0, 0.2));
}

.qualification-card h3 {
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    color: var(--couleur-texte);
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.qualification-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--couleur-sable);
    transition: width 0.3s ease, background-color 0.3s ease;
}

.qualification-card:hover h3::after {
    width: 60px;
    background-color: var(--couleur-orange);
}

.qualification-card ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.qualification-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.qualification-card li:hover {
    transform: translateX(5px);
    color: var(--couleur-orange);
}

.qualification-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--couleur-orange);
    font-size: 1.2rem;
}

/* Styles pour la section expérience */
.experience-content {
    display: block; /* Change display to block */
    margin-top: 3rem;
}

.experience-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(216, 207, 194, 0.2);
    opacity: 0;
    transform: translateY(20px);
    margin-bottom: 2rem; /* Add margin between items */
}

.experience-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.experience-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--couleur-orange), var(--couleur-sable));
    transition: height 0.4s ease;
}

.experience-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(181, 137, 116, 0.3);
}

.experience-item:hover::before {
    height: 100%;
}

.experience-item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--couleur-orange);
    position: relative;
    display: block;
    padding-bottom: 8px;
}

.experience-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--couleur-sable);
    transition: width 0.3s ease, background-color 0.3s ease;
}

.experience-item:hover h3::after {
    width: 100%;
    background-color: var(--couleur-orange);
}

.experience-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--couleur-texte);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.experience-item:hover p {
    opacity: 1;
}

/* Styles pour la section modalités */
.modalites {
    background-color: var(--couleur-creme);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.modalites h3 {
    margin-bottom: 1.5rem;
    color: var(--couleur-texte);
    font-size: 1.3rem;
}

.modalites ul {
    list-style: none;
    margin-left: 1rem;
}

.modalites li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

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

.modalite-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.8rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(216, 207, 194, 0.3);
}

.modalite-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--couleur-sable), var(--couleur-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.modalite-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(181, 137, 116, 0.3);
}

.modalite-item:hover::before {
    transform: scaleX(1);
}

.modalite-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(228, 140, 99, 0.15), rgba(216, 207, 194, 0.15));
    border-radius: 50%;
    color: var(--couleur-orange);
    position: relative;
    transition: all 0.3s ease;
}

.modalite-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 1px dashed var(--couleur-orange);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.modalite-item:hover .modalite-icon {
    transform: rotate(5deg);
}

.modalite-item:hover .modalite-icon::after {
    transform: scale(1.1) rotate(-5deg);
    opacity: 0.7;
}

.modalite-icon svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.modalite-item:hover .modalite-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 3px 4px rgba(0, 0, 0, 0.2));
}

.modalite-item h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    color: var(--couleur-texte);
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.modalite-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--couleur-sable);
    transition: width 0.3s ease;
}

.modalite-item:hover h3::after {
    width: 60px;
    background-color: var(--couleur-orange);
}

.modalite-item p {
    font-size: 0.95rem;
    color: var(--couleur-texte);
    opacity: 0.9;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.modalite-item:hover p {
    opacity: 1;
}

/* Styles pour la section Qui suis-je */
.qualifications {
    margin-bottom: 2rem;
}

.qualifications ul {
    list-style: none;
}

.qualifications li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
}

.qualifications li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--couleur-orange);
}

.experience p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Styles pour les cartes de services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Styles pour les sections de services détaillés */
.service-detail-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.service-detail-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(181, 137, 116, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    opacity: 0.8;
}

.service-detail-section:nth-child(odd)::before {
    top: -100px;
    left: -100px;
}

.service-detail-section:nth-child(even)::before {
    bottom: -100px;
    right: -100px;
}

.highlight-section {
    border-radius: 15px;
    margin: 2rem 0;
}

.service-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
}

.service-detail-content {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(216, 207, 194, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-detail-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(181, 137, 116, 0.3);
}

.service-detail.reverse {
    flex-direction: column;
}

.service-list {
    list-style: none;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.service-list li:hover {
    transform: translateX(5px);
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--couleur-orange);
    font-size: 1.2rem;
}

.specialised-services, .art-therapy-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.specialised-service-item, .art-therapy-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.specialised-service-item:hover, .art-therapy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 3px solid var(--couleur-orange);
}

.specialised-service-item h3, .art-therapy-item h3 {
    color: var(--couleur-orange);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.art-therapy-item ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.art-therapy-item li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.art-therapy-item li:hover {
    transform: translateX(5px);
}

.art-therapy-item li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--couleur-orange);
}

.service-card {
    background-color: var(--couleur-creme);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background-color: var(--couleur-orange);
    transition: height 0.3s ease;
}

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

.service-card:hover::before {
    height: 100%;
}

.service-card h3 {
    margin-bottom: 1.5rem;
    color: var(--couleur-texte);
    font-size: 1.3rem;
    position: relative;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

/* Styles pour la galerie */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.gallery-note {
    text-align: center;
    color: var(--couleur-orange);
    font-style: italic;
    margin-top: 2rem;
}

/* Styles pour la section contact */
.contact-section {
    background-color: var(--couleur-sable);
    padding: 4rem 0;
}

.contact-info {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info a {
    color: var(--couleur-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--couleur-terre);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--couleur-sable);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--couleur-orange);
    box-shadow: 0 0 0 2px rgba(228, 140, 99, 0.2);
}

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

.btn-submit {
    background-color: var(--couleur-orange);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--couleur-terre);
    transform: translateY(-3px);
}

/* Footer styles */
footer {
    background-color: var(--couleur-texte);
    color: var(--couleur-blanc);
    padding: 3rem 0 1.5rem;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3, .footer-nav h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--couleur-orange);
    font-weight: 600;
}

.footer-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: var(--couleur-blanc);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: var(--couleur-orange);
    opacity: 1;
}

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

.footer-info a:hover {
    color: var(--couleur-sable);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}