body{
    background-color: var(--deepSeaGreen);
    margin: 0 auto;
    padding: 0;
}

.right-menu-bar .logo-container img {
    padding: 0;
}

.page-wrapper {
    border-top: 4px solid var(--white);
    padding: 80px 0 0 0;
}

@media (max-width:1230px) {
    .page-wrapper {
        border-top: none;
    }
}

h1 {
    font-size: 4rem;
    font-family: var(--font-2);
    color: var(--white);
}
.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: 0.5rem;
    background-color: var(--white);
}

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

@media (max-width: 810px) {
    .rooms-gallery .rooms-pictures img {
        width: 20rem;
        height: 18rem;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.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;
}