/* Shared Footer Styles for QuietQuest Landing Pages */

/* Footer */
.footer {
    margin-top: 5rem;
    padding: 3rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 4rem;
}

.footer-brand {
    flex: 1;
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-tagline {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links-section {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-column {
    min-width: 150px;
}

.footer-column h4 {
    color: var(--text-white);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.25rem 0;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--primary-teal);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-links-section {
        display: flex;
        justify-content: center;
        gap: 3rem;
        flex-wrap: wrap;
        width: 100%;
    }
    
    .footer-column {
        min-width: 120px;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-column h4 {
        color: var(--text-white);
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .footer-column a {
        display: block;
        color: var(--text-gray);
        text-decoration: none;
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        transition: color 0.2s;
    }
    
    .footer-column a:hover {
        color: var(--primary-teal);
    }
    
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-links-section {
        gap: 2rem;
    }
    
    .footer-column {
        min-width: 100px;
    }
}
