/* Reset de certaines valeurs par défaut */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Style de base */
body {
    font-family: 'Montserrat', sans-serif; /* Choix d'une police moderne */
    background-color: #193F2C; /* Une couleur neutre et apaisante */
   # color: #333;
	background-image: url('https://labellecour.re/images/moringa_bg2.png');
 # 	background-repeat: repeat;
    line-height: 1.6;
}

header, footer {
    background-color: #193F2C; /* Une couleur vive pour attirer l'attention */
    color: #fff;
    background-image: url('https://labellecour.re/images/moringa_bg2.png');
	text-align: center;
    padding: 1rem;
}

h1, h2 {
    color: #205c40;
}

/* Style pour chaque section de produit */
section {
    margin: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

p {
    margin-top: 10px;
}

/* Style du footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Ajout de styles spécifiques pour les liens (facultatif) */
a {
    color: #009688;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #00796b;
}
