@charset "utf-8";

/* override bootstrap style */
.text-dark {
    color: #222222 !important;
}
.bg-dark {
    background-color: #222222 !important;
}
.text-small {
    font-size: 0.875em;
}
.text-justify {
    text-align: justify;
}
.nav-link {
    padding: 0rem 1rem;
}
.navbar-toggler:focus {
    box-shadow: none;
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0;
        padding-left: 0;
    }
}



/* bg vignette */
.bg {
    background: rgb(255, 255, 255);
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(113, 113, 133, 1) 100%);
    height: 100%;
    width: 100%;
    position: fixed;
}



/* navbar */
.top-filler {
    position: relative;
    height: 34px;
    width: 100%;
    background-color: white;
}
.navbar .navbar-logo {
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;
    font-size: 24.5px;
}
.navbar .navbar-logo span:last-child {
    display: block;
    position: absolute;
    color: #222222;
    top: 46px;
    font-size: 14px;
    font-weight: 700;
}
.navbar .nav-item-separator {
    color: rgba(255,255,255,.55);   /* boostrap color of nav-link */
    border-bottom: 4px solid transparent;
    font-size: 1.0rem;
    align-self: center;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}
.sub-logo-bg-overlay {
    width: 100%;
    height: 20px;
    z-index: 1029;
    background: white;
}

@media (max-width: 992px) {
    .navbar .navbar-logo span:last-child {
        top: 58px;
    }
    .navbar-collapse {
        background-color: #222222;
        z-index: 1040;
        width: 100%;
    }
    .navbar-collapse .nav-item-separator {
        display: none;
    }
    .nav-item {
        display: inline-flex;
    }
}



/* gallery items */
.img-hover-zoom .bg-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background: black;
}


/* figcaption */
.figcaption-content {
    line-height: 1;
}
.figcaption-content h4 {
    font-size: 1em;
    margin: 0;
    text-shadow: 1px 1px 10px black;
}
.figcaption-content span {
    font-size: 0.75em;
    text-transform: none;
    text-shadow: 1px 1px 10px black;
}

.img-hover-zoom figcaption {
    transition: opacity .3s ease;
    opacity: 0;
}
.img-hover-zoom:hover figcaption {
    opacity: 1;
}

.img-hover-zoom .img {
    background-size: cover;
    background-position: center;
    position: relative;
    aspect-ratio: 16 / 9;
    transition: opacity .5s ease, transform .5s ease, filter .5s ease;
    transform: scale(1.01);
    opacity: 1;
    /* filter: grayscale(1); */
}
.img-hover-zoom:hover .img {
    transform: scale(1.1);
    opacity: 0.7;
    /* filter: grayscale(0); */
}