/* Sponsors Section CSS */

.sponsors-section {
    background: #D9D9D9;
    height: 250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 100px;
}

.sponsors-container {
    max-width: 1200px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsors-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    height: 100%;
}

.sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo Styling */
.sponsor-logo {
    max-height: 100px;
    width: auto;
    object-fit: contain;
}

/* Sebenarnya Logo */
.sebenarnya-logo .sponsor-logo {
    max-width: 200px;
}

/* MCMC Logo */
.mcmc-logo .sponsor-logo {
    max-width: 150px;
    width: 121px;
}

/* Text Styling */
.sponsor-text {
    flex: 1;
    /* max-width: 550px; */
    text-align: center;
}

.sponsor-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #000000;
    margin: 0;
}

/* Footer Section CSS */

.footer-section {
    background: #000000;
    width: 100%;
    padding: 30px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.copyright-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #ffffff;
    margin: 0;
}

/* Responsive Design - Breakpoints */

/* Large Desktop - 1200px and above */
@media (min-width: 1200px) {
    .sponsors-content {
        gap: 100px;
    }
    
    .sebenarnya-logo .sponsor-logo {
        max-width: 232px;
    }
    
    .mcmc-logo .sponsor-logo {
        max-width: 180px;
    }
    
    .sponsor-text p {
        font-size: 18px;
        /* max-width: 530px; */
        width: 650px;
    }
}

/* Desktop - 992px to 1199px */
@media (max-width: 1199px) and (min-width: 992px) {
    .sponsors-content {
        gap: 50px;
    }
    
    .sponsor-text p {
        font-size: 17px;
    }
}

/* Tablet - 768px to 991px */
@media (max-width: 991px) and (min-width: 768px) {
    .sponsors-content {
        gap: 30px;
    }
    
    .sebenarnya-logo .sponsor-logo {
        max-width: 160px;
        max-height: 60px;
    }
    
    .mcmc-logo .sponsor-logo {
        max-width: 120px;
        max-height: 60px;
    }
    
    .sponsor-text p {
        font-size: 15px;
        max-width: 300px;
    }
    
    .copyright-text {
        font-size: 11px;
    }
}

/* Mobile Large - 480px to 767px */
@media (max-width: 767px) {
    .sponsors-section {
        height: auto;
        min-height: 400px;
        padding: 40px 20px;
    }
    
    .sponsors-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .sebenarnya-logo .sponsor-logo {
        max-width: 180px;
        max-height: 50px;
    }
    
    .mcmc-logo .sponsor-logo {
        max-width: 140px;
        max-height: 50px;
    }
    
    .sponsor-text {
        order: 2;
    }
    
    .sebenarnya-logo {
        order: 1;
    }
    
    .mcmc-logo {
        order: 3;
    }
    
    .sponsor-text p {
        font-size: 14px;
        max-width: 280px;
    }
    
    .footer-section {
        padding: 25px 15px;
    }
    
    .copyright-text {
        font-size: 10px;
        line-height: 1.3;
    }
}

/* Mobile Medium - 360px to 479px */
@media (max-width: 479px) {
    .sponsors-section {
        padding: 35px 15px;
    }
    
    .sponsors-content {
        gap: 20px;
        height: 374px;
    }
    
    .sebenarnya-logo .sponsor-logo {
        max-width: 232px;
        max-height: 70px;
    }
    
    .mcmc-logo .sponsor-logo {
        max-width: 121px;
        max-height: 100px;
    }
    
    .sponsor-text p {
        font-family: 'Poppins-Medium', sans-serif;
        font-size: 24px;
        max-width: 280px;
        line-height: 1.4;
    }
    
    .footer-section {
        padding: 20px 10px;
    }
    
    .copyright-text {
        font-size: 14px;
        line-height: 1.4;
    }
}

/* Mobile Small - 320px to 359px */
@media (max-width: 359px) {
    .sponsors-section {
        padding: 30px 10px;
    }
    
    .sponsors-content {
        gap: 15px;
    }
    
    .sebenarnya-logo .sponsor-logo {
        max-width: 130px;
        max-height: 35px;
    }
    
    .mcmc-logo .sponsor-logo {
        max-width: 90px;
        max-height: 35px;
    }
    
    .sponsor-text p {
        font-size: 12px;
        max-width: 220px;
    }
    
    .copyright-text {
        font-size: 8px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .sponsors-section {
        border-top: 2px solid #000000;
        border-bottom: 2px solid #000000;
    }
    
    .sponsor-text p {
        color: #000000;
        font-weight: 600;
    }
    
    .footer-section {
        border-top: 2px solid #ffffff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .sponsor-logo,
    .copyright-text {
        transition: none;
    }
}

/* Print styles */
@media print {
    .sponsors-section {
        background: #ffffff;
        border: 1px solid #000000;
    }
    
    .sponsor-text p {
        color: #000000;
    }
    
    .footer-section {
        background: #ffffff;
        border-top: 2px solid #000000;
    }
    
    .copyright-text {
        color: #000000;
    }
}