/* Réinitialisation de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Style de la barre de navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Style du Logo */
.nav-logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Liste des liens */
.nav-links {
    display: flex;
    list-style: none;
    gap: 20px; /* Espace entre les liens */
}

/* Style des liens individuels */
.nav-links a {
    color: #f4f4f4;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

/* Effet au survol et lien actif */
.nav-links a:hover, 
.nav-links a.active {
    color: #00bcd4; /* Une jolie couleur bleu/cyan */
}

.img1 {
    box-shadow:  0 0 10px rgba(0,0,0,0.5);
    width: 100%;
    aspect-ratio: 16/9; /* Maintient un ratio d'aspect de 16:9 */
    display: block;
    margin: 0 auto;
}

.img2 {
    box-shadow:  0 0 10px rgba(0,0,0,0.5);
    width: 100%;
    height: 175px; /* Hauteur fixe pour l'image */
    display: block;
    margin: 0 auto;
}
