/* ===== NAVBAR ===== */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.15); /* transparent style glace */
    border-radius: 50px; /* forme ovale */
    padding: 10px 75px;
    backdrop-filter: blur(10px); /* effet verre */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    flex-wrap: wrap; /* permet de passer à la ligne sur petits écrans */
}

.glass-nav a {
    text-decoration: none;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2); /* léger effet glace */
    transition: all 0.3s ease;
    white-space: nowrap; /* empêche le texte de couper */
}

/* Effet hover */
.glass-nav a:hover {
    background: rgba(255, 255, 255, 0.4);
    color: #000;
}

/* ===== FOOTER ===== */
.footer-futuriste {
    background-color: #000000ff; /* vert sombre */
    color: #fff;
    padding: 40px 20px;
    text-align: left;
}

.footer-futuriste h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-futuriste a {
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-futuriste a:hover {
    color: #303302ff; /* léger vert clair au survol */
}

.footer-futuriste .social-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-size: 0.8rem;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-futuriste .social-icon:hover {
    background: #a8ff8e;
    color: #064420;
}

.footer-futuriste .btn-gradient {
    background-color: #064420; /* même vert sombre pour le bouton */
    border: none;
    color: #fff;
    font-weight: 600;
}

.footer-futuriste .btn-gradient:hover {
    background-color: #0b6623; /* vert légèrement plus clair au survol */
}

/* ===== MEDIA QUERIES POUR MOBILE ===== */
@media (max-width: 768px) {
    .glass-nav {
        flex-direction: column;
        padding: 10px 20px;
        top: 10px;
        gap: 10px;
    }

    .glass-nav a {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .footer-futuriste {
        text-align: center;
        padding: 30px 15px;
    }

    .footer-futuriste .social-icon {
        margin: 5px;
    }
}
