/* Variables globales */
:root {
    --primary-color: #4A2511;    /* Marron chocolat */
    --secondary-color: #8B0000;  /* Bordeaux */
    --accent-color: #8B0000;     /* Marron plus clair */
    --text-color: #4A2511;       /* Marron chocolat pour le texte */
    --text-light: #6B4423;       /* Marron plus clair */
    --light-bg: #F5E6DC;        /* Beige clair */
    --white: #FFFFFF;
    --brown-bg: #3B1F0F;        /* Marron chocolat foncé */
    --burgundy-light: #A52A2A;  /* Bordeaux plus clair */
    --beige-light: #FAF0E6;     /* Beige très clair */
    --beige-dark: #E6D5C7;      /* Beige plus foncé */
    --spacing-unit: 1rem;
    --spacing-section: 6rem 0;
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: var(--spacing-unit);
}

/* Header et Navigation */
.main-header {
    background-color: var(--white);
    border-bottom: 3px solid var(--primary-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.main-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    margin-top: 60px;
    overflow: hidden;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/salon-massage.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(1);
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 0;
    color: var(--white);
    text-align: center;
}

.hero p {
    margin: 0;
    font-size: 1.2rem;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 0.7rem 1.6rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: fit-content;  /* Ajustement automatique à la largeur du contenu */
}

.cta-button:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Style spécifique pour le bouton dans la section hero */
.hero .cta-button {
    margin: 0 auto;
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.7rem 1.6rem;
    width: fit-content;
}

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

/* Style pour le bouton dans la bannière flottante */
.floating-booking .cta-button {
    background-color: var(--white);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

.floating-booking .cta-button:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Hero Benefits */
.hero-benefits {
    margin: 1.5rem 0;
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 4rem 2rem;
    background-color: var(--beige-light);
}

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

/* About Section */
.about {
    padding: 5rem 2rem;
    background-color: var(--beige-light);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.about-image {
    flex: 1;
    max-width: 50%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.text-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

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

.text-button i {
    transition: transform 0.3s ease;
}

.text-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        max-width: 100%;
        margin-bottom: 2rem;
    }
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Menu Burger */
.burger-menu {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1000;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.burger-menu span:first-child {
    top: 0;
}

.burger-menu span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.burger-menu span:last-child {
    bottom: 0;
}

/* Animation du burger menu */
.burger-menu.active span:first-child {
    transform: rotate(45deg);
    top: 9px;
}

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

.burger-menu.active span:last-child {
    transform: rotate(-45deg);
    bottom: 9px;
}

/* Utilitaires */
.text-center {
    text-align: center;
}

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

/* Features Section */
.features {
    padding: 4rem 2rem;
    background-color: var(--beige-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid var(--beige-dark);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.benefits-list {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.benefits-list li {
    margin: 0.5rem 0;
    color: var(--text-color);
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--beige-light);
    padding: 6rem 0;
    position: relative;
}

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

.testimonial-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    position: relative;
    border: 1px solid var(--beige-dark);
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary-color);
    position: absolute;
    top: 1rem;
    left: 1rem;
    opacity: 0.2;
}

.testimonial-card p {
    margin-bottom: 1rem;
}

/* Google Reviews Section */
.google-reviews {
    margin-top: 3rem;
    text-align: center;
}

.google-rating {
    margin: 2rem 0;
    text-align: center;
}

.stars {
    color: #FFC107;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.review-author {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-rating {
    color: #FFC107;
    font-size: 1.1rem;
}

.google-cta {
    margin-top: 1.5rem;
}

.google-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background-color: var(--white);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    font-weight: 500;
}

.google-button i {
    color: #4285F4;
    font-size: 1.2rem;
}

.google-button:hover {
    background-color: #f8f8f8;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Media Queries */
@media (max-width: 768px) {
    /* Header et Navigation */
    .main-header {
        padding: 0.5rem 0;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    /* Hero Section */
    .hero {
        height: 60vh;
        margin-top: 50px;
    }
    
    .hero::before {
        background-position: center center;
        filter: brightness(1.1);
    }
    
    .hero::after {
        background: rgba(0, 0, 0, 0.05);
    }

    .hero h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-content {
        padding: 1rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    /* Services et Features */
    .services, .features, .about, .testimonials {
        padding: 3rem 1rem;
    }

    .services-grid, .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem;
        font-size: 0.95rem;
    }

    .testimonial-card::before {
        font-size: 3rem;
    }

    /* Footer */
    footer {
        padding: 3rem 1rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    /* Floating Booking Banner */
    .floating-booking {
        padding: 0.8rem;
    }

    .floating-booking p {
        font-size: 0.95rem;
        text-align: center;
    }

    .floating-booking .cta-button {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
    }

    /* Menu Mobile */
    .burger-menu {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }

    /* Contact Section */
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info, .contact-form {
        padding: 1.2rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
    }

    /* Benefits Section */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        padding: 1.5rem;
    }

    /* Google Reviews */
    .google-reviews {
        margin-top: 2rem;
    }

    .stars {
        font-size: 1.5rem;
    }

    .review-author {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

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

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

    /* Ajustements pour le mobile */
    .contact-section {
        padding: 4rem 1rem;
    }

    .contact-container {
        gap: 2rem;
    }

    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }

    .map-container {
        margin-top: 2rem;
        height: 300px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 2rem;
    }

    .footer-section:last-child {
        margin-bottom: 0;
    }

    /* Ajout d'un effet de zoom plus subtil pour mobile */
    .logo:hover {
        transform: scale(1.02);
    }
}

/* Optimisations pour très petits écrans */
@media (max-width: 360px) {
    .hero h2 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .floating-booking {
        padding: 0.6rem;
    }
}

/* Bannière RDV flottante */
.floating-booking {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(74, 37, 17, 0.95);
    color: var(--white);
    padding: 1rem;
    text-align: center;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
}

.floating-booking p {
    margin: 0;
    font-size: 1.1rem;
    flex: 1;
    padding-right: 1rem;
}

.floating-booking .cta-button {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.floating-booking .cta-button:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .floating-booking {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0.8rem;
    }

    .floating-booking p {
        font-size: 1rem;
        padding-right: 0;
        margin-bottom: 0.5rem;
    }

    .floating-booking .cta-button {
        width: 100%;
        text-align: center;
        padding: 0.6rem 1rem;
    }
}

/* Features Section */
.benefits {
    padding: 4rem 2rem;
    background-color: var(--beige-light);
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid var(--beige-dark);
}

.benefit-item i {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-color);
    margin-bottom: 0;
}

/* Section Contact */
.contact-section {
    padding: 6rem 2rem 4rem;
    background-color: var(--beige-light);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 1px solid var(--beige-dark);
}

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

.contact-details p {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-details i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 20px;
}

/* Carte Google Maps */
.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

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

/* Formulaire de contact */
.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 1px solid var(--beige-dark);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

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

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

.submit-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--burgundy-light);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        padding: 4rem 1rem;
    }
    
    .map-container {
        height: 300px;
    }
}

/* Styles généraux */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

/* Cartes cadeaux */
.gift-cards {
    background-color: #fff;
    padding: 4rem 0;
    position: relative;
}

.gift-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gift-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid var(--beige-dark);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gift-card:hover {
    transform: translateY(-5px);
}

.gift-card p {
    text-align: justify;
    margin-bottom: 1.5rem;
}

.gift-card .cta-button {
    margin-top: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--primary-color);  /* Marron pour le texte de navigation */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);  /* Bordeaux au survol */
}

/* Sections avec fond beige */
.services, .features, .benefits, .contact-section {
    background-color: var(--beige-light);
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--beige-dark);
}

/* Floating booking avec beige */
.floating-booking {
    background: rgba(74, 37, 17, 0.85);
    backdrop-filter: blur(5px);
}

body {
    background-color: var(--beige-light);
}

.feature-card, .contact-info, .contact-form {
    background-color: var(--white);
    border: 1px solid var(--beige-dark);
}

.tarifs-section {
    padding: 6rem 2rem 4rem;
    background-color: var(--beige-light);
}

.tarifs-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.tarif-category {
    background-color: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.tarif-category h3 {
    color: var(--primary-color);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.tarif-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

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

.tarif-card {
    background-color: var(--beige-light);
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--beige-dark);
}

.tarif-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.tarif-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--beige-dark);
}

.tarif-header h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 0;
}

.tarif-price {
    color: var(--secondary-color);
    font-size: 1.4rem;
    font-weight: bold;
}

.tarif-details {
    color: var(--text-color);
}

.tarif-duration {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.tarif-description {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: justify;
}

@media (max-width: 768px) {
    .tarifs-section {
        padding: 4rem 1rem 2rem;
    }

    .tarif-category {
        padding: 1.5rem;
    }

    .tarif-category h3 {
        font-size: 1.8rem;
    }

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

    .tarif-card {
        padding: 1.2rem;
    }

    .tarif-header h4 {
        font-size: 1.2rem;
    }

    .tarif-price {
        font-size: 1.3rem;
    }
}

/* Icônes et accents - Alternance des couleurs */
.feature-card i, 
.benefit-item i {
    color: var(--secondary-color);  /* Bordeaux pour les icônes */
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.feature-card:hover i,
.benefit-item:hover i {
    transform: scale(1.1);
}

/* Titres des features et benefits */
.feature-card h3,
.benefit-item h3 {
    color: var(--primary-color);  /* Marron pour les titres */
    margin-bottom: 0.5rem;
}

.contact-details i {
    color: var(--secondary-color);
}

.section-title::after {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

/* Testimonials */
.testimonial-card::before {
    color: var(--secondary-color);
}

/* Submit button - Bordeaux pour les actions */
.submit-btn {
    background-color: var(--secondary-color);
}

.submit-btn:hover {
    background-color: var(--burgundy-light);
}

/* Styles généraux de texte */
body {
    color: var(--text-color);
}

p {
    color: var(--text-color);
}

/* Titres de sections */
.section-title, 
h2, 
h3 {
    color: var(--primary-color);
}

/* Services */
.features h2 {
    color: var(--primary-color);
}

.feature-card p,
.feature-card .benefits-list li {
    color: var(--text-color);
}

/* Témoignages */
.testimonial-card p {
    color: var(--text-color);
}

.testimonial-card .review-author p {
    color: var(--text-color);
}

/* À propos */
.about-text p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: justify;
}

/* Benefits */
.benefit-item p {
    text-align: justify;
    margin-bottom: 1rem;
}

/* Contact */
.contact-details p {
    color: var(--text-color);
}

/* Footer - garder le texte blanc */
footer {
    color: var(--white);
}

.footer-section p,
.footer-section a {
    color: var(--white);
}

/* Floating booking - garder le texte blanc */
.floating-booking p {
    color: var(--white);
}

/* Formulaire */
.form-group label {
    color: var(--text-color);
}

/* Menu navigation */
.nav-links a {
    color: var(--primary-color);
}

/* Texte sur fond foncé */
.hero p,
.hero h2,
.tarifs-section p,
.tarifs-section h2,
.floating-booking p,
footer p,
footer h3,
footer a {
    color: var(--white);
}

/* Texte sur fond clair */
.feature-card p,
.benefit-item p,
.about-text p,
.contact-details p,
.testimonial-card p,
.form-group label,
.nav-links a {
    color: var(--text-color);
}

/* Titres sur fond clair */
.section-title,
.feature-card h3,
.benefit-item h3,
.about-text h2,
.about h2,
.contact-section h2 {
    color: var(--primary-color);
}

/* Texte sur fond bordeaux */
.footer-section h3,
.footer-section p,
.footer-section a {
    color: var(--white);
}

/* Texte sur fond marron */
/* Retrait du forçage global en blanc pour ne pas impacter le contenu des cartes */
/* .tarifs-section * { color: var(--white); } */

.tarif-card * {
    color: var(--text-color);
}

.tarif-card h3 {
    color: var(--primary-color);
}

/* Page Tarifs: masquer les descriptions, et styliser clairement la durée */
.tarifs-section .tarif-description {
    display: none !important;
}

.tarifs-section .tarif-duration {
    color: var(--secondary-color) !important;
    font-weight: 600;
}

/* Séparateurs en forme de vague */
.wave-separator {
    position: relative;
    width: 100%;
    height: 150px;
    display: block;
}

.wave-separator path {
    fill: var(--beige-light);
}

.wave-separator.wave-bottom path {
    fill: var(--beige-light);
}

.wave-separator.wave-bottom {
    transform: rotate(180deg) scaleX(-1);
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--beige-dark);
}

.about {
    position: relative;
    padding: 4rem 0;
    margin-bottom: -2px;
}

.gift-cards {
    position: relative;
    background-color: var(--white);
    padding: 4rem 0;
    margin-top: -2px;
}

.wave-section {
    position: relative;
    background: var(--beige-light);
}

.wave {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.wave-top {
    top: -2px;
}

.wave-bottom {
    bottom: -2px;
}

.wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 120px;
}

.wave .shape-fill {
    fill: #FFFFFF;
}

.testimonial-grid {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.testimonial-grid .google-reviews {
    margin-bottom: 2rem;
}

.testimonials {
    background-color: var(--beige-light);
    padding: 6rem 0;
    position: relative;
}

.about {
    position: relative;
    background-color: var(--white);
    z-index: 0;
}

.gift-section {
    position: relative;
    background-color: var(--white);
    z-index: 0;
}

/* Suppression des styles de vagues */
.wave,
.wave-top,
.wave-bottom,
.wave svg,
.wave .shape-fill,
.wave-separator,
.wave-section {
    display: none;
}

.about {
    position: relative;
    background-color: var(--white);
    padding: 4rem 0;
}

.gift-section {
    position: relative;
    background-color: var(--white);
    padding: 4rem 0;
}

.tarifs-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.tarifs-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--white);
}

.tarif-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

/* Suppression du texte "expertise unique" */
/* Ne masquer que les paragraphes de premier niveau de la section (ex: intro),
   mais laisser visibles les contenus des cartes tarifs */
.tarifs-section > p {
    display: none;
}

/* S'assurer que les détails des cartes restent visibles */
.tarif-details p,
.tarif-duration {
    display: block;
}

/* Section Massages */
.massages-section {
    padding: 6rem 2rem 4rem;
    background-color: var(--beige-light);
}

.massages-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.massage-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid var(--beige-dark);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.massage-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.massage-card:hover {
    transform: translateY(-5px);
}

.massage-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.massage-description {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: justify;
}

.massage-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
    min-height: 120px; /* Hauteur minimale pour uniformiser les cartes */
}

.massage-benefits li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.massage-benefits li::before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.massage-duration {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--beige-dark);
}

.massage-duration a {
    width: 100%;
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 25px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    background-color: var(--secondary-color);
    color: white;
    border: 2px solid var(--secondary-color);
}

.massage-duration a:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.massage-duration .book-now::after {
    content: "\f274";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
}

.massage-duration .consultation::after {
    content: "\f4ad";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
}

@media (max-width: 768px) {
    .massage-duration {
        flex-direction: column;
    }
    
    .massage-duration a {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

.massage-category {
    margin-bottom: 4rem;
}

.category-title {
    color: var(--primary-color);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.massage-card h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.massages-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .category-title {
        font-size: 1.8rem;
    }

    .massage-card h4 {
        font-size: 1.3rem;
    }

    .massages-container {
        padding: 0 1rem;
    }
}

/* Social Links dans le footer */
.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--white);
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Suppression des styles de la section Instagram */
.instagram-section,
.instagram-feed,
.instagram-embed,
.instagram-link {
    display: none;
}

.cta-button.book-now {
    background-color: var(--secondary-color);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.cta-button.book-now:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.cta-button.consultation {
    background-color: var(--secondary-color);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.cta-button.consultation:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Info-bulle pour les massages nécessitant une consultation */
.massage-card .consultation {
    position: relative;
}

.massage-card .consultation::before {
    content: 'Ce massage nécessite une consultation préalable';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.massage-card .consultation:hover::before {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 10px);
}

.booking-info {
    max-width: 1000px;
    margin: 2rem auto 4rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.booking-info > p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.booking-types {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
}

.booking-type {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: transparent;
    border-radius: 8px;
    max-width: 400px;
    border-left: 3px solid var(--secondary-color);
}

.booking-type i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.booking-type-content {
    text-align: left;
}

.booking-type h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.booking-type p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .booking-types {
        flex-direction: column;
    }
    
    .booking-info {
        margin: 1rem auto 3rem;
        padding: 1.5rem;
    }
}

/* Styles pour les boutons de réservation */
.massage-duration a:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.massage-duration .book-now::after {
    content: "\f274";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
}

.massage-duration .consultation::after {
    content: "\f4ad";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
} 
