/* Styles généraux */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background: #0056b3; /* Bleu plus foncé */
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

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

nav ul {
    padding: 0;
    list-style: none;
    margin: 1rem 0 0 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

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

nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
    max-width: 1100px;
    margin: 20px auto;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.attraction {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.attraction h2 {
    color: #0056b3; /* Bleu plus foncé */
    margin-top: 0;
    font-size: 2rem;
}

/* Styles pour les images */
figure {
    margin: 20px 0; /* Espace autour de la figure */
    text-align: center; /* Centre l'image et la légende */
}

figure img {
    max-width: 100%; /* Assure que l'image est responsive */
    height: auto;    /* Maintient le ratio d'aspect */
    border-radius: 5px; /* Coins arrondis pour l'image */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Ombre légère */
}

figure figcaption {
    font-size: 0.9em;
    color: #555;
    margin-top: 8px;
    font-style: italic;
}

/* Styles pour les liens */
a {
    color: #007bff; /* Bleu standard pour les liens */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Style spécifique pour les liens externes qui s'ouvrent dans un nouvel onglet */
a[target="_blank"] {
    /* On peut ajouter une petite icône ici si désiré, mais ce n'est pas obligatoire */
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    color: #666;
    font-size: 0.9em;
}

