@import url('theme.css');

/* Global Footer Styles - Light Theme */
.footer {
    background-color: var(--color-navy);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 40px;
    font-family: var(--font-main);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.h4footer {
    color: var(--color-primary-light);
    font-size: 16px;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* App Download Section */
.app-download-section {
    background-color: var(--color-navy-dark);
    padding: 40px 0;
    text-align: center;
}

.app-download-section h2 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 400;
}

.app-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.app-icons img {
    height: 40px;
    width: auto;
    transition: transform 0.3s;
    opacity: 0.9;
}

.app-icons img:hover {
    transform: translateY(-3px);
    opacity: 1;
}

/* Trending Section (Bottom Links) */
.trending-section {
    background: var(--color-navy-dark);
    padding: 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trending-section h4 {
    color: var(--color-primary-light);
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.trending-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.trending-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s;
}

.trending-links a:hover {
    color: var(--color-primary-light);
    border-color: var(--color-primary-light);
}

/* Copyright Bar */
.copyright-bar {
    background: var(--color-navy-dark);
    padding: 20px 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-bar p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 16px;
        overflow-x: hidden;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-column {
        width: 100%;
        min-width: 0;
        margin-bottom: 0;
    }

    .footer-column a:hover {
        padding-left: 0;
    }
    
    .trending-section {
        padding: 25px 16px;
    }
    
    .trending-links {
        justify-content: center;
        gap: 10px;
    }
    
    .copyright-bar {
        padding: 16px;
    }
    
    .copyright-bar p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 12px;
    }
    
    .h4footer {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .footer-column a {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .app-download-section {
        padding: 25px 12px;
    }
    
    .app-download-section h2 {
        font-size: 16px;
    }
    
    .app-icons {
        gap: 12px;
    }
    
    .app-icons img {
        height: 32px;
    }
}
