/**
 * Footer Styles
 */

/* Footer Base */
.site-footer {
    position: relative;
    margin-top: auto;
}

/* Footer Headings */
.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links li a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 1rem;
}

.footer-links li a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    transform: translateX(-5px);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer-links li a:hover::before {
    transform: translateX(0);
    opacity: 1;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--color-primary);
}

/* Footer Social Links */
.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(200, 160, 85, 0.3);
}

body[data-theme="light"] .site-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%);
}

/* Dark Mode Support */
body[data-theme="dark"] .site-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, rgba(200, 160, 85, 0.1) 100%);
}

body[data-theme="dark"] .footer-heading {
    color: #f9fafb;
}

body[data-theme="dark"] .footer-links li a {
    color: #e5e7eb;
}

body[data-theme="dark"] .footer-contact-item {
    color: #e5e7eb;
}

body[data-theme="dark"] .footer-contact-item a {
    color: #e5e7eb;
}

body[data-theme="dark"] .footer-social-link {
    background: rgba(255, 255, 255, 0.05);
}

body[data-theme="dark"] .footer-social-link:hover {
    background: var(--color-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-col {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-heading {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .footer-links li a {
        font-size: 0.925rem;
    }

    .footer-contact-item {
        font-size: 0.925rem;
    }

    .footer-social-link {
        width: 36px;
        height: 36px;
    }
}