:root {
        --primary-color: #1a1a1a;
        --secondary-color: #d4af73;
        --accent-color: #f8f5f0;
        --text-dark: #333333;
        --text-light: #777777;
        --white: #ffffff;
        --gray-light: #f9f9f9;
        --font-heading: 'Playfair Display', serif;
        --font-body: 'Montserrat', sans-serif;
    }

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

    html {
        scroll-behavior: smooth;
    }

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

    h1, h2, h3, h4 {
        font-family: var(--font-heading);
        font-weight: 600;
        line-height: 1.3;
    }

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

    .section-title {
        text-align: center;
        margin-bottom: 50px;
        position: relative;
    }

    .section-title h2 {
        font-size: 2.5rem;
        color: var(--primary-color);
        display: inline-block;
        padding-bottom: 15px;
    }

    .section-title h2:after {
        content: '';
        position: absolute;
        width: 70px;
        height: 3px;
        background-color: var(--secondary-color);
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    /* CORRECTION DU HEADER POUR DESKTOP */
    header {
        background-color: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        left: 0;
        right: 0;
    }

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

    /* CORRECTION POUR DESKTOP HEADER */
    .desktop-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .desktop-header .logo {
        font-family: var(--font-heading);
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-color);
        text-decoration: none;
        flex-shrink: 0;
    }

    .desktop-header .logo span {
        color: var(--secondary-color);
    }

    .desktop-header nav {
        display: flex;
        align-items: center;
    }

    .desktop-header nav ul {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        align-items: center;
    }

    .desktop-header nav ul li {
        margin-left: 25px;
        position: relative;
    }

    .desktop-header nav ul li:first-child {
        margin-left: 0;
    }

    .desktop-header nav ul li a {
        text-decoration: none;
        color: var(--primary-color);
        font-weight: 500;
        font-size: 0.95rem;
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
        white-space: nowrap;
    }

    .desktop-header nav ul li a i {
        margin-left: 5px;
        font-size: 0.8rem;
        transition: transform 0.3s;
    }

    .desktop-header nav ul li:hover a i {
        transform: rotate(180deg);
    }

    .desktop-header nav ul li a:hover {
        color: var(--secondary-color);
    }

    /* CORRECTION DU SOUS-MENU POUR DESKTOP */
    .desktop-header .submenu {
        position: absolute;
        top: 0%;
        left: 0;
        height: 150px;
        background-color: var(--white);
        /*min-width: 220px;*/
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 100;
        overflow-y: auto;
    }

    .desktop-header nav ul li:hover .submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .desktop-header .submenu li {
        margin: 0;
        width: 100%;
    }

    .desktop-header .submenu li a {
        padding: 12px 20px;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
    }

    .desktop-header .submenu li:last-child a {
        border-bottom: none;
    }

    .desktop-header .nav-booking {
        background-color: var(--secondary-color);
        color: var(--white);
        padding: 10px 20px;
        border-radius: 4px;
        transition: background-color 0.3s ease;
        margin-left: 25px;
    }

    .desktop-header .nav-booking:hover {
        background-color: #c19b5f;
        color: var(--white);
    }

    /* Navbar mobile amélioré */
    .mobile-header {
        display: none;
        width: 100%;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        background: none;
        border: none;
        flex-shrink: 0;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--primary-color);
        margin: 3px 0;
        transition: 0.3s;
    }

    .mobile-logo {
        font-family: var(--font-heading);
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--primary-color);
        text-decoration: none;
        text-align: center;
        flex-grow: 1;
    }

    .mobile-logo span {
        color: var(--secondary-color);
    }

    .mobile-icons {
        display: flex;
        gap: 15px;
        flex-shrink: 0;
    }

    .mobile-icons a {
        color: var(--primary-color);
        font-size: 1.2rem;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: background-color 0.3s;
    }

    .mobile-icons a:hover {
        background-color: rgba(212, 175, 115, 0.1);
    }

    /* Mobile menu panel */
    .mobile-menu-panel {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 2000;
        transition: left 0.4s ease;
        padding: 80px 20px 30px;
        overflow-y: auto;
    }

    .mobile-menu-panel.active {
        left: 0;
    }

    .mobile-menu-panel .logo {
        margin-bottom: 30px;
        font-size: 1.6rem;
        text-align: center;
        display: block;
    }

    .mobile-menu-panel ul {
        list-style: none;
    }

    .mobile-menu-panel ul li {
        margin-bottom: 10px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mobile-menu-panel ul li a {
        display: block;
        padding: 15px 10px;
        text-decoration: none;
        color: var(--primary-color);
        font-weight: 500;
        transition: color 0.3s;
    }

    .mobile-menu-panel ul li a:hover {
        color: var(--secondary-color);
    }

    .mobile-menu-panel .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }

    .mobile-menu-panel .has-submenu.active .submenu {
        display: block;
    }

    .mobile-menu-panel .submenu li {
        border-bottom: none;
    }

    .mobile-menu-panel .submenu li a {
        padding: 10px;
        font-size: 0.9rem;
    }

    .mobile-menu-panel .has-submenu > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-panel .has-submenu > a i {
        transition: transform 0.3s;
    }

    .mobile-menu-panel .has-submenu.active > a i {
        transform: rotate(180deg);
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* CORRECTION DE LA SECTION HERO POUR DESKTOP */
    .hero {
        position: relative;
        height: 100vh;
        margin-top: 0px;
        overflow: hidden;
        width: 100%;
        left: 0;
        right: 0;
    }

    .hero-slider {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

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

    .hero-slide:nth-child(1) {
        background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('images/bckg/bck1.jpg');
        background-size: cover;
        background-position: center;
    }

    .hero-slide:nth-child(2) {
        background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('images/bckg/bck2.jpg');
        background-size: cover;
        background-position: center;
    }

    .hero-slide:nth-child(3) {
        background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('images/bckg/bck3.jpg');
        background-size: cover;
        background-position: center;
    }

    .hero-content {
        max-width: 800px;
        padding: 20px;
        color: var(--white);
        width: 100%;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        animation: fadeInUp 1s ease;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 40px;
        opacity: 0.9;
        animation: fadeInUp 1.2s ease;
    }

    .btn-primary {
        display: inline-block;
        background-color: var(--secondary-color);
        color: var(--white);
        padding: 15px 35px;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        border: 2px solid var(--secondary-color);
        animation: fadeInUp 1.4s ease;
    }

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

    /* Carousel navigation */
    .hero-nav {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 10;
    }

    .hero-nav-btn {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.5);
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .hero-nav-btn.active {
        background-color: var(--secondary-color);
    }

    .hero-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(255, 255, 255, 0.2);
        color: var(--white);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }

    .hero-arrow:hover {
        background-color: var(--secondary-color);
    }

    .hero-prev {
        left: 30px;
    }

    .hero-next {
        right: 30px;
    }

    /* Animation for hero content */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Services Section */
    .services {
        padding: 100px 0;
        background-color: var(--accent-color);
    }

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

    .service-card {
        background-color: var(--white);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-10px);
    }

    .service-img {
        height: 220px;
        overflow: hidden;
    }

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

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

    .service-content {
        padding: 25px;
    }

    .service-content h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: var(--primary-color);
    }

    .service-content p {
        color: var(--text-light);
        margin-bottom: 15px;
    }

    .service-price {
        color: var(--secondary-color);
        font-weight: 600;
        font-size: 1.1rem;
    }

    /* About Section */
    .about {
        padding: 100px 0;
        background-color: var(--white);
    }

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

    .about-text h2 {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .about-text p {
        margin-bottom: 20px;
        color: var(--text-light);
    }

    .about-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .feature {
        display: flex;
        align-items: flex-start;
    }

    .feature i {
        color: var(--secondary-color);
        font-size: 1.5rem;
        margin-right: 15px;
        margin-top: 5px;
    }

    .about-image {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .about-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Testimonials */
    .testimonials {
        padding: 100px 0;
        background-color: var(--gray-light);
    }

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

    .testimonial-slider {
        position: relative;
        overflow: hidden;
    }

    .testimonial-slide {
        text-align: center;
        padding: 30px;
        display: none;
        animation: fadeIn 1s ease;
    }

    .testimonial-slide.active {
        display: block;
    }

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

    .testimonial-text {
        font-size: 1.2rem;
        font-style: italic;
        color: var(--text-dark);
        margin-bottom: 30px;
        line-height: 1.8;
    }

    .client-info {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .client-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        margin-right: 15px;
    }

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

    .client-name {
        font-weight: 600;
        color: var(--primary-color);
    }

    .client-rating {
        color: var(--secondary-color);
        margin-top: 5px;
    }

    .slider-dots {
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ddd;
        margin: 0 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .dot.active {
        background-color: var(--secondary-color);
    }

    /* Contact Section */
    .contact {
        padding: 100px 0;
        background-color: var(--white);
    }

    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .contact-info h3 {
        font-size: 1.8rem;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .contact-info p {
        margin-bottom: 30px;
        color: var(--text-light);
    }

    .contact-details {
        margin-bottom: 40px;
    }

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

    .contact-item i {
        width: 40px;
        height: 40px;
        background-color: var(--accent-color);
        color: var(--secondary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        width: 100%;
        padding: 15px;
        margin-bottom: 20px;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        font-family: var(--font-body);
        font-size: 1rem;
    }

    .contact-form textarea {
        height: 150px;
        resize: vertical;
    }

    .contact-form button {
        background-color: var(--secondary-color);
        color: var(--white);
        border: none;
        padding: 15px 35px;
        border-radius: 4px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .contact-form button:hover {
        background-color: #c19b5f;
    }

    /* Footer */
    footer {
        background-color: var(--primary-color);
        color: var(--white);
        padding: 70px 0 20px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 50px;
    }

    .footer-logo {
        font-family: var(--font-heading);
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 20px;
    }

    .footer-logo span {
        color: var(--secondary-color);
    }

    .footer-about p {
        opacity: 0.7;
        margin-bottom: 20px;
    }

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

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--white);
        text-decoration: none;
        transition: all 0.3s ease;
    }

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

    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 20px;
        color: var(--white);
    }

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

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

    .footer-links ul li a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-links ul li a:hover {
        color: var(--secondary-color);
    }

    .footer-hours p {
        opacity: 0.7;
        margin-bottom: 10px;
    }

    .copyright {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0.7;
        font-size: 0.9rem;
    }

    /* Bouton WhatsApp flottant */
    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        background-color: #25D366;
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        z-index: 1000;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .whatsapp-float:hover {
        background-color: #128C7E;
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
        .hero-content h1 {
            font-size: 2.8rem;
        }
        
        .about-content {
            grid-template-columns: 1fr;
        }
        
        .contact-wrapper {
            grid-template-columns: 1fr;
        }
        
        .about-image {
            order: -1;
        }
        
        .hero-prev, .hero-next {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }
        
        .hero-prev {
            left: 15px;
        }
        
        .hero-next {
            right: 15px;
        }
    }

    @media (max-width: 768px) {
        .desktop-header {
            display: none;
        }
        
        .mobile-header {
            display: flex;
        }
        
        .header-container {
            padding: 0px 0;
        }
        
        .hero {
            margin-top: 0px;
            height: 80vh;
        }
        
        .hero-content h1 {
            font-size: 2.2rem;
        }
        
        .hero-content p {
            font-size: 1rem;
        }
        
        .section-title h2 {
            font-size: 2rem;
        }
        
        .services-grid {
            grid-template-columns: 1fr;
        }
        
        .about-features {
            grid-template-columns: 1fr;
        }
        
        .whatsapp-float {
            width: 55px;
            height: 55px;
            font-size: 1.8rem;
            bottom: 20px;
            right: 20px;
        }
    }
    
    @media (max-width: 480px) {
        .hero-content h1 {
            font-size: 1.8rem;
        }
        
        .btn-primary {
            padding: 12px 25px;
            font-size: 0.9rem;
        }
        
        .mobile-menu-panel {
            width: 85%;
        }
    }