/* Footer Styling */
.footer {
    width: 100vw;
    background: var(--primary-color); /* Navy blue for thematic consistency */
    color: #fff;
    padding: 40px 20px;
    margin-top: auto;
    position: relative;
    bottom: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

/* Container */
.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 10px;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Footer Text */
.footer p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #e5e7eb;
    transition: color 0.3s ease;
}

.footer p:hover {
    color: #fff;
}

/* Social Icons (Text Initials for Minimalism) */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.2);
}

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

    .footer-links {
        gap: 15px;
        margin-bottom: 15px;
    }

    .footer-links a {
        font-size: 14px;
        padding: 3px 8px;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icon {
        font-size: 18px;
        width: 25px;
        height: 25px;
        line-height: 25px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 20px 10px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links a {
        font-size: 12px;
        padding: 2px 5px;
    }

    .social-icons {
        gap: 8px;
    }

    .social-icon {
        font-size: 16px;
        width: 22px;
        height: 22px;
        line-height: 22px;
    }

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