

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #c76060;
           background: linear-gradient(135deg, #5b8de9 0%, #84a2d8 100%);
           
        
           
        }

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

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
          
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        nav a:hover {
            color: #ffd700;
        }

        .hero {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23228B22" width="1200" height="600"/><circle fill="%2332CD32" cx="200" cy="150" r="50" opacity="0.7"/><circle fill="%23228B22" cx="400" cy="100" r="30" opacity="0.8"/><circle fill="%23006400" cx="600" cy="200" r="40" opacity="0.6"/><circle fill="%2332CD32" cx="800" cy="120" r="35" opacity="0.7"/><circle fill="%23228B22" cx="1000" cy="180" r="45" opacity="0.5"/></svg>');
            background-size: cover;
            background-position: center;
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: rgb(222, 209, 209);
        }
        #accueil {
          background-image: url(./img/image2.png);
        
        }
      
        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
            animation: fadeInUp 1s ease-out;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
           /* max-width: 600px;*/
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
            animation: fadeInUp 1s ease-out 0.3s both;
            text-align: center;
        }

        .cta-button {
            background: linear-gradient(45deg, #6cc286, #dbd4d7);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            display: inline-block;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }



        .main-content {
           background: rgb(235, 233, 233);
            margin-top: -50px;
            border-radius: 30px 30px 0 0;
            position: relative;
            z-index: 10;
            padding: 4rem 0;
   
            
        }
       
        .section {
            padding: 4rem 0;
            margin-bottom: 3rem;
       
        }

   
        .section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #2c3e50;
            position: relative;
        }

        .section h2::after {
            content: '';
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #ff6b6b, #ffd93d);
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .destination-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .destination-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        img {
            width: 100%;
            height: auto;
            display: block;
        }

        .card-image {
            height: 250px;
            position: relative;
            overflow: hidden;
        }

        .card-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
        } 

        .card-content {
            padding: 2rem;
        }

        .card-content h3 {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .card-content p {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .tag {
            background: linear-gradient(45deg, #ff6b6b, #ffd93d);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .info-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 2rem;
            border-radius: 20px;
            color: white;
            text-align: center;
        }

        .info-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .info-card p {
            line-height: 1.6;
            opacity: 0.9;
        }

        footer {
            background: #6499ce;
            color: white;
            text-align: center;
            padding: 3rem 0;
            margin-top: 4rem;
        }

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

        .footer-section h4 {
            margin-bottom: 1rem;
            color: #ffd700;
        }

        .footer-section a {
            color: #bdc3c7;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #ffd700;
        }

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

        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            backdrop-filter: blur(10px);
        }

        .modal-content {
            background: white;
            margin: 5% auto;
            padding: 2rem;
            border-radius: 20px;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
        }

        .close {
            position: absolute;
            right: 1rem;
            top: 1rem;
            font-size: 2rem;
            cursor: pointer;
            color: #999;
        }

        .close:hover {
            color: #333;
        }

        /* Burger button styles */
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Style de base pour la navigation */
nav#main-nav {
    margin-left: auto;
}

nav#main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    padding: 0;
    margin: 0;
}

nav#main-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
}

/* Responsive nav */
@media (max-width: 900px) {
    .burger {
        display: flex;
        z-index: 1002;
    }

    nav#main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1001;
    }

    nav#main-nav.open {
        right: 0;
    }

    nav#main-nav ul {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    nav#main-nav ul li {
        margin: 1rem 0;
    }

    nav#main-nav ul li a {
        font-size: 1.5rem;
    }
}

/* Style pour le desktop (écrans larges) */
@media (min-width: 901px) {
    .burger {
        display: none;
    }

    nav#main-nav {
        position: static;
        width: auto;
        height: auto;
        background: none;
    }
}

.burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}
.burger.open span:nth-child(2) {
    opacity: 0;
}
.burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .destinations-grid {
                grid-template-columns: 1fr;
            }
            
            nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }
        }

        header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 1rem 0;
}

body.menu-open {
    overflow: hidden;
}
.main-content {
    background: white;
    margin-top: 1px; /* Adjusted to account for fixed header height */
    border-radius: 30px 30px 0 0;
    position: relative;
    z-index: 10;
    padding: 4rem 0;
}