body {
    font-family: Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    color: #2c3e50;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, p, a {
    margin: 0;
    text-decoration: none;
}

/* Header */

.header {
    background-image: url("../img/home.JPG");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

/* Body */

#house-presentation {
    display: flex;
    justify-content: space-around;
}

#house-picture {
    display: none;
    background-image: url("../img/home.JPG");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vh;
    width: 45vw;
    margin: 1rem;
    border-radius: 6px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

#house-text {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: relative;
    bottom: -1rem;
    padding: .5rem;
}

#house-text a {
    background-color: #28c7c1;
    border-radius: 6px;
    width: max-content;
    padding: .5rem 2rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    color: white;
}

/* Rooms */

#rooms {
    display: flex;
    justify-content: space-around;
}

#rooms .rooms-container {
    display: flex;
    align-items: flex-start;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 6px;
    height: 40vh;
    width: 40vw;
    margin: 3rem 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);

}

#rooms .rooms-container:first-child {
    background-image: url("../img/room1.JPG");
}

#rooms .rooms-container:last-child {
    background-image: url("../img/room2.jpeg");
}

#rooms .rooms-container .rooms-details {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .75rem 1rem;
    background-color: rgba(0, 0, 0, .4);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    color: white;
}

#rooms .rooms-container .rooms-details .room-name {
    font-size: 2rem;
    text-transform: capitalize;
}

#rooms .room-availability {
    display: none;
}

.equipements-title {
    font-size: 1.5rem;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
}

.equipements {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 5rem;
}

.equipements img {
    width: 35%;
}

.equipements-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0 2rem;
}

.equipements-list li {
    font-size: 1.5rem;
}

.details-rooms #hygge, .details-rooms #drom {
    margin: 7.5vh 2vw;
    padding-top: 2.5rem;
    border-radius: 6px;
    color: white;
}

.room-detail-booking-link {
    color: white;
    border: 2px solid white;
    margin-top: 3rem;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.room-detail-booking-link:hover {
    color: black;
    background-color: white;
}

.room-detail-booking-link:active {
    color: white;
}

#drom {
    background-color: #468991;
}

#hygge {
    background-color: #AB8A2B;
}

.room-detail {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.room-detail p {
    width: 65%;
    font-size: 1.3rem;
    margin-top: 1rem;
}

.room-img {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    margin: 10vh 0;
}

.room-img img {
    max-width: 30%;
    max-height: 50vh;
}

.room-characteristics {
    margin-top: 1rem;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0 10%;
}

.room-characteristics summary {
        font-weight: bold;
}

.room-characteristics-details {
}

.room-characteristics-details p {
width: 100%;
}



.situation {
    display: flex;
    flex-direction: column;
}

.situation h3 {
    margin-bottom: 1rem;
}

#petit-dejeuner {
    min-height: 75vh;
    background-image: url("../img/rooms/breakfast.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

#petit-dejeuner .description {
    background-color: rgba(168, 7, 0, .9);
    color: white;
    width: 60%;
    margin-top: 2.5%;
    border-radius: 6px;
    padding: 1rem;
}

#petit-dejeuner .description h1 {
    margin: 1% 0 2%;
}

#petit-dejeuner .description p {
    font-size: 1.25rem;
}