/* Style CSS avec des couleurs plus rouges et séparation entre le menu et le contenu */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f0f0f0;
}

header {
    background-color: #d32f2f;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    margin: 0;
    font-size: 1.2em;
}

nav {
    background-color: #b71c1c;
    padding: 20px;
    width: 200px;
    position: fixed;
    height: 100%;
    left: 0;
    top: 0;
}

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

nav li {
    margin-bottom: 10px;
}

nav a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #8c1919;
}

.container {
    margin-left: 220px;
    padding: 20px;
}

.photo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.photo img {
    max-width: 300px;
    height: auto;
    margin-right: 20px;
    border-radius: 5px;
}

.text {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 5px;
    flex: 1;
}

.map {
    width: 100%;
    height: 300px;
    margin-top: 20px;
    border-radius: 5px;
}

footer {
    background-color: #d32f2f;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}
