
        :root {
            --primary: #8B5A2B;
            --secondary: #D2B48C;
            --accent: #A67C52;
            --light: #F5F5DC;
            --dark: #3E2723;
            --white: #FFFFFF;
            --text: #333333;
        }
         ul {
        margin-top: 0 !important;
        margin-bottom: 0px !important;
        }
        p {
        margin-top: 0;
        margin-bottom: 2px !important;
        text-align: justify;
        }

        /* Language Switcher */
        .language-switcher {
            margin-left: 30px;
            font-size: 16px;
            display: flex;
            align-items: center;
        }

        .language-switcher a {
            color: var(--dark);
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            margin: 0 5px;
        }

        .language-switcher a:hover, 
        .language-switcher a.active {
            color: var(--primary);
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .language-switcher {
                margin-left: 0;
                order: 2; /* Change l'ordre pour le placer après le menu-toggle */
            }
            
            nav {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
            }
            
            .menu-toggle {
                order: 1;
            }
            
            .nav-links {
                order: 3;
                width: 100%;
            }
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "TASA Orbiter", sans-serif;
            font-size: 16px
        }
        
        body {
              font-family: "TASA Orbiter", sans-serif;
            line-height: 1.8;
            color: var(--text);
            background-color: var(--light);
            font-size: 13px;
            font-weight: 500;
        }
        
        /* Header & Navigation - Keep your custom menu */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            z-index: 1000;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }
        
        .logo span {
            color: var(--accent);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 16px;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 24px;
        }
        
        /* Hero Section */
        .hero {
                background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/public/img/hero.jpg');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--white);
            padding-top: 80px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 25px;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 300;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            font-style: italic;
            text-align: center;
        }
        
        .btn-custom {
            display: inline-block;
            background-color: var(--primary);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: 1px solid var(--primary);
            font-size: 20px;
            text-transform: uppercase;

        }
                
        .btn-custom:hover {
            transform: scale(1.05);       /* تكبير خفيف */
            transition: all 0.3s ease;   /* animation smooth */
            cursor: pointer;
            background-color: var(--primary);
            color: var(--white);

        }

        
        .btn-secondary-custom {
            background-color: transparent;
            border-color: var(--white);
            margin-left: 15px;
            color: var(--white);
        }
        
        .btn-secondary-custom:hover {
            background-color: var(--white);
            color: var(--primary);
        }
        
        /* Section Titles */
        .section-title {
            text-align: center;
            margin-bottom: 30px;
            color: var(--dark);
            position: relative;
            font-size: 30px;
        }
        
        .section-title:after {
            content: "";
            display: block;
            width: 80px;
            height: 3px;
            background-color: var(--primary);
            margin: 25px auto 0;
        }
        
        /* About Section */
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .signature {
            font-size: 2rem;
            color: var(--primary);
            margin-top: 2rem;
            text-align: right;
        }
        
        /* Services Section */
        .service-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-icon {
            background-color: var(--primary);
            color: var(--white);
            font-size: 40px;
            padding: 30px;
            text-align: center;
        }
        .service-icon {
        background-color: var(--primary);
        color: var(--white);
        font-size: 40px;
        padding: 30px;
        text-align: center;
        }
        .service-content {
            padding: 30px;
        }
        .service-content h3 {
        font-size: 19px;
        margin-bottom: 5px;
        color: var(--primary);
        font-weight: 600;
        text-align: center;
        }
        .service-content p {
        font-size: 17px;
        margin-bottom: 0px;
        line-height: 1.5;
        text-align: center;
        }
        
        /* Rooms Section */
        .room-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(14, 12, 12, 0.1);
            height: 100%;
        }
        
        .room-image {
            height: 250px;
            overflow: hidden;
        }
        
        .room-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .room-card:hover .room-image img {
            transform: scale(1.1);
        }
        
        .room-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .room-feature {
            display: flex;
            align-items: center;
            font-size: 20px;
            color: #8b5a2b;
        }
        
        .room-feature i {
            margin-right: 5px;
            color: var(--primary);
        }
        
        /* Gallery Section */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            height: 250px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: white;
            padding: 15px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .gallery-item:hover .gallery-caption {
            opacity: 1;
        }

        /* Video Section */
        .video-container {
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            border-radius: 8px;
            overflow: hidden;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(0,0,0,0.3);
            cursor: pointer;
        }

        .play-button {
            width: 80px;
            height: 80px;
            background-color: rgba(255,255,255,0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .play-button i {
            color: var(--primary);
            font-size: 30px;
            margin-left: 5px;
        }

        .play-button:hover {
            transform: scale(1.1);
            background-color: rgba(255,255,255,0.9);
        }
        
        /* Reservation Section */
        .reservation {
            background-color: var(--white);
            padding: 100px 0;
        }
        
        .reservation-form {
            background-color: var(--light);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Promotions Section */
        .promotions {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .promo-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            height: 100%;
        }
        
        .promo-card:hover {
            transform: translateY(-10px);
        }
        
        .promo-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--primary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
        }
        
        /* Contact Section */
        .contact {
            padding: 100px 0;
            background-color: var(--white);
        }
        
        .contact-info-card {
            background-color: var(--light);
            padding: 30px;
            border-radius: 8px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .info-icon {
            font-size: 20px;
            color: var(--primary);
            margin-right: 15px;
            margin-top: 5px;
        }
        
        /* Map Section */
        .map-container {
            height: 400px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--secondary);
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary);
        }
        
        .footer-links li {
            list-style: none;
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: inline-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);
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--secondary);
            color: var(--dark);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--white);
                flex-direction: column;
                align-items: center;
                padding-top: 40px;
                transition: left 0.3s;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .btn-custom {
                display: block;
                width: 80%;
                margin: 0 auto 15px;
            }
            
            .btn-secondary-custom {
                margin-left: auto;
            }
        }
  