/* Hide scrollbar for Chrome, Safari and Opera */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Gallery card hover effect */
.gallery-card {
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: scale(1.02);
}

/* Gallery overlay transitions */
.gallery-overlay {
    transition: opacity 0.5s ease;
}

/* Disable transitions on page load */
.gallery-overlay.no-transition {
    transition: none !important;
}

/* Custom boxy scrollbar for gallery */
.gallery-scroll::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: #F5F3ED;
    border-radius: 0 !important;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: #D4CEC0;
    border-radius: 0 !important;
}

.gallery-scroll::-webkit-scrollbar-thumb:hover {
    background: #C4BDB0;
}

.gallery-scroll::-webkit-scrollbar-corner {
    background: #F5F3ED;
}

/* Firefox scrollbar */
.gallery-scroll {
    scrollbar-width: thin;
    scrollbar-color: #D4CEC0 #F5F3ED;
}

/* Custom boxy scrollbar for main content */
.main-scroll::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.main-scroll::-webkit-scrollbar-track {
    background: #F5F3ED;
    border-radius: 0 !important;
}

.main-scroll::-webkit-scrollbar-thumb {
    background: #D4CEC0;
    border-radius: 0 !important;
}

.main-scroll::-webkit-scrollbar-thumb:hover {
    background: #C4BDB0;
}

.main-scroll::-webkit-scrollbar-corner {
    background: #F5F3ED;
}

/* Firefox scrollbar for main content */
.main-scroll {
    scrollbar-width: thin;
    scrollbar-color: #D4CEC0 #F5F3ED;
}

/* Fullscreen image styling */
#artwork-image:fullscreen {
    object-fit: contain;
    width: 100vw;
    height: 100vh;
    background: black;
}

#artwork-image:-webkit-full-screen {
    object-fit: contain;
    width: 100vw;
    height: 100vh;
    background: black;
}

#artwork-image:-moz-full-screen {
    object-fit: contain;
    width: 100vw;
    height: 100vh;
    background: black;
}
