/* ---------- Polices auto-hébergées (RGPD : pas de CDN externe) ---------- */
@font-face {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/playfair-400i.woff2') format('woff2');
}
@font-face {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 600;
    font-display: swap;
    src: url('/assets/fonts/playfair-600i.woff2') format('woff2');
}
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/raleway-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/assets/fonts/raleway-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/assets/fonts/raleway-600.woff2') format('woff2');
}

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

:root {
    --primary-color: #9d8aa0;      /* mauve */
    --primary-dark: #7d6a82;       /* mauve profond */
    --accent: #d49aae;             /* vieux rose */
    --accent-dark: #c07d95;
    --bg: #f7f1f4;                 /* rose très clair */
    --bg-alt: #ffffff;
    --bg-soft: #efe6ec;
    --text: #4a3f47;              /* brun-mauve foncé */
    --text-muted: #6f6470;
    --text-subtle: #9a8f97;
    --card-bg: #ffffff;
    --border-color: rgba(125, 106, 130, 0.15);
    --shadow: 0 6px 24px rgba(125, 106, 130, 0.12);
    --font-title: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
}

/* ---------- Navbar ---------- */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--primary-dark);
}

.logo img {
    height: 46px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.logo-name {
    font-family: var(--font-title);
    font-size: 1.5rem;
    letter-spacing: 0.12em;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    align-items: center;
    margin: 0;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    line-height: 1;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-dark);
}

.btn-contact {
    background: var(--accent);
    color: #fff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* ---------- Layout ---------- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    margin-bottom: 3rem;
}

/* ---------- Hero ---------- */
.hero {
    padding: 5rem 0 4rem;
    text-align: center;
    background: linear-gradient(160deg, var(--bg-soft) 0%, var(--bg) 100%);
}

.hero-logo {
    width: 170px;
    height: auto;
    border-radius: 16px;
    margin: 0 auto 1.5rem;
    display: block;
    box-shadow: var(--shadow);
}

.hero h1 {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.15em;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.hero-subtitle {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--accent-dark);
    margin-bottom: 2rem;
}

.hero-mantra {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

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

/* ---------- Buttons ---------- */
.btn {
    padding: 0.9rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(192, 125, 149, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 125, 149, 0.4);
}

.btn-secondary {
    background: var(--bg-alt);
    color: var(--primary-dark);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-soft);
    transform: translateY(-2px);
}

/* ---------- Headings ---------- */
h2 {
    font-family: var(--font-title);
    font-size: 2.25rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

p {
    margin-bottom: 1rem;
}

ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

strong {
    color: var(--accent-dark);
    font-weight: 600;
}

/* ---------- Page header ---------- */
.page-header {
    padding: 4rem 0 1rem;
    text-align: center;
    background: linear-gradient(160deg, var(--bg-soft) 0%, var(--bg) 100%);
}

.page-header h1 {
    font-family: var(--font-title);
    font-size: 2.75rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.08em;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.header-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* ---------- Content sections ---------- */
.content-section {
    padding: 3rem 0;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 800px;
}

.intro-block {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

/* ---------- Cards / services ---------- */
.service-block {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.service-block h3 {
    margin-bottom: 0.5rem;
}

.service-block p {
    color: var(--text-muted);
}

.price-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    margin-bottom: 0;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--border-color);
    color: var(--text);
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list .price {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: var(--accent-dark);
    font-weight: 600;
    white-space: nowrap;
    padding-left: 1rem;
}

/* ---------- Benefits / contre-indications ---------- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: var(--shadow);
}

.info-card.warning {
    border-top: 3px solid var(--accent-dark);
}

.info-card ul {
    margin-bottom: 0;
    color: var(--text-muted);
}

.notice {
    margin: 1.5rem 0;
    padding: 1.25rem 1.5rem;
    background: var(--bg-soft);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
}

/* ---------- Contact ---------- */
.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-name {
    font-family: var(--font-title);
    font-size: 2rem;
    font-style: italic;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.contact-line {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.contact-line a {
    color: var(--accent-dark);
    text-decoration: none;
    font-weight: 600;
}

.contact-line a:hover {
    text-decoration: underline;
}

.contact-modes {
    display: inline-block;
    margin: 1rem 0;
    padding: 0.5rem 1.5rem;
    background: var(--bg-soft);
    border-radius: 30px;
    font-family: var(--font-title);
    font-style: italic;
    color: var(--primary-dark);
}

.contact-hours {
    margin-top: 1.5rem;
    color: var(--text-muted);
    line-height: 1.9;
}

.contact-hours strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* ---------- Legal ---------- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
    line-height: 1.8;
}

/* ---------- CTA ---------- */
.cta-section {
    padding: 4rem 0;
    text-align: center;
    background: var(--bg-soft);
}

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

.cta-section p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ---------- Footer ---------- */
footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 2.5rem 0 2rem;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 3rem;
}

footer .footer-mantra {
    font-family: var(--font-title);
    font-style: italic;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1rem;
}

footer nav {
    margin-bottom: 1rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 73px;
        right: -100%;
        width: 260px;
        height: calc(100vh - 73px);
        background: var(--bg-alt);
        flex-direction: column;
        padding: 2rem 0;
        gap: 0;
        transition: right 0.3s ease;
        border-left: 1px solid var(--border-color);
        overflow-y: auto;
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .btn-contact {
        margin: 1rem 2rem;
        width: calc(100% - 4rem);
        text-align: center;
    }

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

    .hero-subtitle {
        font-size: 1.25rem;
    }

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

    .logo-name {
        font-size: 1.25rem;
    }

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

    .page-header h1 {
        font-size: 2rem;
    }
}
