/* Logo Wall Section */
.logo-wall-section {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.logo-wall-container {
    /*max-width: 1400px;*/
    width: 100%;
    margin: 0 auto;
}

.logo-wall-header {
    text-align: center;
    margin-bottom: 4rem;
}

.logo-wall-title {
    font-size: 20px;
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.logo-wall-subtitle {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: var(--text-muted);
}

/* Logo Wall Wrapper */
.logo-wall {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Fade gradient overlays */
.logo-wall::before,
.logo-wall::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    z-index: 2;
    pointer-events: none;
}

.logo-wall::before {
    left: 0;
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0.8) 20%,
        rgba(0, 0, 0, 0) 100%
    );
}

.logo-wall::after {
    right: 0;
    background: linear-gradient(to left, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0.8) 20%,
        rgba(0, 0, 0, 0) 100%
    );
}

/* Scrollable container */
.logo-wall-scrollable {
    display: flex;
    gap: 4rem;
    animation: scroll-logos 45s linear infinite;
    will-change: transform;
    width: fit-content;
}

.logo-wall-scrollable:hover {
    animation-play-state: paused;
}

/* Logo items */
.logo-wall-item {
    flex-shrink: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-wall-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

.logo-wall-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Keyframe animation for infinite scroll */
@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-66.666%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-wall-section {
        padding: 4rem 1rem;
    }
    
    .logo-wall-header {
        margin-bottom: 3rem;
    }
    
    .logo-wall-scrollable {
        gap: 3rem;
        animation-duration: 30s;
    }
    
    .logo-wall-item {
        height: 45px;
    }
    
    .logo-wall::before,
    .logo-wall::after {
        width: 20%;
    }
}

@media (max-width: 480px) {
    .logo-wall-section {
        padding: 3rem 1rem;
    }
    
    .logo-wall-scrollable {
        gap: 2rem;
        animation-duration: 25s;
    }
    
    .logo-wall-item {
        height: 35px;
    }
}
