:root {
    --bg-color: #292929;
    --color-grey: #999;
    --side-bg-color: #101010;
}

html,
body {
    height: 100%;
}

body {
    background-color: var(--bg-color);
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0 !important;
}

.fw-black {
    font-weight: 900;
}

a {
    color: inherit !important;
    text-decoration: none !important;
}

.color-grey {
    color: var(--color-grey);
}

.smooth-scroll {
    scroll-behavior: smooth;
}

/* Start: Scrollbar */

::-webkit-scrollbar {
    height: 4px;
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* End: Scrollbar */

/* Start: Animation */

[animate] {
    transition: transform 1s, opacity 1s;
    opacity: 0;
}

[animate].show {
    opacity: 1;
}

[animate="left"] {
    transform: translateX(-15px);
}

[animate="left"].show {
    transform: translateX(0);
}

[animate="right"] {
    transform: translateX(15px);
}

[animate="right"].show {
    transform: translateX(0);
}

[animate="up"] {
    transform: translateY(-15px);
}

[animate="up"].show {
    transform: translateY(0);
}

[animate="down"] {
    transform: translateY(15px);
}

[animate="down"].show {
    transform: translateY(0);
}

/* End: Animation */

/* Start: Sidemenu */

.side-menu-wrapper {
    height: 100%;
}

.side-menu {
    background-color: var(--side-bg-color);
}

.side-menu-overlay {
    height: 100px;
    background: linear-gradient(178deg, rgba(0, 0, 0, 0.00) 1.36%, #000 98.64%);
}

.side-menu-logo-wrapper {
    transform: translateY(-50%);
    transition: transform 0.5s;
}

.side-menu:hover .side-menu-logo-wrapper {
    transform: translateY(0%);
}

.side-menu-quote {
    font-size: 60px;
}

.burger-menu div {
    height: 5px;
    width: 25px;
    background-color: #fff;
    border-radius: 5px;
    margin-top: 2px;
    margin-bottom: 2px;
}

.burger-menu.rotated {
    transform: rotate(90deg);
}

/* End: Sidemenu */

/* Start: Albums */

.album-row-image {
    height: calc((100vh - 360px) / 2);
}

.album-full-image {
    height: calc(100vh - 360px + 24px);
}

.album-item-details {
    background-color: rgba(16, 16, 16, 0.94);
    opacity: 0;
    transition: opacity 0.5s;
}

.album-item-details:hover {
    opacity: 1;
}

.image-popup {
    background-color: rgba(16, 16, 16, 0.94);
    transform: translateY(-100%);
    transition: transform 0.5s;
}

.image-popup.show {
    transform: translateY(0%);
}

.image-popup img {
    object-fit: contain;
}

.exhibitions-text-wrapper {
    width: 250px;
}

.mfp-bg {
    animation-name: fadeInPopupBg;
    animation-duration: 0.5s;
}

.mfp-bg.mfp-removing {
    opacity: 0;
    transition: opacity 0.5s;
}

@keyframes fadeInPopupBg {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.8;
    }
}


/* End: Albums */

/* Start: Footer */

.social-media-link {
    background-color: var(--side-bg-color);
    border-radius: 11px;
    height: 58px;
    width: 58px;
}

.social-media-link img {
    height: 28px;
    width: 28px;
    object-fit: contain;
}

/* End: Footer */

/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .logo-wrapper {
        width: 120px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .side-menu-wrapper {
        height: auto;
    }

    .side-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        transform: translateX(-100%);
        transition: transform 0.5s;
        background-color: rgba(16, 16, 16, 0.94);
        z-index: 1;
    }

    .side-menu.show {
        transform: translateX(0%);
    }

    .social-media-link {
        height: 48px;
        width: 48px;
    }

    .social-media-link img {
        height: 20px;
        width: 20px;
    }

    .album-row-image {
        height: calc((100vh - 400px) / 2);
    }

    .album-full-image {
        height: calc(100vh - 400px + 24px);
    }
    .album-item-details .title, .album-item-details .category, .album-item-details .size{
        -webkit-user-select: none; /* Safari */
        -ms-user-select: none; /* IE 10 and IE 11 */
        user-select: none; /* Standard syntax */
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .album-title {
        font-size: 11px;

    }
}