/* Variables */
:root {
    --color-primary: #C9A87C;
    --color-primary-dark: #B8976A;
    --color-primary-text: #A07840;
    --color-secondary: #D4B896;
    --color-bg: #F5F0E8;
    --color-bg-light: #FAF7F2;
    --color-text: #3A3A3A;
    --color-text-light: #5A5A5A;
    --color-white: #FFFFFF;
    --color-dark: #2C2C2C;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   BANDE PROMOTIONS DÉFILANTE
   ============================================ */

.promo-bar {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-primary) 100%);
    color: var(--color-white);
    padding: 12px 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
}

.promo-track {
    display: flex;
    animation: scrollPromo 25s linear infinite;
    width: max-content;
}

@keyframes scrollPromo {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.promo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
}

.promo-item i {
    font-size: 16px;
}

/* Header */
.header {
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1000;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    overflow: visible;
    transition: var(--transition);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
    z-index: 1001;
    align-self: flex-start;
}

.logo img {
    height: 110px;
    width: auto;
    background: rgba(255, 255, 255, 0.97);
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-dark);
    text-decoration: none;
    position: relative;
    padding: 5px 0;
}

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

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

.btn-rdv {
    font-family: var(--font-body);
    background: var(--color-primary);
    color: var(--color-white) !important;
    padding: 12px 28px !important;
    border-radius: 30px;
    font-size: 12px !important;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.btn-rdv:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-light) 100%);
    padding-top: 124px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero.jpg') center/cover no-repeat;
    opacity: 0.15;
}

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

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-primary-text);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 500;
    color: var(--color-primary-text);
    margin-bottom: 30px;
}

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

.hero-text {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    font-family: var(--font-body);
    background: var(--color-primary);
    color: var(--color-white);
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--color-primary);
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    font-family: var(--font-body);
    background: transparent;
    color: var(--color-primary-text);
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--color-primary);
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
}

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

/* Sections */
.section {
    padding: 100px 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-primary-text);
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--color-primary);
    margin: 20px auto 0;
}

/* About */
.about {
    background: var(--color-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--color-dark);
}

.about-text p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--color-text);
}

.about-signature {
    font-family: var(--font-heading);
    margin-top: 30px;
    font-style: italic;
    font-size: 22px;
    font-weight: 600;
    color: var(--color-primary-text);
}

/* Services */
.services-disclaimer {
    background: var(--color-white);
    padding: 30px 40px;
    border-radius: var(--border-radius);
    margin-bottom: 60px;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--color-primary);
}

.services-disclaimer h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-primary-text);
    margin-bottom: 15px;
}

.services-disclaimer ul {
    list-style: none;
}

.services-disclaimer li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: var(--color-text);
    font-weight: 400;
}

.services-disclaimer li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-header {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 25px 30px;
}

.service-header h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.service-content {
    padding: 30px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    color: var(--color-dark);
}

.service-price {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-primary-text);
}

/* ============================================
   GALERIE - SLIDER DÉROULANT
   ============================================ */

.gallery-section {
    background: var(--color-white);
    padding: 80px 0;
    overflow: hidden;
}

.gallery-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    animation: defilement 20s linear infinite;
    width: max-content;
}

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

@keyframes defilement {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.gallery-card {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(201, 168, 124, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card-overlay i {
    color: var(--color-white);
    font-size: 30px;
}

/* Avis */
.reviews-section {
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-light) 100%);
    padding: 80px 0;
    overflow: hidden;
}

.reviews-wrapper {
    width: 100%;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 25px;
    animation: slideReviews 30s linear infinite;
    width: max-content;
}

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

@keyframes slideReviews {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    width: 320px;
    min-width: 320px;
    flex-shrink: 0;
    border: 1px solid rgba(201, 168, 124, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;
}

.review-stars {
    color: #FFD700;
    font-size: 13px;
    letter-spacing: 1px;
}

.review-text {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 12px;
    font-style: italic;
    font-weight: 400;
}

.review-service {
    font-size: 13px;
    color: var(--color-primary-text);
    font-weight: 700;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-white);
    padding: 12px 25px;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text);
    text-decoration: none;
    margin-top: 40px;
}

.google-badge i {
    color: #4285F4;
    font-size: 18px;
}

.google-badge span {
    color: var(--color-primary);
    font-weight: 600;
}

/* Contact */
.contact {
    background: var(--color-white);
}

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

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--color-dark);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--color-white);
    font-size: 20px;
}

.contact-details h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-dark);
}

.contact-details a {
    font-size: 16px;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 400;
}

.contact-details a:hover {
    color: var(--color-primary-text);
}

.contact-hours {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.contact-hours h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 15px;
    color: var(--color-text);
}

.contact-social {
    margin-top: 30px;
}

.contact-social h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.social-links i {
    font-size: 18px;
    color: var(--color-primary);
}

.social-links a:hover i {
    color: var(--color-white);
}

.contact-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 100%;
    min-height: 400px;
}

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

/* Footer */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 60px 40px 30px;
}

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

.footer-brand img {
    height: 80px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border-radius: 10px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--color-primary);
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
}

.footer-column a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float i {
    color: var(--color-white);
    font-size: 28px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

@media (max-width: 768px) {
    .header-container {
        padding: 8px 20px;
    }

    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1002;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--color-dark);
        transition: var(--transition);
        border-radius: 2px;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

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

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

    .nav-menu.active {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: calc(100vh - 80px);
        background: var(--color-bg);
        padding: 60px 20px;
        gap: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        text-align: center;
        z-index: 2000;
        overflow-y: auto;
    }

    .hero-title {
        font-size: 42px;
    }

    .section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 36px;
    }

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

    .gallery-card {
        width: 250px;
        height: 250px;
    }

    .review-card {
        width: 280px;
        min-width: 280px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}