/* Footer Section */
footer {
    background-color: #1a1b26;
    padding: 3rem 1rem 2rem;
    border-top: 1px solid rgba(122, 162, 247, 0.1);
    color: #a9b1d6;
    text-align: center;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

/* Navigation Links */
.footer-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: #c0caf5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #7aa2f7;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 1.2rem;
    font-size: 1.3rem;
}

.footer-social a {
    color: #c0caf5;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
    color: #7aa2f7;
    transform: scale(1.2);
}

/* Info Text */
.footer-info p {
    color: #a9b1d6;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Bottom Copyright */
.footer-bottom p {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #565f89;
}
