/* styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0; /* Couleur de fond légère */
    color: #555; /* Couleur de texte principale */
}

header {
    background-color: #ff6347; /* Couleur de fond rouge corail */
    color: #ffffff; /* Couleur de texte blanc */
    padding: 10px 0;
    text-align: center;
    border-bottom: 4px solid #555; /* Bordure en bas du header */
}

.header-title {
    margin-bottom: 10px;
}

.header-contact {
    font-size: 18px;
    font-weight: bold;
}

nav {
    background-color: #555; /* Couleur de fond du menu */
    padding: 10px 0;
    text-align: center;
    border-bottom: 2px solid #ff6347; /* Bordure en bas du menu */
}

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

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

nav ul li a {
    color: #ffffff; /* Couleur de texte blanc */
    text-decoration: none;
    padding: 8px 16px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #333; /* Couleur de fond grise au survol */
}

main {
    padding: 20px;
}

.intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.intro-content {
    flex: 1;
    margin-right: 20px;
    text-align: center;
}

.centered-photo {
    display: block;
    margin: 0 auto; /* Centrage horizontal de l'image */
    width: 300px; /* Taille ajustée de l'image */
    height: 200px;
    object-fit: cover;
    border-radius: 10px; /* Coins arrondis */
    margin-top: 20px;
}

.advantages {
    text-align: center;
    margin-bottom: 40px;
}

.advantages h2 {
    margin-bottom: 20px;
}

.advantages ul {
    list-style-type: none;
    padding: 0;
}

.advantages ul li {
    margin-bottom: 10px;
}

.map {
    margin-bottom: 40px;
}

.contact-info {
    margin-top: 30px;
    text-align: center;
}

.contact-details {
    margin-top: 20px;
}

footer {
    background-color: #555; /* Couleur de fond du pied de page */
    color: #ffffff; /* Couleur de texte blanc */
    padding: 10px 20px;
    text-align: center;
}
