/* Import Font Chakra Petch dari Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;600;700&display=swap');

/* Footer Styles */
.site-footer {
    width: 100%;
    background: linear-gradient(180deg, rgba(12, 0, 38, 0.95) 0%, rgba(12, 0, 38, 1) 100%);
    border-top: 1px solid rgba(1, 198, 243, 0.3);
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #01c6f3, transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #01c6f3;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(1, 198, 243, 0.5);
}

.footer-divider {
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(1, 198, 243, 0.5), transparent);
}

.footer-copyright {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    opacity: 0.8;
    letter-spacing: 1px;
}

.footer-copyright a {
    color: #01c6f3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-copyright a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(1, 198, 243, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-footer {
        padding: 30px 15px;
    }

    .footer-logo {
        font-size: 20px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}
