/* Custom cursor styles - macOS style */
.custom-cursor {
    position: fixed;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1.5px solid rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.custom-cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(1.3);
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--primary-color);
}

.custom-cursor.click {
    transform: translate(-50%, -50%) scale(0.9);
}

/* Logo styles */
.logo-container {
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(1.2);
}

.logo-container:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

/* Horizontal scrolling logo carousel */
.logo-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-scroll-track {
    display: flex;
    gap: 4rem;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.logo-scroll-track:hover {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 80px;
}

.logo-image {
    max-width: 160px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(100%) brightness(1.1);
    transition: all 0.3s ease;
}

.logo-item:hover .logo-image {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

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