body {
    background-color: var(--melon);
    color: white;
}

h1,
h2,
h3 {
    font-family: var(--font-2);
    color: var(--white);
    font-size: 4rem;
    text-align: center;
    font-weight: bold;
    letter-spacing: 4px;
}

.burger-menu,
.menu-bar {
    background-color: inherit;
}

.right-menu-bar .logo-container img {
    width: 100%;
    background-color: var(--melon);
    border-radius: 50%;
    padding: 0 10px 10px 10px;
}

.reservation-content {
    background-image: url('https://de0ld00a5rtyf.cloudfront.net/reservation_page/background-reservation.webp');
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding: 30px 0;
    position: relative;
    isolation: isolate;
}

.reservation-content ::after {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    background-color: var(--melon);
    opacity: 0.3;
}

.reservation-content h1 {
    font-size: 10rem;
    text-align: center;
    letter-spacing: 10px;
}

@media (max-width:1230px) {
    .reservation-content {
        height: 70vh;
    }

    .reservation-content h1 {
        letter-spacing: 0px;
        font-size: 9rem;
    }
}

@media (max-width: 758px) {
    .reservation-content {
        height: 50vh;
    }
    .reservation-content h1 {
        font-size: 6rem;
    }
}

@media (max-width: 500px) {
    .reservation-content h1 {
        font-size: 4rem;
    }
}

.rooms-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 3rem auto;
    align-items: center;
}

@media (max-width:1230px) {
    .rooms-container {
        margin: 1rem auto;
    }
}

.rooms-container .buttons-container {
    width: 90%;
    margin: 3rem 2rem 2rem;
}

@media (max-width:1230px) {
    .rooms-container .buttons-container {
        margin: 1rem 0 0 0;
    }
}

@media (max-width: 758px) {
    .rooms-container .buttons-container {
        width: 80%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
        align-items: center;
    }
}

@media (max-width: 500px) {
    .rooms-container .buttons-container {
        width: 96%;
        height: auto;
    }
}

.rooms-container .buttons-container .button {

    font-weight: bolder;
    font-family: var(--font-2);
    font-size: 1.5rem;

    background-color: var(--white);
    color: var(--melon);
    letter-spacing: 2px;

    display: inline-flex;
    align-items: flex-start;
    margin: 0 2px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    padding: 0.5em 1.2em;
    border-radius: 0.3em;
}

@media (max-width:1230px) {
    .rooms-container .buttons-container .button {
        font-size: 1.2rem;
        margin: 5px 2px;
    }
}

.rooms-container .buttons-container .button:active {
    border-color: var(--melon) !important;
}

.reservation-container {
    height: 85vh;
    width: 90%;
    display: flex;
    margin: 1rem auto;
    border: 8px solid var(--white);
    border-radius: 2rem;
}

.hidden {
    display: none;
}

.reservation-container .room-description {

}

@media (max-width:1230px) {
    .reservation-container .room-description {

    }
}

.reservation-container .room-description .room {

}

.reservation-container .room-description .room h3 {

}

.reservation-container .house-description {

}

.reservation-container .house-description .house {

}

.reservation-container .house-description .house img {

}

.reservation-container .house-description .tent {

}

.reservation-container .house-description .tent img {

}

@media (max-width:1230px) {

    .reservation-container .house-description .house,
    .reservation-container .house-description .tent {

    }

}

@media (max-width: 758px) {
    .reservation-container .house-description .house {

    }
}

@media (max-width: 500px) {
    .rooms-container .buttons-container .button {

    }

    .reservation-container .room-description .room {

    }

    .reservation-container .room-description .room h3 {

    }
}

.reservation-container .room-description img {

}

.reservation-container .calendar-container {


}

.rooms-container .add-info {

}

@media (max-width: 758px) {
    .rooms-container .add-info {

    }
}

.rooms-container .add-info h2 {

}

@media (max-width: 500px) {
    .rooms-container .add-info h2 {

    }
}

.rooms-gallery {
    display: flex;
    flex-direction: column;
}

.rooms-gallery .rooms-pictures {
    min-height: 20vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;

    margin: 4rem 0 0 0;
    padding: 2rem 1rem;
    border-radius: 1rem;
    background-color: var(--white);
}

.rooms-gallery .rooms-pictures img {
    width: 16rem;
    height: 12rem;
    padding: 1rem 0;
    border-radius: 0.5rem;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    /* Przeźroczysty czarny kolor tła */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    /* Ustaw wysoki indeks z-index, aby overlay był na wierzchu */
}

.overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    /* Zaokrąglenie rogów dla powiększonego obrazu */
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    /* Przeźroczysty biały kolor tła */
    border: none;
    color: gray;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50%;
    /* Zaokrąglenie przycisku zamknięcia */
}

/* Stylizacja przycisków poprzedniego i następnego obrazu */
.prev-button,
.next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5);
    color: black;
    border: none;
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
    border-radius: 50%;
}

.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}