*{
    box-sizing: border-box;

    margin: 0;
}

div#container{
    width: 99.15vw;
    min-height: 100vh;
    background-color: #212121;
}

header{
    width: 100vw;
    height: 60vh;

    background-image: url('./img/hotelHeader.jpeg');

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    h1{
        color: #fff;
        font-family: "Montserrat",sans-serif;
        font-size: 10rem;

        margin-top: 4.5rem;

        text-transform: uppercase;
    }
}

main{
    width: 100%;
    min-height: 50vh;

    display: flex;

    flex-direction: column;

    align-items: center;
}

main section{
    width: 90%;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    justify-content: center;


    column-gap: 1.5rem;
    row-gap: 1.5rem;
    
    padding: 3rem;


    div.column{

        width: 30vh;
        min-width: 23%;
        max-width: 49%;
        height: 100%;

        display: flex;
        flex-direction: column;

        justify-content: flex-start;

        row-gap: 1.5rem;

        img{

            &:hover{
                cursor: pointer;
            }
        }
    }


}

h2{
    color: #fff;

    font-family: "Hind", sans-serif;
    font-weight: 600;
    font-size: 4vw;
    text-align: center;
    margin: 0;

    margin-top: 7rem;
    margin-bottom: 4rem;

    width: max-content;

}

footer.galleryFooter{

    width: 100%;

    height: 20vh;

    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;

    h2{
        font-size: 2rem;
        text-decoration: none;
        color: #666;
    }
    
    img{
        height: 100%;
    }
}


dialog{
    position: fixed;

    overflow: hidden;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    height: 85vh;

    
    padding: 0;

    border: none !important;


    display: flex;
    justify-content: center;
    align-items: center;

    transition:300ms ease-out;


    img{
        height: 100%;

        border: 3px solid #000;

        transition: .2s ease-out;
    }
}

#rightButton, #leftButton{

    z-index: 100;
    position: fixed;
    top: 50%;
    margin-left: 1.5rem;
    margin-right: 1.5rem;


    background-color: #00000000;

    width: 7rem;
    aspect-ratio: 1/1;

    

    color: #fff;

    font-weight: bold;

    font-size: 2rem;

    outline: none;
    border: none;

    transition: .2s linear;

    transform: translate(0, -50%);

    filter: invert(90%);


    &:hover{
        cursor: pointer;

        filter: invert(100%);

        img{
            background-color: #44444466;

        }

    }

    img{
        border: none;
        background-color: #11111166;
        border-radius: 20px;


    
    }

}

#leftButton{
    left: 0;
}

#rightButton{
    right: 0;
}

#mask{
    position: fixed;

    z-index: 10;

    width: 100vw;
    height: 100vh;

    background-color: #000;

    opacity: .5;

    transition: .2s ease;
}

#closeButton{
    position: absolute;
    left: 0;
    top: 0;

    margin: 2rem;

    padding: 0;

    aspect-ratio: 1/1;


    width: 4rem;

    border-radius: 100%;

    border: none;
    outline: none;

    background-color: #88888867;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Hind", sans-serif;

    font-size: 2rem;

    color: #fff;


    transition: .2s ease;

    &:hover{
        cursor: pointer;

        background-color: #aaa;

    }

    img{
        border: none;

        filter: invert(100%);

        width: 3rem;
        height: 3rem;

    }

}


.remove-scrolling { 
    height: 100%; 
    overflow: hidden; 
  } 
