/* Resetting some basic styles */

- {
margin: 0;
padding: 0;
box-sizing: border-box;
}

a {
    color: #9ddbc4;
    }

/* Global Styles */
body {
    font-family: "Open Sans", sans-serif;
    background-color: #ebfaf4; /* Remplacer l'image par une couleur */
    color: #444444;
    line-height: 1.6;
}

/* Centrlize content */
.container {
width: 80%;
max-width: 1200px;
margin: 0 auto;
background-color: rgba(255, 255, 255, 0.9); /* Légère transparence */
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
background-color: #a8e6cf; /* Vert clair */
color: #333;
padding: 50px;
text-align: center;
border-radius: 10px;
}

header h1 {
font-size: 3rem;
margin-bottom: 10px;
font-family: 'Georgia', serif;
}

header p {
font-size: 1.2rem;
margin-top: 5px;
}

/* Navigation Bar */
nav {
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

nav ul {
list-style: none;
display: flex;
justify-content: center;
padding: 15px 0;
background-color: transparent; /* Transparent initialement */
color: white;
}

nav ul li {
margin: 0 15px;
}

nav ul li a {
font-weight: bold;
color: white;
font-size: 1rem;
}

nav ul li a:hover {
color: #f39c12;
}

/* Active when scrolling */
nav.scrolled {
background-color: rgba(168, 230, 207, 0.9); /* Vert clair transparent */
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
color: #333;
}

/* Main content */
main {
    margin: 80px 0; /* Pour éviter le chevauchement avec la nav */
    text-align: left;
}

main h1 {
    font-size: 3rem;
    color: #16A085; /* Couleur différente pour H1 */
    font-family: 'Georgia', serif; /* Police différente pour H1 */
    margin-bottom: 20px;
}

main h2 {
    font-size: 2rem;
    color: #34495E; /* Couleur différente pour H2 */
    font-family: 'Verdana', sans-serif; /* Police différente pour H2 */
    margin-bottom: 20px;
}

main h3 {
    font-size: 1.5rem;
    color: #f39c12; /* Couleur différente pour H3 */
    font-family: 'Georgia', serif; /* Police différente pour H3 */
    margin-bottom: 20px;
}

main p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}


/* Footer */
footer {
background-color: #444;
color: white;
text-align: center;
padding: 20px 0;
border-radius: 10px;
margin-top: 40px;
}

footer p {
font-size: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
nav ul {
flex-direction: column;
}
    
