/* Footer Enhancements - Override landing.css styles */

/* Override the landing.css footer content grid for 3 columns */
.footer-content {
    display: grid !important;
    grid-template-columns: 2fr 1.5fr 1fr !important;
    gap: 3rem !important;
    margin-bottom: 2rem !important;
    text-align: left !important;
}

/* Add separator line above copyright */
.footer-bottom {
    border-top: 1px solid #374151 !important;
    padding-top: 2rem !important;
    margin-top: 2rem !important;
    text-align: center !important;
}

.footer-bottom p {
    margin: 0 !important;
    color: white !important;
}

.footer-slogan {
    margin-top: 0.5rem !important;
    font-size: 1.2rem !important;
    color: var(--hatmada-blue-light) !important;
    font-weight: 600 !important;
}

/* Social Links Styles */
.social-links {
    display: flex;
    flex-direction: column;
}

.social-link {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.social-link:hover {
    color: var(--hatmada-blue-light);
}

/* Newsletter Section */
.newsletter-section {
    margin-top: 1.5rem;
}

.btn-newsletter {
    background: var(--hatmada-orange);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
    max-width: 250px;
}

.btn-newsletter:hover:not(:disabled) {
    background: #d14617;
    transform: translateY(-1px);
}

.btn-newsletter:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #6b7280;
    transform: none;
}

.newsletter-info {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 0.5rem;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .social-link {
        font-size: 0.9rem;
    }
    
    .btn-newsletter {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .newsletter-info {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 640px) {
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .btn-newsletter {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        max-width: 100%;
    }
    
    .footer-bottom {
        padding-top: 1.5rem !important;
    }
    
    .footer-slogan {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 1rem !important;
    }
    
    .footer {
        padding: 2rem 0 !important;
    }
    
    .footer-section h3 {
        margin-bottom: 0.75rem;
    }
    
    .social-link {
        font-size: 0.85rem;
    }
    
    .btn-newsletter {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        margin-top: 1.5rem !important;
        padding-top: 1rem !important;
    }
}