/* Global Styles */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #121010;
}
::-webkit-scrollbar-thumb {
    background: #d41132;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a30d26;
}

/* Selection Color */
::selection {
    background: #d41132;
    color: white;
}

/* Floating Gallery */
.floating-gallery {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    background: #121010;
    margin: 4rem 0;
}

.floating-gallery-item {
    position: absolute;
    left: 0;
    will-change: transform;
    animation: scroll-horizontal linear infinite;
}

@keyframes scroll-horizontal {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

.floating-gallery-item:hover {
    animation-play-state: paused;
    z-index: 50;
}

.floating-gallery-item .inner-item {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (min-width: 768px) {
    .floating-gallery-item:hover .inner-item {
        transform: scale(2);
    }
}

.zigzag {
    height: 12px;
    background-image: linear-gradient(135deg, #fff 25%, transparent 25%), 
                      linear-gradient(225deg, #fff 25%, transparent 25%);
    background-position: 0 0;
    background-size: 24px 24px;
    background-repeat: repeat-x;
}
.zigzag-black {
    height: 12px;
    background-image: linear-gradient(135deg, #000 25%, transparent 25%), 
                      linear-gradient(225deg, #000 25%, transparent 25%);
    background-position: 0 0;
    background-size: 24px 24px;
    background-repeat: repeat-x;
}

/* Introductie sectie patronen */
.intro-pattern {
    background-image: radial-gradient(circle, #222 1px, transparent 1px);
    background-size: 30px 30px;
}

.intro-glass {
    background: linear-gradient(to bottom, rgba(30, 30, 30, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.shop-rotate {
    animation: rotate-slow 20s linear infinite;
}

.group:hover .shop-rotate {
    animation-duration: 6s;
}

/* Hamburger Animation */
#menu-toggle .hamburger-line {
    transition: all 0.3s ease-in-out;
}
body.menu-open #menu-toggle .line-1 {
    transform: translateY(8px) rotate(45deg);
    width: 2.5rem;
}
body.menu-open #menu-toggle .line-2 {
    opacity: 0;
}
body.menu-open #menu-toggle .line-3 {
    transform: translateY(-8px) rotate(-45deg);
    width: 2.5rem;
}

/* Artist Carousel Styles */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.artist-card {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.artist-card.active {
    transform: scale(1.15);
    z-index: 10;
    opacity: 1 !important;
}
.artist-card.active .artist-image {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1);
}
.artist-card.active .artist-overlay {
    opacity: 1;
}
.artist-card:not(.active) {
    transform: scale(0.85);
    opacity: 0.3;
}