/* ==========================================================================
   RSM NETWORK - MASTER FOOTER STYLES (Synchronized with home.html)
   ========================================================================== */

.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 2.5rem 0 1rem;
    border-top: 1px solid rgba(255, 176, 1, 0.2);
    position: relative;
    width: 100%;
    margin-top: auto;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FFB001, #F36D26, transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.footer-link {
    color: var(--primary-color, #FFB001);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
    font-family: 'Oswald', sans-serif;
}

.footer-link:hover {
    color: var(--secondary-color, #F36D26);
    transform: translateY(-2px);
}

.footer-text {
    color: white;
    font-size: 1rem;
    opacity: 0.8;
    font-family: 'Oswald', sans-serif;
}

.footer-text p {
    margin: 0;
}

/* Responsive Footer (matches home.html) */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem !important;
    }

    .footer-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
    }
    
    .footer-links {
        justify-content: center !important;
        gap: 0.5rem !important;
        flex-wrap: nowrap !important;
        display: flex !important;
        flex-direction: row !important;
    }
    
    .footer-link {
        font-size: 0.65rem !important;
        white-space: nowrap !important;
        letter-spacing: 0.05rem !important;
    }
    
    .footer-text {
        font-size: 0.9rem !important;
    }
}
