/* ====== FOOTER ====== */
.site-footer {
    background: #12121f;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    padding: 60px 20px 20px;
    margin-top: 60px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-grid > div {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand {
    font-family: 'Audiowide', sans-serif;
    font-size: 1.4rem;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.footer-brand b {
    color: #8B5CF6;
}

.footer-grid p {
    font-family: 'Rajdhani', sans-serif;
    color: #b0b0c0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.footer-grid h2 {
    font-family: 'Audiowide', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
}

.footer-grid a {
    font-family: 'Rajdhani', sans-serif;
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-grid a:hover {
    color: #8B5CF6;
}

.socials {
    display: flex;
    gap: 15px;
}

.socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    color: #b0b0c0;
    text-decoration: none;
}

.socials a:hover {
    color: #8B5CF6;
    border-color: #8B5CF6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-family: 'Rajdhani', sans-serif;
    color: #888899;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #888899;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #8B5CF6;
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}