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

:root {
    /* Colors - Palette violette enrichie pour plus de profondeur et de modernité */
    --primary-violet: #8b5cf6;
    /* Plus vibrant */
    --primary-dark: #7c3aed;
    --secondary-lilac: #c4b5fd;
    --light-lilac: #f3e8ff;
    --pearl-white: #faf5ff;
    --text-dark: #1e1b4b;
    /* Plus lisible que le gris */
    --text-muted: #4c1d95;
    --accent-gold: #fbbf24;
    /* Touche de lumière */
    --white: #ffffff;

    /* Glassmorphism Refined */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(139, 92, 246, 0.15);
    --hover-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.25);

    /* Typography */
    --font-title: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 24px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.8;
    background: var(--pearl-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===========================
   HEADER
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-violet);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav a:hover {
    color: var(--primary-violet);
}

.nav a:hover::after {
    width: 100%;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary,
.btn-secondary {
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-violet));
    color: white;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    border: 1px solid var(--primary-violet);
}

.btn-secondary:hover {
    background: var(--primary-violet);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
}

.btn-primary.large {
    padding: 20px 52px;
    font-size: 1.15rem;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('hero-bg.png') no-repeat center center;
    background-size: cover;
    z-index: -2;
    filter: brightness(1.05);
    /* Légèrement plus lumineux */
}

/* Gradient Overlay pour lisibilité */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.4) 60%, transparent 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--primary-dark);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 32px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
    transform-origin: left;
    animation: popIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-title {
    font-family: var(--font-title);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-title span {
    color: var(--primary-violet);
    position: relative;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #52525b;
    font-weight: 400;
    margin-bottom: 48px;
    max-width: 650px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-link {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-link:hover {
    color: var(--text-dark);
    transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--primary-violet);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 4px;
    background: var(--primary-violet);
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 28px;
        opacity: 0;
    }
}

/* ===========================
   SECTIONS & TITLES
   =========================== */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-title {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 72px;
    position: relative;
    letter-spacing: -0.5px;
}

.section-title::before {
    content: '...';
    display: block;
    font-size: 2rem;
    color: var(--primary-violet);
    line-height: 0;
    margin-bottom: 20px;
    opacity: 0.5;
}

/* ===========================
   CARDS & GLASSMORPHISM
   =========================== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--glass-shadow);
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.glass::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-violet));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glass:hover::after {
    opacity: 1;
}

/* ===========================
   MON APPROCHE
   =========================== */
.section-approche {
    background-color: var(--pearl-white);
    background-image: radial-gradient(at 100% 0%, hsla(267, 76%, 85%, 0.3) 0px, transparent 50%),
        radial-gradient(at 0% 100%, hsla(250, 70%, 90%, 0.3) 0px, transparent 50%);
}

.approche-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.approche-card {
    padding: 56px 48px;
    text-align: left;
}

.approche-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 32px;
    background: var(--light-lilac);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 2rem;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.approche-card:hover .approche-icon {
    transform: rotate(0deg) scale(1.1);
}

.approche-card h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.approche-card p {
    font-size: 1.05rem;
    color: #52525b;
}

/* ===========================
   PRESTATIONS
   =========================== */
.section-prestations {
    background: #ffffff;
}

.prestations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start;
}

.prestation-card {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.prestation-header {
    background: linear-gradient(135deg, var(--light-lilac), #fff);
    padding: 48px;
    text-align: center;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.prestation-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-violet);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.15);
}

.prestation-card h3 {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.prestation-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
    margin: 16px 0;
}

.prestation-price span {
    font-size: 1.2rem;
    font-weight: 500;
    color: #718096;
}

.prestation-badge {
    background: var(--primary-violet);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prestation-description {
    padding: 48px;
    flex-grow: 1;
    background: white;
    font-size: 1.05rem;
}

.prestation-description ul {
    list-style: none;
    margin: 24px 0;
}

.prestation-description li {
    padding: 12px 0;
    color: var(--text-dark);
    display: flex;
    align-items: start;
    gap: 12px;
}

.prestation-description li svg {
    flex-shrink: 0;
    color: var(--primary-violet);
    margin-top: 4px;
}

/* Massages Tarifs */
.massage-tarifs {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tarif-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.tarif-item:hover {
    background: white;
    border-color: var(--secondary-lilac);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tarif-item.highlighted {
    background: var(--light-lilac);
    border-color: var(--primary-violet);
}

.tarif-price {
    font-weight: 700;
    color: var(--primary-dark);
}

/* ===========================
   OFFRES
   =========================== */
.section-offres {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-violet) 100%);
    color: white;
}

.section-offres .section-title {
    color: white;
}

.section-offres .section-title::before {
    color: rgba(255, 255, 255, 0.3);
}

.offres-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.offre-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 48px;
    text-align: center;
    border-radius: 30px;
}

.offre-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.offre-card.glass:hover::after {
    display: none;
    /* Pas de barre colorée ici pour rester cohérent */
}

.offre-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.offre-card h3 {
    font-family: var(--font-title);
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: white;
}

.offre-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.offre-badge {
    display: inline-block;
    background: #fff;
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* ===========================
   INFOS
   =========================== */
.section-infos {
    background: var(--pearl-white);
}

.infos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.info-card {
    padding: 48px;
    height: 100%;
}

.info-card h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: 32px;
    text-align: center;
    color: var(--primary-dark);
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 500;
    color: #64748b;
}

.info-value {
    font-weight: 700;
    color: var(--text-dark);
}

/* ===========================
   CONTACT
   =========================== */
.section-contact {
    padding: 120px 0;
    text-align: center;
    background: url('hero-bg.png') no-repeat bottom center;
    background-size: cover;
    position: relative;
}

.section-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.contact-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 64px;
}

.contact-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: white;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.footer-disclaimer {
    font-size: 0.9rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 16px;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .approche-grid,
    .prestations-grid,
    .offres-grid,
    .infos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 0;
        background: rgba(255, 255, 255, 0.95);
    }

    .nav {
        display: none;
        /* Mobile menu n'était pas demandé explicitement mais préférable de cacher pour l'instant */
    }

    .hero-content {
        padding: 0;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
    }

    .section-padding {
        padding: 60px 0;
    }
}