/* 🌿 Barre de navigation */
.navbar {
    background: linear-gradient(90deg, #3D8B40, #6AAE6A) !important; /* Dégradé vert forêt naturel */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1rem;
}

/* ✅ Logo et Nom du site */
.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FAFAF0; /* Blanc cassé */
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

/* Animation au survol */
.navbar-brand:hover {
    color: #F5F5DC; /* Beige doux */
    transform: scale(1.1);
}

/* 🏔 Logo */
.navbar-brand img {
    height: 60px;
    width: auto;
    margin-right: 10px;
}

/* 🔹 Liens de navigation */
.navbar-nav .nav-link {
    color: #FAFAF0; /* Blanc cassé */
    font-size: 1rem;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #F5F5DC; /* Beige naturel */
}

/* ✨ Animation sous les liens */
.navbar-nav .nav-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #F5F5DC;
    transition: width 0.3s ease;
    margin: 0 auto;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* 📌 Bouton Réservation */
.btn-primary {
    background-color: #4CAF50; /* Vert forêt */
    border: none;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: #3D8B40;
    color: white;
    transform: scale(1.1);
}

.btn-primary:active {
    transform: scale(0.95);
}

/* 📱 Menu Burger */
.navbar-toggler {
    border: none;
    background-color: transparent;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28250, 250, 240, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* 🔹 Navigation Responsive */
@media (max-width: 991px) {
    .navbar {
        background: linear-gradient(90deg, #3D8B40, #6AAE6A); /* Fond dégradé */
        padding: 1rem;
    }

    .navbar-toggler {
        border: none;
        background-color: rgba(255, 255, 255, 0.2);
        padding: 0.5rem 1rem;
        border-radius: 5px;
    }

    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }

    /* 🌿 Menu déroulant */
    .navbar-collapse {
        background-color: #FAFAF0; /* Blanc cassé pour un effet naturel */
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        text-align: center;
    }

    .navbar-nav .nav-item {
        margin-bottom: 0.8rem;
    }

    .navbar-nav .nav-link {
        font-weight: 500;
        color: #2C3E50;
        text-align: center;
        padding: 0.5rem 1rem;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        background-color: rgba(60, 179, 113, 0.2);
        color: #2C3E50;
    }

    .navbar-nav .nav-link.active {
        background-color: #3D8B40;
        color: #FAFAF0;
    }

    .navbar .btn-primary {
        display: inline-block;
        margin-top: 1rem;
        margin-bottom: 1rem;
        background-color: #4CAF50;
        color: white;
        font-weight: bold;
        border: none;
        padding: 0.5rem 1.2rem;
        transition: background-color 0.3s ease;
    }

    .navbar .btn-primary:hover {
        background-color: #3D8B40;
        color: white;
    }
}