body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    /* Remplacez 'background.jpg' par le nom de votre image */
    background-size: cover; /* L'image couvrira tout l'écran */
    background-position: center; /* Positionner l'image au centre */
    background-attachment: fixed; /* L'image de fond reste fixe lorsqu'on défile */
    background-repeat: no-repeat; /* Empêche la répétition de l'image */
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
    margin-bottom: 20px;
}

.room-details {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 40px;
}

.room-image {
    flex: 2;
    border-radius: 8px;
    overflow: hidden;
}

.image {
    max-width: 400px;
    border-radius: 8px;
}

.room-info {
    flex: 2;
}

h2 {
    color: #333;
}

h3 {
    color: #444;
    margin-top: 20px;
}

ul {
    list-style-type: disc;
    margin: 10px 0;
    padding-left: 20px;
}

.book-button {
    background-color: #006699;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.book-button:hover {
    background-color: #636363;
}

.reviews {
    margin: 20px 0;
}

.review {
    background-color: #f0f0f0;
    padding: 15px
}

.gallery-image{
    max-width: 290px;
    border-radius: 4px;
}

.navbar {
    background-color: #006699;
    padding: 30px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.navbar ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

.navbar li {
    margin: 0;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    transition: background-color 0.3s;
}

.navbar a:hover {
    background-color: #005577;
    border-radius: 5px;
}
.back-button {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
}

.back-icon {
    width: 30px; /* Ajustez la taille selon vos besoins */
    height: 30px;
    margin-right: 10px; /* Espace entre l'icône et le texte */
}

.navbar {
    background-color: #006699;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}




