/* La Beauté Dauré - Styles Luxe */

:root {
    --color-primary: #C9A86C;
    --color-primary-light: #DFC799;
    --color-primary-dark: #A68B4B;
    --color-accent: #B8986A;
    --color-text: #1A1A1A;
    --color-text-light: #6B6B6B;
    --color-background: #FAFAFA;
    --color-white: #FFFFFF;
    --color-cream: #F7F5F2;
    --color-dark: #1A1A1A;
    --color-gold: #C9A86C;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', Arial, sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }

    .section {
        padding: 80px 0;
        overflow-x: hidden;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header.scrolled {
    padding: 15px 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header-date {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--color-text-light);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

/* Hamburger menu - hidden on desktop */
.menu-toggle {
    display: none;
}

.menu-overlay {
    display: none;
}

.nav a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--transition);
}

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

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

.nav-btn-reservation {
    background: var(--color-dark);
    color: var(--color-white) !important;
    padding: 12px 28px;
    border-radius: 0;
    transition: var(--transition);
    border: 1px solid var(--color-dark);
}

.nav-btn-reservation::after {
    display: none;
}

.nav-btn-reservation:hover {
    background: transparent;
    color: var(--color-dark) !important;
    transform: none;
}

.nav-btn-fidelite {
    background: transparent;
    color: var(--color-text) !important;
    padding: 12px 28px;
    border-radius: 0;
    transition: var(--transition);
    border: 1px solid var(--color-text);
}

.nav-btn-fidelite::after {
    display: none;
}

.nav-btn-fidelite:hover {
    background: var(--color-dark);
    color: var(--color-white) !important;
    transform: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
    background: var(--color-dark);
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--color-white);
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-indicator.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-welcome {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-style: normal;
    color: var(--color-gold);
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--color-white);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin: 0 auto 30px auto;
}

.logo-container {
    margin-bottom: 30px;
}

.logo {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    border: 5px solid rgba(255, 255, 255, 0.4);
}

.tagline {
    font-family: var(--font-sans);
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.subtitle {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Buttons */
.btn-reservation {
    display: inline-block;
    background: transparent;
    color: var(--color-white);
    padding: 18px 50px;
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition);
    box-shadow: none;
    border: 1px solid var(--color-white);
    cursor: pointer;
}

.btn-reservation:hover {
    background: var(--color-white);
    color: var(--color-dark);
    transform: none;
    box-shadow: none;
}

.btn-reservation:focus {
    outline: 3px solid var(--color-primary-light);
    outline-offset: 2px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    box-shadow: none;
}

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

/* Sections */
.section {
    padding: 140px 0;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.85rem;
    margin-bottom: 80px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Institut Section */
.institut {
    background: var(--color-white);
}

.institut-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.institut-text p {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.institut-text strong {
    color: #5C4A3D;
    font-weight: 600;
}

.institut-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.institut-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.institut-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #C9A86C, #D4A574);
    border-radius: 50%;
}

.institut-text .btn-reservation {
    margin-top: 20px;
}

.institut-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(212, 149, 106, 0.2);
}

/* Services Section */
.services {
    background: #F5EDE6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: var(--color-white);
    padding: 0;
    border-radius: 0;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(92, 74, 61, 0.08);
    border: 1px solid rgba(92, 74, 61, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C9A86C, #D4A574);
    transform: scaleX(0);
    transition: var(--transition);
    z-index: 2;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(92, 74, 61, 0.15);
    background: var(--color-white);
    border-color: #D4A574;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px 25px;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: #5C4A3D;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.service-card .service-link {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.75rem;
    color: #C9A86C;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

.service-content h3 {
    margin-bottom: 10px;
}

.service-content p {
    margin-bottom: 0;
}

/* Gallery Section */
.galerie {
    background: var(--color-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    filter: grayscale(20%);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 40px 25px 25px;
    opacity: 1;
    transition: var(--transition);
}

.gallery-overlay span {
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: 1.2rem;
}

/* ========================================
   BLOG & CONSEILS SECTION
======================================== */
.blog {
    background: linear-gradient(135deg, #F5EDE6 0%, #E8D5C4 100%);
    padding: 80px 0;
}

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

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #C9A86C;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: #5C4A3D;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    color: #7a6a5a;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-date {
    display: inline-block;
    color: #C9A86C;
    font-size: 0.85rem;
    font-weight: 500;
    padding-top: 10px;
    border-top: 1px solid #F5EDE6;
    width: 100%;
}

/* Blog Responsive - Caché sur mobile */
@media (max-width: 768px) {
    .blog {
        display: none !important;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    padding: 15px;
    transition: var(--transition);
}

.lightbox-close {
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--color-primary);
}

/* Photo Modal */
.photo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.photo-modal.active {
    display: flex;
}

.photo-modal-content {
    background: var(--color-white);
    border-radius: 0;
    padding: 0;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow: auto;
    position: relative;
    text-align: center;
    animation: modalSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.photo-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--color-dark);
    border: none;
    font-size: 1.5rem;
    color: var(--color-white);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-modal-close:hover {
    background: var(--color-gold);
}

.photo-modal-image {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
}

.photo-modal-body {
    padding: 35px 30px;
}

.photo-modal-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--color-text);
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 1px;
}

.photo-modal-body .btn-reservation {
    background: var(--color-dark);
    color: var(--color-white);
    border: 1px solid var(--color-dark);
}

.photo-modal-body .btn-reservation:hover {
    background: transparent;
    color: var(--color-dark);
}

/* Contact Section */
.contact {
    background: #E8D5C4;
    color: var(--color-text);
}

.contact .section-title {
    color: var(--color-text);
}

.contact .section-subtitle {
    color: var(--color-text-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: var(--color-primary);
}

.contact-item svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--color-primary-dark);
}

.contact-item h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--color-text);
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    padding: 60px 50px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.contact-logo {
    width: 265px;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    margin-bottom: 30px;
    border: none;
    filter: none;
    mix-blend-mode: multiply;
}

.contact-cta p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 35px;
    line-height: 1.8;
    color: var(--color-text);
    font-style: italic;
}

.contact-cta .btn-reservation {
    background: var(--color-primary);
    color: var(--color-white);
    border: 1px solid var(--color-primary);
}

.contact-cta .btn-reservation:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

/* Reservation Section */
.reservation {
    background: var(--color-cream);
}

.booking-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(212, 149, 106, 0.2);
}

.booking-iframe {
    width: 100%;
    height: 700px;
    border: none;
    background: var(--color-white);
}

/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.booking-modal.active {
    display: flex;
}

.booking-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 90vh;
    background: var(--color-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: var(--color-dark);
    border: none;
    border-radius: 0;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    line-height: 1;
}

.booking-modal-close:hover {
    background: var(--color-gold);
    transform: none;
}

.booking-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Links */
.contact-item a {
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #5C4A3D;
    color: var(--color-white);
    padding: 60px 0 40px;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-content p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    margin-top: 15px;
    color: #E8D5C4;
    letter-spacing: 1px;
}

.footer-address {
    margin-top: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.footer-divider {
    width: 40px;
    height: 1px;
    background: #D4A574;
    margin: 25px auto;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .gallery-grid .gallery-item:first-child {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .header {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        padding: 15px 20px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    /* Bouton hamburger */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
    }

    .menu-bar {
        display: block;
        width: 100%;
        height: 3px;
        background: #5C4A3D;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

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

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

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

    /* Navigation sidebar */
    .nav {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: -5px 0 20px rgba(0,0,0,0.15);
        transition: right 0.3s ease;
        z-index: 1001;
    }

    .nav.open {
        right: 0;
    }

    .nav a {
        font-size: 1.1rem;
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid #F5EDE6;
        color: #5C4A3D;
    }

    .nav a:hover {
        color: #C9A86C;
    }

    /* Cacher le lien Conseils sur mobile */
    .nav a[href="#blog"] {
        display: none;
    }

    .nav-btn-fidelite,
    .nav-btn-reservation {
        margin-top: 15px;
        text-align: center;
        border-radius: 5px;
    }

    /* Overlay */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

    .menu-overlay.active {
        display: block;
    }

    .hero {
        padding: 140px 15px 60px;
        min-height: 100vh;
    }

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

    .hero-welcome {
        font-size: 0.9rem;
    }

    .hero-divider {
        width: 60px;
    }

    .logo {
        max-width: 250px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .institut-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .institut-text {
        padding: 0;
    }

    .institut-text p {
        font-size: 0.95rem;
    }

    .institut-list {
        font-size: 0.9rem;
    }

    .institut-image {
        order: -1;
    }

    .institut-image img {
        height: 280px;
        border-radius: 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        border-radius: 12px;
    }

    .service-image {
        height: 180px;
    }

    .service-content h3 {
        font-size: 1.1rem;
    }

    .service-content p {
        font-size: 0.85rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-item {
        border-radius: 8px;
    }

    .gallery-overlay {
        padding: 20px 10px 10px;
    }

    .gallery-overlay span {
        font-size: 0.85rem;
    }

    /* Cacher le module Conseils Beauté sur mobile */
    .blog {
        display: none !important;
    }

    .faq-container {
        padding: 0;
    }

    .faq-question {
        padding: 20px 0;
    }

    .faq-question span {
        font-size: 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .contact {
        padding: 50px 0;
    }

    .contact .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .contact-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0;
        width: 100%;
    }

    .contact-cta {
        order: -1;
        padding: 20px 0;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        background: transparent;
        border-radius: 0;
    }

    .contact-cta p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .contact-cta .btn-reservation {
        width: 100%;
        padding: 18px 30px;
        font-size: 1rem;
    }

    .contact-logo {
        width: 150px;
        margin: 0 auto 20px auto;
        display: block;
    }

    .contact-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 0;
    }

    .contact-item {
        display: flex;
        align-items: center;
        padding: 10px 0;
        text-align: left;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }

    .contact-item svg {
        width: 24px;
        height: 24px;
        min-width: 24px;
        margin-right: 15px;
        color: #C9A86C;
    }

    .contact-item h4 {
        font-size: 0.85rem;
        margin-bottom: 3px;
        color: #C9A86C;
    }

    .contact-item p {
        font-size: 0.95rem;
        margin: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .contact-item a {
        color: #5C4A3D;
        text-decoration: none;
    }

    .contact-item:active {
        background: transparent;
    }

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

    .footer {
        padding: 30px 15px;
    }

    .footer-tagline {
        font-size: 1rem;
    }

    .footer-content p {
        font-size: 0.75rem;
    }

    .prestations-banner {
        padding: 12px 0;
    }

    .prestation-item {
        font-size: 0.85rem;
        padding: 0 15px;
        letter-spacing: 1px;
    }
}

@media (max-width: 768px) {
    .booking-iframe {
        height: 500px;
    }

    .booking-modal-content {
        height: 95vh;
        border-radius: 15px;
    }

    .booking-modal-close {
        top: 5px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 8px 10px;
    }

    .nav {
        gap: 5px 8px;
    }

    .nav a {
        font-size: 0.6rem;
        padding: 4px 6px;
    }

    .nav-btn-fidelite,
    .nav-btn-reservation {
        font-size: 0.55rem !important;
        padding: 5px 8px !important;
    }

    .hero {
        min-height: 100vh;
        padding: 120px 15px 50px;
    }

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

    .hero-welcome {
        font-size: 0.8rem;
    }

    .tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .btn-reservation {
        padding: 14px 30px;
        font-size: 0.8rem;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }

    .service-image {
        height: 150px;
    }

    /* Cacher le module Conseils Beauté sur mobile */
    .blog {
        display: none !important;
    }

    .contact-logo {
        width: 120px;
    }

    .booking-iframe {
        height: 450px;
    }

    .booking-modal {
        padding: 10px;
    }

    .booking-modal-content {
        height: 98vh;
        border-radius: 10px;
    }
}

/* ========================================
   ANIMATIONS MODERNES
======================================== */

/* Animation de révélation au scroll */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Animation élégante pour le hero */
.hero-content {
    animation: none;
}

.hero-welcome {
    animation: fadeInDown 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.hero-title {
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

.hero-divider {
    animation: scaleIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}

.tagline {
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1s both;
}

.subtitle {
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1.2s both;
}

.hero .btn-reservation {
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1.4s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(212, 149, 106, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 15px rgba(212, 149, 106, 0);
    }
}

/* Effet shimmer sur les boutons */
.btn-reservation {
    position: relative;
    overflow: hidden;
}

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

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

/* Cartes de services animées */
.service-card {
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--color-gold);
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
    color: var(--color-gold);
}

.service-icon svg {
    transition: var(--transition);
}

/* Galerie avec effets modernes */
.gallery-item {
    transition: var(--transition-slow);
    position: relative;
}

.gallery-item::after {
    content: 'Voir';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    color: white;
    padding: 15px 35px;
    border: 1px solid var(--color-white);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    transition: var(--transition);
    z-index: 10;
}

.gallery-item:hover {
    transform: none;
    z-index: 5;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(0.7);
}

.gallery-item img {
    transition: var(--transition-slow);
}

/* Animation des indicateurs du hero */
.hero-indicator {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-indicator:hover {
    transform: scale(1.3);
}

.hero-indicator.active {
    animation: indicatorPulse 2s ease-in-out infinite;
}

@keyframes indicatorPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 149, 106, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(212, 149, 106, 0); }
}

/* Section titre avec ligne animée */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary-light), var(--color-primary), var(--color-primary-light));
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title.active::after {
    width: 80px;
}

/* Contact items avec animation */
.contact-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item svg {
    transition: all 0.4s ease;
}

.contact-item:hover svg {
    transform: scale(1.2);
    color: var(--color-primary);
}

/* Institut image parallax effect */
.institut-image {
    overflow: hidden;
    border-radius: 20px;
}

.institut-image img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.institut-image:hover img {
    transform: scale(1.08);
}

/* Navigation links avec effet underline */
.nav a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Stagger animation pour les éléments en grille */
.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }

.gallery-item:nth-child(1) { transition-delay: 0.05s; }
.gallery-item:nth-child(2) { transition-delay: 0.1s; }
.gallery-item:nth-child(3) { transition-delay: 0.15s; }
.gallery-item:nth-child(4) { transition-delay: 0.2s; }
.gallery-item:nth-child(5) { transition-delay: 0.25s; }
.gallery-item:nth-child(6) { transition-delay: 0.3s; }
.gallery-item:nth-child(7) { transition-delay: 0.35s; }

/* Smooth scroll indicator */
@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Gradient animé pour le fond du hero */
.hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(40, 25, 15, 0.65) 0%,
        rgba(90, 62, 43, 0.55) 50%,
        rgba(40, 25, 15, 0.65) 100%
    );
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Loading animation pour les images */
.gallery-item img,
.institut-image img {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmerLoad 1.5s infinite;
}

@keyframes shimmerLoad {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Footer animation */
.footer-content {
    animation: fadeInUp 0.8s ease;
}

.footer-tagline {
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    text-align: center;
    animation: fadeInUp 1s ease 1.5s both;
}

.scroll-text {
    display: block;
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.scroll-indicator:hover .scroll-text {
    opacity: 1;
    color: var(--color-primary-light);
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    animation: bounceDown 2s ease-in-out infinite;
}

.scroll-arrow svg {
    width: 100%;
    height: 100%;
    color: var(--color-white);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.scroll-indicator:hover .scroll-arrow svg {
    opacity: 1;
    color: var(--color-primary-light);
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

/* Cursor pointer pour les éléments interactifs */
.service-card,
.gallery-item,
.contact-item {
    cursor: pointer;
}

/* ========================================
   FAQ SECTION
======================================== */

.faq {
    background: var(--color-white);
}

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

.faq-item {
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:hover {
    background: var(--color-cream);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    padding-left: 15px;
}

.faq-question span {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-text);
    flex: 1;
    padding-right: 20px;
    letter-spacing: 0.5px;
}

.faq-icon {
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 300;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 0 30px 0;
}

.faq-answer p {
    color: var(--color-text-light);
    line-height: 1.9;
    font-size: 1rem;
    margin: 0;
    padding-left: 15px;
    border-left: 2px solid var(--color-gold);
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 25px 0;
    }

    .faq-question span {
        font-size: 1.1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 0 25px 0;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    .faq-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

/* ========================================
   BANDEAU PRESTATIONS CAROUSEL
======================================== */

.prestations-banner {
    background: #F5EDE6;
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}

.prestations-banner::before,
.prestations-banner::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.prestations-banner::before {
    left: 0;
    background: linear-gradient(90deg, #F5EDE6 0%, transparent 100%);
}

.prestations-banner::after {
    right: 0;
    background: linear-gradient(-90deg, #F5EDE6 0%, transparent 100%);
}

.prestations-track {
    display: flex;
    width: max-content;
    animation: scrollBanner 15s linear infinite;
}

.prestations-track:hover {
    animation-play-state: paused;
}

.prestations-content {
    display: flex;
    align-items: center;
    gap: 0;
}

.prestation-item {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 0 60px;
    color: #5C4A3D;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 3px;
    white-space: nowrap;
    text-transform: uppercase;
    transition: var(--transition);
}

.prestation-item:hover {
    color: var(--color-primary);
}

.prestation-icon {
    color: var(--color-primary);
    font-size: 0.6rem;
}

@keyframes scrollBanner {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* Responsive bandeau */
@media (max-width: 768px) {
    .prestations-banner {
        padding: 10px 0;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }

    .prestation-item {
        font-size: 1rem;
        padding: 0 20px;
    }

    .prestation-icon {
        font-size: 0.8rem;
    }
}
