/* FOOTER STYLES - REDESIGNED RESPONSIVE */
.footer {
    background: #000000;
    color: #FFFFFF;
    border-top: 3px solid #5D3FD3;
    width: 100%;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* MAIN FOOTER CONTENT - MOBILE FIRST */
.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0 2rem;
    text-align: center;
}

/* FOOTER BRAND */
.footer-brand {
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

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

.footer-logo-text {
    font-size: 1.1rem;
    font-weight: 900;
    color: #5D3FD3;
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-size: 0.75rem;
    font-weight: 500;
    color: #CCCCCC;
    letter-spacing: 0.02em;
    margin: 0;
    max-width: 250px;
    margin: 0 auto;
}

/* FOOTER SECTIONS */
.footer-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-contact,
.footer-links,
.footer-social {
    text-align: center;
}

.footer-heading {
    font-size: 0.8rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    border-bottom: 1px solid #5D3FD3;
    padding-bottom: 0.5rem;
}

/* CONTACT INFO */
.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #CCCCCC;
    padding: 0.6rem;
    border: 1px solid #333333;
    background: #111111;
    transition: all 0.2s ease;
}

.footer-contact-item:hover {
    border-color: #5D3FD3;
    background: #1a1a1a;
}

.footer-icon {
    font-size: 1rem;
    color: #5D3FD3;
}

/* QUICK LINKS */
.footer-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link-list a {
    color: #CCCCCC;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    padding: 0.5rem;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    display: block;
}

.footer-link-list a:hover {
    color: #5D3FD3;
    border-color: #5D3FD3;
    background: #111111;
}

/* SOCIAL MEDIA - WILL BE UPDATED WITH SVG ICONS */
.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #CCCCCC;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    padding: 0.6rem 1rem;
    border: 2px solid #333333;
    background: #111111;
    transition: all 0.2s ease;
    min-width: 140px;
}

.footer-social-link:hover {
    color: #FFFFFF;
    border-color: #5D3FD3;
    background: #5D3FD3;
    transform: translate(1px, 1px);
}

.footer-social-link:hover .footer-social-icon {
    color: #FFFFFF;
}

.footer-social-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: inherit;
    transition: all 0.2s ease;
}

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid #333333;
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.footer-copyright {
    font-size: 0.7rem;
    font-weight: 500;
    color: #CCCCCC;
    letter-spacing: 0.02em;
    margin: 0;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.footer-legal a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.3rem 0.5rem;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.footer-legal a:hover {
    color: #5D3FD3;
    border-color: #5D3FD3;
}

/* TABLET RESPONSIVE (768px and up) - 2 COLUMN LAYOUT */
@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        text-align: left;
    }
    
    .footer-brand {
        grid-column: 1 / 3;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-info {
        grid-column: 1 / 3;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-contact {
        text-align: left;
    }
    
    .footer-social {
        text-align: left;
    }
    
    .footer-links {
        grid-column: 1 / 3;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-tagline {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .footer-contact-items {
        align-items: flex-start;
    }
    
    .footer-contact-item {
        justify-content: flex-start;
        max-width: 250px;
    }
    
    .footer-social-links {
        align-items: flex-start;
    }
    
    .footer-social-link {
        justify-content: flex-start;
        max-width: 180px;
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* DESKTOP RESPONSIVE (1024px and up) */
@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
        text-align: left;
    }
    
    .footer-brand {
        grid-column: 1;
        text-align: left;
        margin-bottom: 0;
    }
    
    .footer-info {
        grid-column: 2 / 5;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-contact {
        grid-column: 1;
    }
    
    .footer-links {
        grid-column: 2;
        text-align: left;
    }
    
    .footer-social {
        grid-column: 3;
    }
    
    .footer-logo {
        justify-content: flex-start;
    }
    
    .footer-tagline {
        margin: 0;
        max-width: 280px;
        font-size: 0.8rem;
    }
    
    .footer-logo-text {
        font-size: 1.3rem;
    }
    
    .footer-heading {
        font-size: 0.85rem;
    }
    
    .footer-contact-item,
    .footer-link-list a,
    .footer-social-link {
        font-size: 0.8rem;
    }
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
    .footer-link-list a,
    .footer-social-link,
    .footer-legal a,
    .footer-contact-item {
        transition: none;
    }
}

/* FOCUS STYLES */
.footer-link-list a:focus,
.footer-social-link:focus,
.footer-legal a:focus {
    outline: 2px solid #5D3FD3;
    outline-offset: 2px;
}