/* 
 * Blue Whale Entertainment - Partners Section Styles
 * Author: Blue Whale Team
 * Version: 1.0
 */

.partners-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.partners-title {
    text-align: center;
    margin-bottom: 50px;
}

.partners-title h2 {
    font-size: 36px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.partners-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
}

.partners-title p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.partner-item img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-item {
        height: 80px;
    }
}
