body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f6f6f6;
}

header {
    background-color: #2c3e50;
    color: rgb(92, 92, 92);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px; /* Réduisez un peu l'écart entre les éléments du menu */
}

nav li {
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: white;
    padding: 5px 7px; /* Réduisez légèrement le rembourrage */
    transition: background-color 0.3s;
    font-size: 0.75em; /* Réduit la taille du texte à 75% de la taille par défaut */
    white-space: nowrap; /* S'assure que le texte ne passe pas à la ligne */
}

nav a:hover {
    background-color: #34495e;
    border-radius: 5px;
}



button {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #c0392b;
}

main {
    padding: 20px;
    background-color: #ecf0f1;
    border-top: 5px solid #e74c3c;
}

h2 {
    color: #2c3e50;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e74c3c;
}

ol {
    padding-left: 30px;
}
.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Espace entre les images */
    justify-content: center; /* Centrer les images horizontalement */
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Espace augmenté entre les images */
    justify-content: center; /* Centrer les images horizontalement */
}

.image-gallery img {
    max-width: 250px; /* Limiter la largeur des images à 250px */
    height: auto; /* Conserver le ratio hauteur/largeur */
    border: 1px solid #ccc; /* Bordure pour distinguer les images */
}

.image-gallery img:hover {
    border: 1px solid #ff7f7f;  /* Bordure plus fine et moins vive */
    box-shadow: 0px 0px 8px 2px rgba(255, 127, 127, 0.6); /* Ombre plus diffuse et moins saturée */
}
/* Reset de certains styles par défaut des navigateurs */
body, h1, h2, h3, p, ul, ol, li, a {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Style global pour le body */
body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #333;
    color: #9e9e9e;
    text-align: center;
    padding: 1rem 0;
}

header img {
    margin-bottom: 0.5rem;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

button {
    background-color: #f4a32a;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}

main {
    max-width: 1100px;
    margin: 20px auto;
    padding: 0 20px;
}

section {
    padding: 20px 0;
    border-bottom: 1px solid #e2e2e2;
}

h2 {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #333;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.image-gallery img {
    max-width: 300px;
    border-radius: 10px;
}

blockquote {
    margin: 20px 0;
    padding: 10px 20px;
    background-color: #e2e2e2;
    border-left: 10px solid #f4a32a;
}

a {
    color: #f4a32a;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#emploi ul li {
    margin-bottom: 10px;
}
/* ... Votre CSS précédent ... */

/* Section COMMENT DEVENIR MEMBRE */
section h2 {
    background-color: #f4a32a;
    padding: 5px;
    color: #fff;
    border-radius: 5px;
}

section ol {
    margin-top: 20px;
    list-style-type: decimal;
    padding-left: 20px;
}

section ol li {
    margin-bottom: 10px;
}

/* Styles généraux du footer */
footer {
    background-color: #2c2c2c;
    color: #000000;
    padding: 20px 0;
    font-family: Arial, sans-serif;
}

.footer-links, .app-download, .footer-copyright {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: border-box;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-links li {
    margin: 5px 0;
}

.footer-links a {
    text-decoration: none;
    color: #000000;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e5a00d; /* Couleur d'accentuation lors du survol */
}

.app-download a {
    display: inline-block;
    margin: 10px 5px;
    padding: 10px 20px;
    background-color: #e5a00d; /* Couleur d'accentuation */
    color: #2c2c2c; /* Couleur du texte */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.app-download a:hover {
    background-color: #c8810b; /* Couleur d'accentuation lors du survol */
}

.footer-copyright {
    margin-top: 30px;
    text-align: center;
    font-size: 0.85em;
}
.social-icons img {
    vertical-align: middle; /* Alignement des icônes verticalement */
}

.review {
    margin-bottom: 20px;
}
/* ... autres styles ... */

nav a {
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;  /* Transition pour un effet doux */
}

nav a:hover {
    background-color: #555; /* couleur d'arrière-plan lorsque la souris est survolée */
    color: #000000;  /* couleur du texte lorsque la souris est survolée */
}

/* ... autres styles ... */
/* Styles généraux */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

section {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #333;
}

p {
    margin: 0 0 16px;
}

article {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

img {
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
}

h3 {
    margin: 0;
    color: #444;
}

/* Styles pour écrans plus petits */
@media (max-width: 768px) {
    article {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    img {
        margin-right: 0;
        margin-bottom: 16px;
    }
    /* ... autres styles ... */

article img {
    transition: filter 0.3s;  /* Transition pour un effet doux */
}

article img:hover {
    filter: brightness(0.8);  /* Assombrit l'image de 20% lorsqu'elle est survolée */
}
/* Style général pour les articles de menu */
.menu-item {
    border: 1px solid #ddd;
    padding: 15px;
    margin: 15px;
    border-radius: 5px;
    display: inline-block;
    vertical-align: top;
    width: 240px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* Style pour les titres des menus */
.menu-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Style pour les descriptions */
.menu-item p {
    font-size: 1em;
    margin-bottom: 10px;
}

/* Style pour les images */
.menu-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Style pour le prix */
.menu-item p:last-of-type {
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 10px;
}
}




