/* Modern Footer Styles */

.site-footer {
    background-color: #faf5ee !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

/* Above Footer Section */
.site-above-footer-wrap {
    background: linear-gradient(135deg, #faf5ee 0%, #f8f4f0 100%);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.ast-builder-grid-row-container-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Footer Navigation */
.footer-bar-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-navigation {
    width: 100%;
}

.footer-nav-wrap {
    display: flex;
    justify-content: center;
}

#astra-footer-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

#astra-footer-menu li {
    margin: 0;
    padding: 0;
}

#astra-footer-menu .menu-link {
    color: #666666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    letter-spacing: 0.02em;
}

#astra-footer-menu .menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #007cba, #005a8b);
    transition: width 0.3s ease;
}

#astra-footer-menu .menu-link:hover {
    color: #007cba;
    transform: translateY(-1px);
}

#astra-footer-menu .menu-link:hover::after {
    width: 100%;
}

/* Primary Footer Section */
.site-primary-footer-wrap {
    background: #faf5ee;
    padding: 1.5rem 0;
    position: relative;
}

.site-primary-footer-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
}

/* Footer Copyright */
.ast-footer-copyright {
    text-align: center;
    padding: 0;
}

.ast-footer-copyright p {
    margin: 0;
    color: #888888;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ast-builder-grid-row-container-inner {
        padding: 0 1rem;
    }
    
    .site-above-footer-wrap {
        padding: 1.5rem 0;
    }
    
    #astra-footer-menu {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    #astra-footer-menu .menu-link {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }
    
    .site-primary-footer-wrap {
        padding: 1rem 0;
    }
    
    .ast-footer-copyright p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .ast-builder-grid-row-container-inner {
        padding: 0 0.75rem;
    }
    
    .site-above-footer-wrap {
        padding: 1rem 0;
    }
    
    #astra-footer-menu {
        gap: 0.75rem;
    }
    
    #astra-footer-menu .menu-link {
        font-size: 0.8rem;
    }
    
    .ast-footer-copyright p {
        font-size: 0.75rem;
    }
}

/* Enhanced Hover Effects */
.site-footer {
    transition: all 0.3s ease;
}

.site-footer:hover {
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.03);
}

/* Modern Typography */
.site-footer {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-footer {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus States for Accessibility */
#astra-footer-menu .menu-link:focus {
    outline: 2px solid #007cba;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Print Styles */
@media print {
    .site-footer {
        background: #ffffff !important;
        color: #000000 !important;
        border-top: 1px solid #000000;
    }
    
    #astra-footer-menu .menu-link {
        color: #000000 !important;
    }
    
    .ast-footer-copyright p {
        color: #000000 !important;
    }
} 