/* Footer Styles */
footer {
    background: var(--bg-darker);
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    display: flex;
    gap: 2rem;
}

/* Footer Columns */
.footer-column {
    flex: 1;
}

.footer-brand {
    flex: 0 0 40%;
    min-width: 280px;
}

/* Brand Section (First Column) */
.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.footer-description {
    color: #B2B2B2;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-since {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 300;
    margin: 0;
}

/* Other Columns (Programs, Quick Links, Contact) */
.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.title-decoration {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--light-purple));
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #B2B2B2;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: var(--light-purple);
    transform: translateX(3px);
}

.footer-links li:not(:has(a)) {
    color: #B2B2B2;
    font-size: 0.95rem;
}

/* Email link special styling */
.footer-links a[href^="mailto"] {
    color: var(--light-purple);
    font-weight: 500;
}

.footer-links a[href^="mailto"]:hover {
    color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-content {
        max-width: 1000px;
    }
}

@media (max-width: 1024px) {
    .footer-content {
        padding: 3rem 2rem 2.5rem;
        gap: 1.5rem;
    }

    .footer-brand {
        flex: 0 0 42%;
    }

    .footer-column {
        flex: 1;
    }
}

@media (max-width: 900px) {
    .footer-content {
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 0 0 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-column {
        flex: 1 1 45%;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        padding: 2.5rem 1.5rem 2rem;
        gap: 2rem;
    }

    .footer-brand {
        flex: 1;
        width: 100%;
        min-width: auto;
        text-align: center;
    }

    .footer-column {
        width: 100%;
        text-align: center;
        min-width: auto;
    }

    .footer-logo {
        height: 45px;
        margin-bottom: 1rem;
    }

    .footer-tagline {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .title-decoration {
        margin: 0 auto 1.2rem auto;
    }

    .footer-bottom {
        padding: 1.2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 2rem 1rem 1.5rem;
        gap: 1.5rem;
    }

    .footer-tagline {
        font-size: 0.95rem;
    }

    .footer-description {
        font-size: 0.85rem;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-links a,
    .footer-links li:not(:has(a)) {
        font-size: 0.9rem;
    }
}