.header-image-sm {
    background-image: url("../images/deborah-shapiro-watercolor.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    min-height: 300px;
}

.header-image-lg {
    background-image: url("../images/deborah-shapiro-watercolor-lg.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top;
    background-attachment: fixed;
    min-height: 600px;
}

@media (min-width: 992px) {
    .navbar {
        padding-left: 150px;
        padding-top: 20px;
    }

    .navbar-brand {
        font-size: 40px;
    }

    li {
        padding-left: 15px;
        padding-top: 15px;
    }

    #about-nav {
        padding-left: 25px;
    }
}

.artwork-heading {
    font-size: 40px;
    text-align: center;
    color: rgb(0, 0, 0, 0.6);
    padding-top: 100px;
}

.flex-container {
    display: flex;
    justify-content: center;
    align-content: center;
    padding: 0 100px 0 100px;
}

.img-container {
    padding: 20px 0 20px 0;
}



.large-container {
    padding-top: 50px;
}

.masonry-container {
    column-count: 3;
    column-gap: 16px;
    padding: 0 300px 0 300px;
}

.masonry-item {
    margin-bottom: 16px;
    overflow: hidden;
    position: relative;
    opacity: 0;
    /* Initially invisible */
    transform: translateY(30px);
    /* Initially off-screen (down) */
    transition: opacity 0.5s ease, transform 0.5s ease;
    /* Smooth transition */
}

.masonry-item.visible {
    opacity: 1;
    /* Make them visible */
    transform: translateY(0);
    /* Move to their natural position */
}

.masonry-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    transform: scale(.97);
    z-index: 1;
}

.masonry-item:hover::after {
    opacity: 1;
}

.masonry-item:hover img {
    transform: scale(.97);
    cursor: pointer;
}

.masonry-item .text-overlay {
    position: absolute;
    top: 15%;
    left: 80px;
    transform: translate(-15%, -15%);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 2;
}

.masonry-item:hover .text-overlay {
    opacity: 1;
}

img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
    background-color: rgb(0, 0, 0, 0.1);
}

.text-1 {
    opacity: .8;
    font-weight: 700;
    font-size: 25px;
    padding-bottom: 10px;
    z-index: 15;
}

.text-2, .text-3 {
    opacity: .8;
    display: inline-block;
    font-weight: 400;
    font-size: 18px;
    padding: 0;
    margin: 0;
    line-height: .9;
    z-index: 15;
}

.up-button {
    float: right;
    padding-right: 200px;
}


@media (min-width: 768px) and (max-width: 992px) {
    .text-1 {
        font-size: 20px;
    }

    .text-2, .text-3 {
        font-size: 15px;
        line-height: .3;
    }

    .up-button {
        padding-right: 50px;
    }

    .masonry-container {
        padding: 0 50px 0 50px;
    }
}


@media (min-width: 992px) and (max-width: 1200px) {
    .masonry-container {
        padding: 0 50px 0 50px;
    }

    .up-button {
        padding-right: 50px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {

    .up-button {
        padding-right: 100px;
    }
}

@media (max-width: 576px) {

    .up-button {
        padding-right: 15px;
    }

    .masonry-item::after {
        content: '';
        position: absolute;
        top: 0;
        left: 10px;
        width: calc(100% - 20px);
        height: 100%;
        /* background-color: rgba(0, 0, 0, 0.4); */
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
        transform: scale(1);
        z-index: 1;
        padding: 0 10px;
    }

    .masonry-item:hover::after {
        opacity: 1;
    }

    .masonry-item:hover img {
        transform: scale(1);
        cursor: pointer;
    }

    .masonry-item {
        padding: 0 10px;
    }

    .masonry-item.clicked img {
        filter: brightness(100%);
    }

    .masonry-item.clicked .text-overlay {
        opacity: 1;
    }

    .text-overlay {
        position: absolute;
        top: 15%;
        left: 15%;
        transform: translate(-15%, -15%);
        color: white;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
        z-index: 2;
    }
}










footer {
    /* background-color: #e8e8e8; */
}

footer .facebook, .instagram, .email {
    margin: 60px 15px 15px 20px;
}

footer .facebook {
    padding-left: 200px;
}

@media (min-width: 768px) and (max-width: 992px) {

    footer .facebook {
        padding-left: 50px;
    }
}


@media (min-width: 992px) and (max-width: 1200px) {

    footer .facebook {
        padding-left: 50px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {

    footer .facebook {
        padding-left: 100px;
    }
}

@media (max-width: 576px) {

    footer .facebook {
        padding-left: 15px;
    }
}

svg {
    width: 1.4rem;
    height: 1.4rem;
    color: #000;
}

#copyright {
    width: .9rem;
    height: .9rem;
    vertical-align: text-bottom;
    color: #a0a0a0
}

.copyright {
    font-size: .7rem;
    margin-top: 10;
    margin-bottom: 20px;
    color: #a0a0a0
}