/* Reset et styles de base */

/* Police Parisienne pour titres et navigation */
@import url('https://fonts.googleapis.com/css2?family=Parisienne&display=swap');

:root {
    --primary-color: #e2cee5; /* Nouveau Violet plus doux */
    --text-on-primary: #000000; /* Noir pour texte sur fond violet */
    --accent-color: #000000; /* Noir pour les accents */
    --font-cinzel: 'Parisienne', Georgia, serif;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: var(--accent-color);
}

/* Titres en Parisienne */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-cinzel);
    letter-spacing: 0.02em;
    font-weight: 400;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header et navigation */
header {
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo::before {
    content: "";
    display: inline-block;
    width: 60px;
    height: 60px;
    background-image: url('../image/arbredevie.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 0.8rem;
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.3)); /* Ombre plus foncée pour fond clair */
}

.logo h1 {
    color: var(--text-on-primary);
    font-size: 2rem;
    font-weight: 400;
    font-family: var(--font-cinzel);
    letter-spacing: 0.02em;
}

nav > ul {
    display: flex;
}

nav > ul > li {
    margin-left: 2rem;
}

nav > ul > li > a {
    padding: 0.5rem 0;
    font-weight: 400;
    position: relative;
    color: var(--text-on-primary);
    font-family: var(--font-cinzel);
    font-size: 1.3rem;
    letter-spacing: 0.02em;
}

nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--text-on-primary);
    transition: width 0.3s;
}

nav > ul > li > a:hover::after,
nav > ul > li > a.active::after {
    width: 100%;
}

nav > ul > li.has-dropdown {
    position: relative;
}

nav > ul > li.has-dropdown > a {
    cursor: pointer;
}

nav > ul > li.has-dropdown .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    padding: 0.75rem 0 0.5rem;
    z-index: 1200;
}

nav > ul > li.has-dropdown .dropdown li {
    margin: 0;
}

nav > ul > li.has-dropdown .dropdown a {
    display: block;
    padding: 0.65rem 1rem;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
}

nav > ul > li.has-dropdown .dropdown a:hover,
nav > ul > li.has-dropdown .dropdown a.active {
    background-color: #f4f4f4;
}

nav > ul > li.has-dropdown:hover .dropdown,
nav > ul > li.has-dropdown.open .dropdown {
    display: block;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-on-primary);
}

@media (max-width: 900px) {
    header {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        width: 100%;
        display: none;
        padding-top: 0.5rem;
    }

    nav.active {
        display: block;
    }

    nav > ul {
        flex-direction: column;
        gap: 0.25rem;
    }

    nav > ul > li {
        margin-left: 0;
    }

    nav > ul > li > a {
        display: block;
        padding: 0.75rem 0;
    }

    nav > ul > li.has-dropdown .dropdown {
        position: static;
        min-width: unset;
        box-shadow: none;
        padding: 0;
        margin-top: 0.25rem;
        border-radius: 0;
        background: transparent;
    }

    nav > ul > li.has-dropdown .dropdown a {
        padding: 0.6rem 0 0.6rem 1rem;
    }
}

/* Section héro */
.hero {
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    background-color: #f4f4f4;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-content h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Boutons */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
}

.btn:hover {
    background-color: #d5bcd9; /* Version un peu plus sombre du violet */
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-color);
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
}

/* Section services */
.services {
    padding: 5rem 5%;
    text-align: center;
}

.services h2 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    color: #000;
    margin: 1.5rem 0 0.5rem;
}

.service-card p {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.service-card .btn-secondary {
    margin-bottom: 1.5rem;
}

/* Section témoignages */
.testimonials {
    padding: 5rem 5%;
    background-color: #f4f4f4;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
    position: relative;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.testimonial {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
}

.testimonial h4 {
    color: #000;
    font-weight: 600;
}

/* Pied de page */
footer {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    padding: 4rem 5% 2rem;
}

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

.footer-info h3, 
.footer-links h3, 
.footer-social h3 {
    color: var(--text-on-primary);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.footer-info p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-on-primary);
}

.footer-info i {
    color: var(--text-on-primary);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-on-primary);
    transition: opacity 0.3s;
}

.footer-links ul li a:hover {
    opacity: 0.7;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--text-on-primary);
    color: var(--primary-color);
    border-radius: 50%;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    color: var(--text-on-primary);
}

/* Styles pour la page Qui suis-je */
.about-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.about-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    opacity: 0.7;
}

.about-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-on-primary);
    z-index: 1;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.about-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

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

.about-me, .naturopathy, .naturopath-role {
    padding: 5rem 0;
}

.about-me {
    background-color: #f9f9f9;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.naturopathy-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.naturopathy-text {
    flex: 1;
}

.naturopathy-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.naturopathy-image {
    flex: 1;
}

.naturopathy-image img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
}

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

.role-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.role-card:hover {
    transform: translateY(-10px);
}

.role-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.role-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.role-card p {
    color: #666;
}

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

.certification-list li {
    background-color: #f4f4f4;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: var(--text-on-primary);
}

.certification-list li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.3rem;
}

/* Media queries pour la responsivité */
@media (max-width: 992px) {
    .naturopathy-content {
        flex-direction: column;
    }
    
    .about-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .certification-list {
        grid-template-columns: 1fr;
    }
}

/* Styles pour la page Techniques */
.techniques-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    background-color: var(--primary-color);
}

.techniques-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.techniques-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    opacity: 0.7;
}

.techniques-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-on-primary);
    z-index: 1;
}

.techniques-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.techniques-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.techniques-intro {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.techniques-nav {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.techniques-nav h3 {
    color: #000;
    margin-bottom: 1.5rem;
    text-align: center;
}

.techniques-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.techniques-nav ul li a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #f4f4f4;
    border-radius: 30px;
    color: #000;
    transition: all 0.3s;
}

.techniques-nav ul li a:hover {
    background-color: #000;
    color: #fff;
}

/* Sections de techniques détaillées */
.technique-section {
    padding: 5rem 0;
}

.technique-section:nth-child(even) {
    background-color: #f9f9f9;
}

.technique-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.technique-content.reverse {
    flex-direction: row-reverse;
}

.technique-image {
    flex: 1;
}

.technique-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.technique-text {
    flex: 1;
}

.technique-text h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.technique-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.technique-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.technique-benefits {
    background-color: #f4f4f4;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.technique-benefits h3 {
    color: #000;
    margin-bottom: 1rem;
}

.technique-benefits ul {
    list-style: none;
}

.technique-benefits ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.technique-benefits ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

/* Grille de techniques */
.techniques-grid {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    color: #000;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.grid-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.grid-item:hover {
    transform: translateY(-10px);
}

.grid-item h3 {
    color: #000;
    margin-bottom: 1rem;
    position: relative;
}

.grid-item h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.grid-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.grid-item p {
    color: #555;
    line-height: 1.6;
}

/* Techniques mises en avant */
.featured-techniques {
    padding: 5rem 0;
}

.featured-technique {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 5rem;
}

.featured-technique.reverse {
    flex-direction: row-reverse;
}

.featured-image {
    flex: 1;
}

.featured-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.featured-content {
    flex: 1;
}

.featured-content h2 {
    color: #000;
    margin-bottom: 1.5rem;
    position: relative;
}

.featured-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.featured-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Section CTA */
.cta-section {
    padding: 5rem 0;
    background-color: #f4f4f4;
    text-align: center;
}

.cta-section h2 {
    color: #000;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Media queries pour la responsivité */
@media (max-width: 992px) {
    .technique-content,
    .technique-content.reverse,
    .featured-technique,
    .featured-technique.reverse {
        flex-direction: column;
    }
    
    .technique-image,
    .technique-text,
    .featured-image,
    .featured-content {
        width: 100%;
    }
    
    .technique-text h2::after,
    .featured-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .technique-text,
    .featured-content {
        text-align: center;
    }
    
    .technique-benefits ul li {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .techniques-content h2 {
        font-size: 2rem;
    }
    
    .techniques-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
    }
}

/* Styles pour la page Réservations */
.reservation-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    background-color: var(--primary-color);
}

.reservation-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.reservation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    opacity: 0.7;
}

.reservation-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-on-primary);
    z-index: 1;
}

.reservation-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.reservation-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.reservation-info {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

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

.info-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-10px);
}

.info-card i {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    color: #000;
    margin-bottom: 1rem;
}

.info-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.reservation-form-section {
    padding: 5rem 0;
}

.reservation-form {
    background-color: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #000;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #000;
    outline: none;
}

/* Styles pour la section tarifs */
.pricing-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

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

.pricing-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-header {
    position: relative;
}

.pricing-header img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pricing-header h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    padding: 1rem;
    margin: 0;
    text-align: center;
}

.pricing-body {
    padding: 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.service-name {
    font-weight: 500;
    color: #333;
}

.price {
    font-weight: 700;
    color: #000;
    font-size: 1.2rem;
}

.price-description {
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Encadré spécial pour les prestations maman & bébé */
.special-offers-box {
    background: linear-gradient(135deg, #f4f4f4 0%, #eeeeee 100%);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.special-offers-box h3 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.offer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.offer-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.offer-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Styles pour l'encadré massages amincissants dans la section */
.massage-highlight-box {
    background: linear-gradient(135deg, #f4f4f4 0%, #eeeeee 100%);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.massage-highlight-box h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.massage-offers {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.massage-offer {
    background: white;
    padding: 0.8rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.massage-offer:hover {
    transform: translateX(5px);
}

.massage-offer.special {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left-color: #FF9800;
    position: relative;
}

.massage-offer.special::before {
    content: '⭐';
    position: absolute;
    top: -5px;
    right: 10px;
    font-size: 1.2rem;
}

.massage-offer strong {
    color: var(--accent-color);
    font-size: 1rem;
}

.massage-offer em {
    color: #666;
    font-size: 0.9rem;
}

.economy {
    display: block;
    color: #d32f2f;
    font-weight: bold;
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

.btn-massage {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-on-primary);
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.btn-massage:hover {
    background: #d5bcd9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .massage-highlight-box {
        padding: 1rem;
    }
    
    .massage-highlight-box h3 {
        font-size: 1.1rem;
    }
    
    .massage-offer {
        padding: 0.6rem;
    }
}

.offer-item:hover {
    transform: translateY(-5px);
}

.offer-item.highlight {
    border: 2px solid #000;
    background: linear-gradient(135deg, #fff 0%, #f4f4f4 100%);
}

.offer-item h4 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.offer-item p {
    margin-bottom: 0.5rem;
}

.savings {
    color: #e74c3c;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-table {
    background-color: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pricing-table h3 {
    color: #000;
    margin-bottom: 2rem;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th,
table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

table th {
    background-color: #f4f4f4;
    color: #000;
    font-weight: 600;
}

table tr:hover {
    background-color: #f9f9f9;
}

/* Styles pour les en-têtes de sections dans le tableau */
.section-header {
    background-color: var(--primary-color) !important;
    color: var(--text-on-primary) !important;
}

.section-header td {
    text-align: center;
    font-size: 1.1rem;
    padding: 1.2rem 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.section-header:hover {
    background-color: var(--primary-color) !important;
}

/* Styles pour la section FAQ */
.faq-section {
    padding: 5rem 0;
}

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

.accordion-item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #f4f4f4;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #000;
}

.accordion-icon i {
    color: #000;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon i {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

.accordion-content p {
    color: #666;
    line-height: 1.6;
}

/* Styles pour les boutons multiples dans les cartes de service */
.card-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0 1.5rem 1.5rem;
    align-items: center;
}

.card-buttons .btn,
.card-buttons .btn-secondary {
    margin: 0;
    width: 100%;
    max-width: 200px;
    text-align: center;
}

/* Responsive pour les boutons */
@media (min-width: 480px) {
    .card-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .card-buttons .btn,
    .card-buttons .btn-secondary {
        width: auto;
        flex: 1;
        max-width: none;
    }
}

/* Styles pour la page Contact */
.contact-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d5bcd9 100%);
}

.contact-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
    opacity: 0.8;
}

.contact-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-on-primary);
    z-index: 2;
}

.contact-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-content p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
    opacity: 0.95;
}

.contact-info {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #f9f9f9 0%, #f4f4f4 100%);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #d5bcd9);
}

.contact-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-card i {
    font-size: 3rem;
    color: #000;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f4f4f4, #eeeeee);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover i {
    background: linear-gradient(135deg, #000, #333);
    color: #fff;
    transform: scale(1.1);
}

.contact-card h3 {
    color: #000;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.contact-card p {
    color: #555;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-form-section {
    padding: 6rem 5%;
    background: #fff;
}

.contact-form-section h2 {
    text-align: center;
    color: #000;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.contact-form-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #d5bcd9);
    border-radius: 2px;
}

.contact-form {
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #000;
    font-weight: 600;
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #eeeeee;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #000;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.contact-form .btn {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d5bcd9 100%);
    color: var(--text-on-primary);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.map-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #f9f9f9 0%, #f4f4f4 100%);
}

.map-section h2 {
    text-align: center;
    color: #000;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.map-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #d5bcd9);
    border-radius: 2px;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 3px solid #fff;
}

.map-container iframe {
    border-radius: 17px;
    transition: all 0.3s ease;
}

.map-container:hover iframe {
    transform: scale(1.02);
}

/* Media queries pour la responsivité */
/* Styles pour les options Reiki */
.reiki-options {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.reiki-options h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.1em;
    font-weight: 600;
}

.reiki-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.reiki-option {
    padding: 15px;
    background: white;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.reiki-option:hover {
    transform: translateY(-2px);
}

.reiki-option.highlight {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, #d5bcd9 100%);
    color: var(--text-on-primary);
}

.reiki-option .price {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1em;
}

.reiki-option.highlight .price {
    color: var(--text-on-primary);
}

.reiki-distance-info {
    font-style: italic;
    color: #666;
    font-size: 0.9em;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design pour Reiki */
@media (max-width: 768px) {
    .reiki-pricing {
        grid-template-columns: 1fr;
    }
}

/* Section "En cours de finalisation" */
.coming-soon {
    padding: 4rem 5%;
    background-color: var(--primary-color);
    color: var(--text-on-primary);
}

.coming-soon .container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.coming-soon h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-on-primary);
}

.coming-soon-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.8;
}

.coming-soon-items {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.coming-soon-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.coming-soon-item:hover {
    transform: translateY(-5px);
}

.coming-soon-item .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.coming-soon-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-on-primary);
}

.coming-soon-item p {
    line-height: 1.6;
}

.coming-soon-contact {
    margin-top: 2rem;
    font-size: 1.1rem;
}

.coming-soon-contact a {
    color: var(--text-on-primary);
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .coming-soon-items {
        flex-direction: column;
    }
    
    .contact-content h2 {
        font-size: 2.5rem;
    }
    
    .contact-content p {
        font-size: 1.1rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2.5rem 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-section h2,
    .map-section h2 {
        font-size: 2rem;
    }
    
    .reservation-content h2 {
        font-size: 2rem;
    }
    
    .reservation-form {
        padding: 2rem;
    }
    
    .pricing-table {
        padding: 2rem;
        overflow-x: auto;
    }
    
    table th,
    table td {
        padding: 0.8rem;
    }
    
    .accordion-header h3 {
        font-size: 1rem;
    }
}

/* Section formations */
.formations {
    padding: 5rem 5%;
}

.formations h2 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    position: relative;
}

.formations h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.formation-list {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
}

.formation-list::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: var(--primary-color);
}

.formation-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.formation-item:last-child {
    margin-bottom: 0;
}

.formation-item i.fas.fa-graduation-cap, 
.logo-with-icon {
    position: relative;
    z-index: 2;
    background-color: var(--primary-color); /* Fond violet */
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
}

.logo-with-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.formation-item i.fas.fa-graduation-cap {
    color: var(--text-on-primary);
    font-size: 1.2rem;
}

.formation-content {
    background: #fff;
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
    position: relative;
}

.formation-content::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 12px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #fff;
}

.formation-content h3 {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 0.3rem;
}

.formation-content .school {
    color: #555;
    font-style: italic;
    margin-bottom: 0.2rem;
}

.formation-content .dates {
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
}

.formation-media {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.formation-media-link {
    display: inline-flex;
    text-decoration: none;
}

.formation-media-img {
    width: 110px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.formation-content .details {
    border-left: 3px solid #333;
    padding-left: 10px;
    margin-top: 6px;
    color: #333;
    font-weight: 500;
}

.formation-content .tagline {
    margin-top: 6px;
    font-style: italic;
    color: #000;
}

.about-text .details {
    border-left: 3px solid #333;
    padding-left: 10px;
    margin-top: 6px;
    color: #333;
    font-weight: 500;
}

.about-text .tagline {
    margin-top: 6px;
    font-style: italic;
    color: #000;
}

@media (max-width: 600px) {
    .formation-item {
        gap: 1rem;
    }
    .formation-content {
        padding: 1rem;
    }
    .formation-media-img {
        width: 96px;
        height: 64px;
    }
}

/* Section affiliations */
.affiliations {
    padding: 4rem 5%;
    background-color: #f4f4f4;
    text-align: center;
}

.affiliations h2 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    position: relative;
}

.affiliations h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.affiliations p {
    color: #555;
    margin-bottom: 1.5rem;
}

.affiliation-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.affiliation-logos .logo-svg {
    height: 60px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.affiliation-logos .logo-svg:hover {
    filter: grayscale(0%);
}

@media (max-width: 600px) {
    .logo-svg {
        width: 130px;
        height: 130px;
    }
}
.about-subtitle {
  margin-top: 0.5rem;
  font-size: 1.35rem;
  color: var(--accent-color);
  font-weight: 600;
}

.emphasis {
  color: var(--accent-color);
}
