/* Style de base pour la page du chalet */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f7f9fb;
    color: #333;
}

header {
    background-color: #2e3b4e;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header a{
    color:white;
    font-weight:bold;
    font-size: 1.5em;
    text-decoration:none;
    transition: all solid 0.3s;}
header a:hover {
    color:beige;
    text-decoration: underline;
}

main {
    padding: 2rem;
}

.intro {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.intro img {
    max-width: 400px;
    width: 100%;
    border-radius: 8px;
}

.description {
    flex: 1;
}

.galerie .images {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.galerie .images img {
    width: calc(33% - 1rem);
    border-radius: 5px;
    object-fit: cover;
}
/* Version mobile */
@media (max-width: 768px) {
    .galerie .images img {
        width: 100%;
    }
}

.infos ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

footer {
    background-color: #2e3b4e;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}
