
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            
        }

        :root {
            --espresso: #5A211F;
            --white: #ffffff;
            --amber: #AC5444;
            --dark-espresso: #d8854e;
            --light-bg: #d3d1cc;
        }

        body {
            height: 100vh;
            width: 100vw;
            font-family: "Funnel Sans", sans-serif;
            line-height: 1.6;
            color: var(--espresso);
            background: linear-gradient(135deg, var(--light-bg) 0%, #d8c09a 100%);
            
        }

        .script-font {
            font-family:  "Mrs Sheppards", cursive;
        }

        .mono-font {
             font-family: "Fragment Mono", monospace;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background:var(--espresso);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            color: var(--white);
            font-size: 1.8rem;
            font-weight:lighter;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--amber);
        }

        .language-selector {
            display: flex;
            gap: 0.5rem;
        }

        .language-selector button {
            background: none;
            border: 1px solid var(--amber);
            color: var(--white);
            padding: 0.3rem 0.8rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .language-selector button.active,
        .language-selector button:hover {
            background: var(--amber);
            color: var(--espresso);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(60, 36, 21, 0.4), rgba(60, 36, 21, 0.4)), url(img/paysage.jpg);
            background-position: top center;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;            
            
            
        }

        .hero-content {
            max-width: 800px;
            color: var(--white);
            padding: 2rem;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 300;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .menu-overlay {
            position: relative;
            bottom: 40%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(15px);
            border-radius: 15px;
            padding: 2rem;
            display: flex;
            gap: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            justify-content: center;
        }

        .menu-item {
            display: flex;
            flex-direction: column;
            margin: auto;
            align-items: center;
            color: var(--white);
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .menu-item:hover {
            transform: translateY(-10px);
        }

        .menu-icon {
            width: 60px;
            height: 60px;
            background: var(--amber);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.5rem;
            font-size: 1.5rem;
            color: var(--espresso);
        }

        /* Sections */
        .section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--espresso);
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .gallery-item {
            aspect-ratio: 4/3;
            background: var(--espresso);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .gallery-item:hover {
            transform: scale(1.25);
        }

        .gallery-item::after {
            content: attr(data-category);
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: var(--white);
            padding: 1rem;
            text-align: center;
            font-weight: bold;
        }

        /* News */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .news-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .news-card:hover {
            transform: translateY(-5px);
        }

        .news-image {
            height: 200px;
            background: var(--espresso);
            position: relative;
        }

        .news-content {
            padding: 1.5rem;
        }

        .news-date {
            color: var(--amber);
            font-size: 0.9rem;
            font-weight: bold;
        }

        .news-title {
            font-size: 1.3rem;
            margin: 0.5rem 0;
            color: var(--espresso);
        }

        /* Contact */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .contact-info {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .contact-info h3 {
            color: var(--amber);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .contact-details {
            margin-top: 2rem;
        }

                        .contact-item {
            display: flex;
            align-items: center;
            margin: 1rem 0;
            color: var(--espresso);
        }

        .contact-icon {
            width: 30px;
            height: 30px;
            background: var(--amber);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: var(--white);
        }

        /* CTA Buttons */
        .cta-button {
            display: inline-block;
            background: var(--amber);
            color: var(--espresso);
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            margin: 1rem 0;
        }

        .cta-button:hover {
            background: var(--espresso);
            color: var(--white);
            transform: translateY(-2px);
        }
        footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background-color: var(--espresso);
            color: var(--white);
            text-align: center;
            padding: 10px;
        }
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-menu {                
              background-color: #c9c4c4;
              width: 100%;
              position: absolute;
              top: 0px;
              left: 0;
             justify-content: center;
              
            }
            .hero{
              margin-top: 100px;
            }
            .hero h1 {
                font-size: 2.5rem;
                
            }

            .menu-overlay {
                flex-direction: column;
                gap: 1rem;
                margin-bottom: 50px;
            }

            .contact-content {
                grid-template-columns: 1fr;
            }
.section h2 {
              margin-top: 100px;
            }
            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .news-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Hidden language content */
        .lang-content {
            display: none;
        }

        .lang-content.active {
            display: block;
        }