/* 
========================================
FOOTER STYLES - STRIPE-INSPIRED THEME
========================================
Clean, minimal footer matching header navigation theme
*/

.footer {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 60px 0 30px;
    position: relative;
    z-index: 10;
    margin-top: 0;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 40px;
    text-align: center;
}

.footer-logo h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.footer-logo .the {
    color: #ff4d00;
    margin-right: 4px;
}

.footer-logo .journeyman {
    color: #ffffff;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.3px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 30px;
}

.footer-group {
    text-align: center;
}

.footer-group h3 {
    color: #ff4d00;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-group li {
    margin-bottom: 8px;
}

.footer-group a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
    letter-spacing: 0.3px;
}

.footer-group a:hover {
    color: #ff4d00;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.3px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background-color: #ff4d00;
    color: #ffffff;
    border-color: #ff4d00;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-group {
        margin-bottom: 0;
    }
    
    .footer-bottom {
        padding-top: 20px;
        margin-top: 20px;
    }
}
