﻿/* ========================================
   MINIMALISTIC FOOTER - UNIVERSAL
   ======================================== */

.footer {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    padding: 2rem 1rem 1.5rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    box-sizing: border-box;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.footer-links a i {
    font-size: 1rem;
    opacity: 0.8;
}

.footer-team {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.footer-team strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.footer p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0.3rem 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 1rem 1rem;
        margin-top: 3rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .footer-team {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.2rem 0.8rem 0.8rem;
        margin-top: 2rem;
    }

    .footer-links {
        gap: 0.6rem;
    }

    .footer-links a {
        font-size: 0.75rem;
    }

    .footer-team {
        font-size: 0.85rem;
    }

    .footer p {
        font-size: 0.7rem;
    }
}