.room-banner {
    height: 36rem;
    width: 100%;
    
    background-size: cover;
    background-position:center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    

}

#sztuka-banner{
 
    background-image:
    -webkit-linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 75%, rgba(0,0,0,1) 100%),
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 75%, rgba(0,0,0,1) 100%),
    url("/media/img/rooms/sztuka/IMG-20241018-WA0041.jpg"); 

}

#orient-banner{
    background-image:
    -webkit-linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 75%, rgba(0,0,0,1) 100%),
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 75%, rgba(0,0,0,1) 100%),
  
    url("/media/img/rooms/orient/yT2kUlC5-min.jpg"); 
}
#czekolada-banner{

    background-image:
    -webkit-linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 75%, rgba(0,0,0,1) 100%),
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 75%, rgba(0,0,0,1) 100%),
  
    url("/media/img/rooms/czekolada/IMG-20241018-WA0040.jpg"); 
}
#potwory-banner{
    background-image:
    -webkit-linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 75%, rgba(0,0,0,1) 100%),
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 75%, rgba(0,0,0,1) 100%),
  
    url("/media/img/rooms/potwory/IMG-20241018-WA0033.jpg"); 
}
#licencja-banner{
    background-image:
    -webkit-linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 75%, rgba(0,0,0,1) 100%),
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 75%, rgba(0,0,0,1) 100%),
  
    url("/media/img/rooms/licencja/IMG-20241018-WA0026.jpg"); 
}


#room-title {
    align-self: end;
    font-size: 2rem;
    margin: 1rem;
}

#description {
    max-width: 90vw;
    margin: auto;
}

#room-info {
    >* {
        margin: 1rem;
        height: 8rem;
        width: 12rem;
        border-radius: 1rem;
        display: inline-block;
        vertical-align: middle;
        padding: 1rem;

        background-color: var(--main-alt);
    }

    img {
        vertical-align: middle;
    }

    >div>p>img:first-of-type {
        margin: 0 auto;
        display: block;
    }

    margin-bottom: 2rem;
}

#room-description {
    display: flex;
    padding: 0 2rem;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    div {
        flex: 1 0 20rem;
    }

}


.book-room {
    padding: 2rem;
 
    :hover{
        background-color: var(--main-alt);
        color:var(--aux);
        
   
    } 
}

.book-btn {
    transition: 0.3s linear;
    font-weight: bold;
    font-size: 1.5rem;
    display: inline-block;
    line-height: 4rem;
    width: 100%;
    height: 4rem;
    border: 0;
    background-color: var(--aux);
    border-radius: 20px;
    max-width: min(30rem, 100vw);
    text-decoration: none;
    color:#000;
    
}


.star {
    width: 2rem;
}

#important>* {
    color: var(--aux);
    padding: 1rem;
    margin: 0;

}

#pricelist {
    margin-top: 3rem;
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    text-align: center;
    color: white;
    margin: auto;
    font-family: sans-serif;
    width: 100%;
    justify-content: space-around;
    align-items: baseline;

    table caption {
        padding-bottom: 2rem;
    }

    table {
        min-width: 18rem;
        width: 80%;
        empty-cells: show;

    }

    table th {
        background-color: var(--main-third);
    }

    table td,
    table th {
        padding: 1em;
        margin: 0;
        border: 0;
        border-collapse: collapse;
    }

    table tr:nth-child(2n) {
        background-color: var(--main-third);
    }
}



#gallery {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    justify-content: center;
    justify-content: space-around;
    ;
    align-content: center;
    max-width: 90vw;
    margin: 0 auto;

}

#gallery>* {
    max-width: 15rem;
    padding: 1rem 0.5rem;
    margin: auto;


}

#gallery img {
    max-width: 100%;
    border-radius: 2rem;
}

@media screen and (min-width: 768px) {
    #room-title {
        font-size: 4rem;
    }

}

@media screen and (min-width: 1366px) {
    article {
        padding: 1rem 5rem;
    }

    #room-container {
        display: flex;
        flex-flow: row;
        gap: 2rem;
    }

    #gallery-container {
        flex: 3;
    }

    #gallery>* {
        padding: 0.5rem;
        max-width: 18rem;
    }
}