/* COMMON */
* {
    transition: all 0.3s ease-in-out;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cantata One", serif;
  font-weight: bold;
}

p, a, span {
  font-family: "Noto Sans Display", sans-serif;
}

.container-fluid {
    padding-right: 0;
    padding-left: 0;
}

.icon-button {
    background-color: lightgray;
    border: none;
    border-radius: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: normal;
    padding: 0;
}

.icon-button:hover {
    background-color: gray;
}

.icon-button i {
    width: 36px;
    height: 36px;
}

.link-body-emphasis .bi::before {
    margin-right: 8px;
}

.language-selector {
    margin: 0.4em;
}

.btn-outline {
    color: #444;
    border: 2px solid #444;
    border-radius: 50%;
    text-align: center;
    aspect-ratio: 1;
    padding: 6px;
}

.btn-outline:hover {
    color: darkgray;
    border: 2px solid darkgray;
}

.missing-message {
    text-align: center;
    font-style: italic;
    color: darkgray;
}

.mobile-only {
    display: none;
}

/* HEADER */

/* .navbar-brand {
    display: contents;
}

.navbar-brand img {
    margin-right: 2em;
}

#navbarScroll {
    margin-left: 2em;
}

.navbar-nav {
    gap: 1.5em;
} */

/* SIDE-BAR */

.side-menu {
    position: sticky;
    height: 100vh;
}

.logo-div {
    gap: 1em;
    text-decoration: none;
    border-bottom: none!important;
}

.logo {
    font-size: x-large;
}

.nav-btn {
    font-size: x-large;
}

/* BODY */
.mainbody {
    margin-top: 2em;
}

.carousel {
    height: 100vh;
}

.carousel-inner {
    height: 100%;
}

.carousel-img {
    object-fit: cover;
    width: 100%;
}


/* GALLERIES */
.gallery-row {
    /* height: 50vh; */
    margin: 2em auto;
}

.gallery-img {
    height: inherit;
    object-fit: cover;
}

.gallery-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

/* LAYOUT */
.work-card {
    width: 480px;
    padding-top: calc(var(--bs-gutter-x) * .5);
}

.work-card img {
    max-height: 720px;
    object-fit: cover;
    border-radius: 8px;
}

.work-card:hover img {
    opacity: 0.7;
}

/* WORKS */

.work-image {
    padding: 0;
    border-radius: 8px;
    cursor: pointer;
    width: 32%;
}

.work-image:hover {
    opacity: 0.8;
}

/* EXPO */

.text-bg-styled {
    background: #3a3a3a;
}

/* PUB */

.pub-row {
    width: 90%;
    padding: 1em;
    margin-bottom: 2em;
    border-radius: 8px;
    box-shadow: 2px 3px 9px 3px rgba(0, 0, 0, 0.17);
}

.pub-img {
    width: 350px;
    object-fit: cover;
    object-position: center;
    margin-right: 4em;
}

.pub-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
}

.pub-text a {
    color: #3a3a3a!important;
    text-decoration-color: rgba(#3a3a3a, var(--bs-link-opacity, 0.5));
}

.pub-text a:hover {
    color: #444!important;
    text-decoration-color: rgba(#444, var(--bs-link-opacity, 0.5));
}

.pub-master-img {
    max-height: 500px;
    object-fit: cover;
}

.pub-column {
    display: flex;
    flex-direction: column;
    gap: 3em;
}

@media only screen and (max-width: 1023px) {
    .side-menu {
        width: 93px;
    }

    .side-menu h6 {
        display: none;
        opacity: 0;
    }

    .mobile-only {
        display: block;
        text-align: center;
        font-size: xx-large;
    }

    .open-menu .mobile-only {
        rotate: 90deg;
    }
    
    .logo {
        display: none;
        opacity: 0;
    }

    .open-menu {
        width: 250px!important;
    }

    .open-menu h6 {
        display: block!important;
        opacity: 100!important;
    }

    .open-menu a .logo {
        display: block!important;
        opacity: 100!important;
    }

    .main-content {
        width: 90%;
    }

    .fade-main {
        filter: brightness(0.5);
        background-color: darkgrey;
        opacity: 0.8;
    }

    .work-image-column {
        margin: 1em;
    }

    .work-image {
        width: 100%;
    }
}

@media only screen and (max-width: 540px) {
    .side-menu {
        width: 55px;
    }

    #logo-img {
        width: 25px;
    }

    .open-menu a #logo-img {
        width: 65px!important;
    }

    .mobile-only {
        font-size: large;
    }
    
    .carousel-img {
        width: initial;
        height: 100vh;
    }

    .work-card {
        width: 290px;
    }

    .a-img {
        width: 100%;
    }

    .pub-row {
        flex-direction: column;
        align-items: center;
    }

    .pub-img {
        width: 100%;
        margin-right: 0em;
        margin-bottom: 1em;
    }
}