/* Styles Generaux */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f7fc; /* Un bleu tres pale */
    color: #333;
}

.container {
    width: 85%;
    margin: 0 auto;
    overflow: hidden; /* Pour contenir les elements flottants */
}

h1, h2 {
    color: #2c3e50; /* Un bleu marine fonce */
}

h1 {
    text-align: center;
    margin-top: 0;
    font-size: 2.5em;
}

h2 {
    margin-bottom: 15px;
    border-bottom: 2px solid #3498db; /* Un bleu clair */
    padding-bottom: 5px;
    display: inline-block; /* Pour que la bordure ne prenne que la largeur du texte */
}

img {
    max-width: 100%;
    height: auto; /* Garde le ratio de l'image */
    display: block; /* Pour que l'image soit traitable comme un bloc */
    border-radius: 8px; /* Coins arrondis */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ombre legere */
    margin-bottom: 15px;
    transition: transform .3s ease, box-shadow .3s ease; /* Animation douce */
}

img:hover {
    transform: scale(1.03); /* Legere mise a l'echelle au survol */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Ombre plus prononcee */
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
header {
    background: #2c3e50; /* Bleu marine fonce */
    color: #fff;
    padding: 30px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

header .container {
    text-align: center;
}

header p {
    font-size: 1.1em;
    opacity: 0.9;
}

/* Navigation */
nav {
    background: #ecf0f1; /* Gris tres clair */
    padding: 10px 0;
    border-bottom: 2px solid #3498db;
}

nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

nav ul li {
    display: inline-block; /* Les elements de liste sont cote a cote */
    margin: 0 15px;
}

nav ul li a {
    color: #2c3e50;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color .3s ease;
}

nav ul li a:hover {
    color: #3498db;
    text-decoration: none;
}

/* Section d'attractions */
main {
    padding: 30px 0;
}

section {
    background: #ffffff;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform .2s ease;
}

section:hover {
    transform: translateY(-5px); /* Legere remontee au survol */
}

/* Bouton "En savoir plus" */
.btn {
    display: inline-block;
    background: #3498db; /* Bleu clair */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color .3s ease, transform .2s ease;
}

.btn:hover {
    background: #2980b9; /* Bleu plus fonce */
    text-decoration: none;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    h1 {
        font-size: 2em;
    }

    nav ul li {
        display: block; /* Les elements de navigation sur une seule colonne */
        margin: 10px 0;
    }

    section {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
    }
    header {
        padding: 20px 0;
    }
    nav {
        display: none; /* On pourrait aussi afficher un menu burger ici */
    }
}
