/*
Theme Name: Vanessa Home Serenity
Theme URI: https://vanessa-homeserenity.fr
Author: Vanessa Home Serenity
Author URI: https://vanessa-homeserenity.fr
Description: Thème WordPress élégant pour spa, massages et bien-être. Design chaleureux aux tons beige et marron, parfait pour les professionnels du bien-être.
Version: 4.0.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vanessa-home-serenity
Tags: one-column, custom-menu, custom-logo, featured-images, theme-options, translation-ready, spa, wellness, massage
*/

/* ===== CSS VARIABLES ===== */
:root {
    --cream: #FBF8F4;
    --beige-light: #F5EDE4;
    --beige: #E8DDD0;
    --beige-warm: #D4C4B0;
    --taupe: #B8A99A;
    --caramel: #C4A67D;
    --brown-light: #9C8570;
    --brown: #7D6B5D;
    --brown-dark: #5D4E42;
    --chocolate: #4A3C32;
    --espresso: #3D3229;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    background-color: var(--cream);
    color: var(--espresso);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

ul {
    list-style: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* ===== NAVIGATION ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, var(--cream) 60%, transparent);
    transition: all 0.4s ease;
}

.site-header.scrolled {
    background: rgba(251, 248, 244, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(74, 60, 50, 0.08);
}

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

.site-branding a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--chocolate);
}

.custom-logo {
    max-height: 67px;
    width: auto;
}

.site-branding .logo-icon {
    width: 43px;
    height: 43px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.main-navigation ul {
    display: flex;
    gap: 3rem;
}

.main-navigation a {
    color: var(--brown-dark);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--caramel);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

.main-navigation a:hover {
    color: var(--caramel);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--chocolate);
    cursor: pointer;
}

/* Header Instagram Link */
.header-social {
    display: flex;
    align-items: center;
    margin-left: 2rem;
}

.header-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--brown) 0%, var(--chocolate) 100%);
    border-radius: 50%;
    color: var(--cream);
    transition: all 0.3s ease;
}

.header-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(74, 60, 50, 0.3);
    color: var(--cream);
}

.header-instagram svg {
    width: 20px;
    height: 20px;
}

/* Prestation Card with Image */
.prestation-image {
    height: 300px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.prestation-image.has-image {
    background-color: var(--beige);
}

.prestation-image.has-image .prestation-icon {
    display: none;
}

.prestation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 50px;
}

.btn-primary {
    background: var(--brown);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--chocolate);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(93, 78, 66, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--brown-dark);
    border: 1px solid var(--brown);
}

.btn-outline:hover {
    background: var(--brown-dark);
    color: var(--cream);
    border-color: var(--brown-dark);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 5% 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(232, 221, 208, 0.4) 0%, rgba(251, 248, 244, 0.2) 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, var(--beige-warm) 0%, transparent 70%);
    opacity: 0.5;
    animation: breathe 8s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--taupe) 0%, transparent 70%);
    opacity: 0.4;
    animation: breathe 10s ease-in-out infinite reverse;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.3s forwards;
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--chocolate);
}

.hero-title span {
    font-style: italic;
    color: var(--caramel);
}

.hero-description {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: var(--brown-light);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s forwards;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brown);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--caramel), transparent);
    animation: float 2s ease-in-out infinite;
}

/* ===== SECTIONS ===== */
section {
    padding: 7rem 5%;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--caramel);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--chocolate);
    margin-bottom: 1rem;
}

.section-description {
    color: var(--brown-light);
    font-size: 1.05rem;
}

/* ===== PRESTATIONS SECTION ===== */
.prestations-section {
    background: var(--white);
}

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

.prestation-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: var(--cream);
    transition: all 0.5s ease;
}

.prestation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(74, 60, 50, 0.15);
}

.prestation-image {
    height: 300px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.prestation-card.massage .prestation-image {
    background: linear-gradient(135deg, var(--beige-warm) 0%, var(--caramel) 100%);
}

.prestation-card.spa .prestation-image {
    background: linear-gradient(135deg, var(--taupe) 0%, var(--brown) 100%);
}

.prestation-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(74, 60, 50, 0.1);
}

.prestation-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    opacity: 0.4;
    transition: all 0.5s ease;
}

.prestation-card:hover .prestation-icon {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.6;
}

.prestation-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--white);
    color: var(--chocolate);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.prestation-content {
    padding: 2.5rem;
}

.prestation-content h3 {
    font-size: 2rem;
    color: var(--chocolate);
    margin-bottom: 1rem;
}

.prestation-content > p {
    color: var(--brown-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.prestation-features {
    margin-bottom: 2rem;
}

.prestation-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--beige);
    color: var(--brown-dark);
}

.prestation-features li:last-child {
    border-bottom: none;
}

.prestation-features li span {
    font-size: 1.2rem;
}

.prestation-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.prestation-price .from {
    font-size: 0.9rem;
    color: var(--taupe);
}

.prestation-price .amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--caramel);
    font-weight: 500;
}

.prestation-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--brown);
    color: var(--cream);
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.prestation-cta:hover {
    background: var(--chocolate);
    transform: translateX(5px);
    color: var(--cream);
}

.prestation-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.prestation-cta:hover svg {
    transform: translateX(5px);
}

/* ===== DETAILS SECTIONS ===== */
.details-section {
    padding: 7rem 5%;
}

.details-section.massage {
    background: linear-gradient(180deg, var(--cream) 0%, var(--beige-light) 100%);
}

.details-section.spa {
    background: var(--white);
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.details-grid.reverse {
    direction: rtl;
}

.details-grid.reverse > * {
    direction: ltr;
}

.details-image {
    position: relative;
}

.details-image-main {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.details-image-main.has-image {
    background-color: var(--beige);
}

.details-image-main.has-image .emoji-icon {
    display: none;
}

.details-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details-section.massage .details-image-main:not(.has-image) {
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-warm) 50%, var(--caramel) 100%);
}

.details-section.spa .details-image-main:not(.has-image) {
    background: linear-gradient(135deg, var(--taupe) 0%, var(--brown-light) 50%, var(--brown) 100%);
}

.details-image-main .emoji-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    opacity: 0.3;
}

.details-accent {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.3;
}

.details-section.massage .details-accent {
    bottom: -30px;
    right: -30px;
    background: var(--caramel);
}

.details-section.spa .details-accent {
    top: -30px;
    left: -30px;
    background: var(--brown);
}

.details-content h3 {
    font-size: 2.2rem;
    color: var(--chocolate);
    margin-bottom: 1.5rem;
}

.details-content h3 span {
    color: var(--caramel);
    font-style: italic;
}

.details-content > p {
    color: var(--brown-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

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

.type-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--beige);
    transition: all 0.3s ease;
}

.details-section.spa .type-card {
    background: var(--cream);
}

.type-card:hover {
    border-color: var(--caramel);
    transform: translateY(-3px);
}

.type-card h4 {
    font-size: 1.1rem;
    color: var(--chocolate);
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.type-card p {
    font-size: 0.9rem;
    color: var(--taupe);
}

/* Type Card with Image */
.type-card.has-image {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.type-card-image {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--beige-light);
}

.type-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.type-card-content {
    flex: 1;
    min-width: 0;
}

.type-card.has-image h4 {
    margin-bottom: 0.2rem;
}

.type-card.has-image p {
    margin: 0;
}

/* Prestation Features with Images */
.prestation-features li.has-image {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-image {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--beige-light);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: linear-gradient(135deg, var(--chocolate) 0%, var(--espresso) 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(196, 166, 125, 0.1) 0%, transparent 70%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-section .section-tag {
    color: var(--caramel);
}

.about-section .section-title {
    color: var(--cream);
    margin-bottom: 2rem;
}

.about-section p {
    font-size: 1.15rem;
    line-height: 1.9;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.about-signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-style: italic;
    color: var(--caramel);
    margin-top: 2rem;
}

.about-values {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.value-item {
    text-align: center;
}

.value-item span {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.8;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--cream);
}

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

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

.testimonial-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--beige);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-service {
    display: inline-block;
    background: var(--beige-light);
    color: var(--brown);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    font-style: italic;
    color: var(--brown-light);
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--beige-warm), var(--caramel));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--chocolate);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--taupe);
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
    background: var(--beige-light);
    text-align: center;
    padding: 5rem 5%;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--chocolate) 0%, var(--brown) 100%);
    color: var(--cream);
    border-radius: 50px;
    font-size: 1.1rem;
}

.instagram-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(74, 60, 50, 0.2);
    color: var(--cream);
}

.instagram-link svg {
    width: 28px;
    height: 28px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--beige-light) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--chocolate);
}

.contact-info > p {
    color: var(--brown-light);
    margin-bottom: 2rem;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--brown);
}

.contact-details li span {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--beige-light), var(--beige));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--caramel);
    transform: translateY(-5px);
    color: var(--cream);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(74, 60, 50, 0.08);
    border: 1px solid var(--beige);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--beige);
    border-radius: 10px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--beige-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--caramel);
    background: var(--white);
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.contact-form .btn-primary {
    width: 100%;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--espresso);
    color: var(--beige-light);
    padding: 4rem 5% 2rem;
}

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

.footer-brand .site-branding a {
    color: var(--beige-light);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(245, 237, 228, 0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 1rem;
}

.footer-links h4 {
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--caramel);
}

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

.footer-links a {
    color: rgba(245, 237, 228, 0.6);
}

.footer-links a:hover {
    color: var(--caramel);
}

.footer-bottom {
    border-top: 1px solid rgba(245, 237, 228, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(245, 237, 228, 0.4);
    font-size: 0.85rem;
}

/* ===== WORDPRESS SPECIFIC ===== */
.wp-block-button__link {
    background: var(--brown);
    color: var(--cream);
    padding: 1rem 2rem;
    border-radius: 50px;
}

.wp-block-button__link:hover {
    background: var(--chocolate);
}

/* Screen reader text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* ===== CUSTOM SVG ICONS ===== */
.vhs-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.4em;
    height: 1.4em;
}

.vhs-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.prestation-features .vhs-icon,
.type-card .vhs-icon {
    color: var(--caramel);
}

/* Forfaits SPA Display */
.spa-packages {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--beige);
}

.spa-packages h4 {
    font-size: 1.3rem;
    color: var(--chocolate);
    margin-bottom: 1rem;
}

.packages-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.package-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--cream);
    border-radius: 12px;
    border: 1px solid var(--beige);
}

.package-info h5 {
    font-size: 1rem;
    color: var(--chocolate);
    margin-bottom: 0.2rem;
}

.package-info span {
    font-size: 0.85rem;
    color: var(--taupe);
}

.package-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--caramel);
    font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .prestations-grid,
    .details-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .details-grid.reverse {
        direction: ltr;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .main-navigation.toggled {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .menu-toggle {
        display: block;
    }

    .header-social {
        margin-left: 1rem;
    }

    .header-instagram {
        width: 36px;
        height: 36px;
    }

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

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

    .about-values {
        gap: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .prestation-image {
        height: 220px;
    }
}
