/* Réinitialisation des marges et padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Style du menu (plus haut et semi-transparent) */
nav {
    /* background-color: rgba(51, 51, 51, 0.8); /* Semi-transparent */ */
    background-color: rgba(255, 255, 255); /* Blanc */ 
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px; /* Menu plus haut */
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    /* color: white; */
    color: darkgreen; 
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    /* font-weight: bold; */
}

nav ul li a:hover {
    /* background-color: rgba(85, 85, 85, 0.7); */
    color : lightgreen;
    text-decoration: none;
}

nav ul li a.active {
    /* background-color: #4CAF50; */
    font-weight: bold; 
    color : green;
}

/* Style de la bannière d'image */
.banner {
    width: 100%;
    height: 300px; /* Hauteur de la bannière */
    background-image: url('/assTerre/Images/BuissonVie.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 70px; /* Pour éviter que l'image soit cachée sous le menu */
    position: relative;
}

/* Style du contenu principal */
main {
    padding-top: 0; /* Plus besoin de padding-top car la bannière est sous le menu */
}

.content-container {
    width: 80%;
    max-width: 1280px;
    margin: 80px auto; /* Centre le contenu avec un espacement en haut */
    padding: 20px;
    background-color: white; /* Fond blanc pour le contenu */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Ombre légère pour le contenu */
}

h1, h2 {
    color: #2c5a2c;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    line-height: 1.6;
}

ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

a {
    color: #2c5a2c;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

