/**
 * Klasičan Gejming - Footer Styles
 * Stilovi za footer sekciju
 */

/* ===== Footer ===== */
.site-footer {
    background: linear-gradient(135deg, rgba(10, 8, 20, 0.98) 0%, rgba(5, 5, 12, 1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 70px 0 35px;
    margin-top: 70px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-pink), var(--accent-cyan), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-about {
    max-width: 380px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-logo .logo-image {
    height: 65px;
}

.footer-logo .logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-klasican {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.1rem;
}

.footer-logo .logo-gejming {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.85rem;
}

.footer-about p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-about .social-links {
    gap: 14px;
}

.footer-about .social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-about .social-links a:hover {
    background: var(--accent-pink);
    border-color: var(--accent-pink);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 45, 117, 0.3);
}

.footer-links h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul a:hover {
    color: var(--accent-pink);
    transform: translateX(5px);
}

.partner-links {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 12px;
}

.partner-links::-webkit-scrollbar {
    width: 4px;
}

.partner-links::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 2px;
}

.partner-links::-webkit-scrollbar-thumb {
    background: var(--accent-pink);
    border-radius: 2px;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
}

.footer-bottom a {
    color: var(--accent-pink);
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--accent-cyan);
}

.footer-author {
    margin-top: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-about {
        max-width: 100%;
    }
}
