﻿#site-title {
    /*color: #d49a5f;*/
}
/*#hamburger-icon-container {
    filter: invert(1);
}*/

#art-column {
    width:100%;
    max-width: 1350px;
    margin: auto;
    background-color: #222;
}

.art-grid {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
}

.art-grid-item {    
    overflow: hidden; /*To clip the title, make sure it doesn't extend outside of the border radius*/
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    height: 300px;
    flex-grow: 1;
    text-align: center;
    position: relative;
    margin: 10px;
    transition: 0.1s;
}

    .art-grid-item:hover {
        transform: scale(1.01);
    }

    .art-grid-item:hover .art-grid-item-title {
        opacity: 1;
    }

.art-grid-item-title {
    opacity: 0.8;
    transition: 0.5s;
    background-color: white;
    height: 40px;
    align-content: center;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;    
    color: black;
}

#art-background {
    width: 100vw;
    height: 100vh;
    background: url("/assets/images/art/Ridderschool.jpg");
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.art-fullsize {
    background-color:#151515;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.float-vertical {
    position: relative;
    top: 100%;
    /*transform: translateY(-40px);*/
    width: 100%;
}

.float-horizontal {
    width: fit-content;
    margin: auto;
    display: flex;
}

.art-category {
    position: relative;
    box-shadow: #1119 2px -2px 6px 6px;
    margin: 0px 10px;
    width: 200px;
    height: 200px;
    display: inline-block;
    text-align: center;
    transition: 0.1s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    transform: translateY(-40px);
}

    .art-category:hover {
        transform: translateY(-50px);
    }

.art-category-image {
    height: 100%;
    background-position: center;
    background-size: cover;
    transition: 0.5s;
}

.art-category:hover .art-category-image {
    /*transform: scale(2)*/
}

.art-category-title {
    background-color: white;
    line-height: 40px;
}


/* The overlay (background) */
.modal-overlay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

    /* Show the modal */
    .modal-overlay.show {
        display: block;
    }

/* The modal box */
.modal-box {
    background: white;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: fit-content;
    height: fit-content;
}

/* Close button */
.modal-close {
    position: absolute;
    padding: inherit;
    right: 5px;
    width: 80px;
    top: 5px;
    font-size: 24px;
    border: none;
    background-color: white;
    cursor: pointer;
}

#modal-image {
    object-fit: cover;
    object-position: center;
    max-height: 70vh;
    max-width: 70vw;
}

h6 {
    text-align: center;
    margin: 10px 0 0 0;    
}

