/* 
 * Styles Premium pour le Footer
 * Extrait de home.blade.php pour uniformiser le design sur tout le site.
 */

/* ============================================
   SITE FOOTER - REFERENCE REFAC
   ============================================ */
.site-footer {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%) !important;
    color: #ffffff !important;
    padding: 50px 0 0 !important;
    position: relative !important;
    overflow: hidden !important;
    border: none !important;
}

.footer-container {
    max-width: 1300px !important;
    margin: 0 auto !important;
    padding: 0 30px !important;
    display: grid !important;
    grid-template-columns: 1.2fr 1fr 1.2fr 1.5fr !important;
    gap: 40px !important;
}

/* Logo Section */
.logo-column {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}

.footer-logo {
    width: 240px !important;
    height: auto !important;
    margin-bottom: 25px !important;
    transition: transform 0.3s ease !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.footer-logo:hover {
    transform: scale(1.05) !important;
}

/* Logo Section Reset */
.logo-section {
    background: transparent !important;
    padding: 0 !important;
    margin-bottom: 20px !important;
}

/* Premium Footer Logo */
.footer-logo-img {
    width: 200px !important;
    height: auto !important;
    background: transparent !important;
    padding: 0 !important;
    transition: transform 0.3s ease !important;
}

.footer-logo-img:hover {
    transform: scale(1.05) !important;
}

/* Footer Titles */
.footer-title {
    font-size: 1.1rem !important;
    margin-bottom: 25px !important;
    position: relative !important;
    padding-bottom: 12px !important;
    color: #f8f9fa !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-weight: 700 !important;
    border: none !important;
    display: block !important;
}

.footer-title::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 50px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #CE1126, #FCD116) !important;
}

/* Sections common */
.footer-section {
    margin-bottom: 30px !important;
}

/* Links & Contact Info */
.footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links li {
    margin-bottom: 8px !important;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-size: 13px !important;
    display: inline-block !important;
}

.contact-item a,
.contact-item p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-size: 12px !important; /* Textes des contacts réduits */
    display: inline-block !important;
    margin-bottom: 5px !important;
}

.footer-links a:hover {
    color: #FCD116 !important;
    padding-left: 8px !important;
}

.contact-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
}

.contact-item i {
    color: #FCD116 !important;
    margin-top: 3px !important;
    font-size: 12px !important;
    min-width: 15px !important;
}

.organization {
    font-weight: 400 !important; /* Retrait du gras forcé pour correspondre à l'email */
}

.email a {
    color: #FCD116 !important;
}

.email a:hover {
    color: #CE1126 !important;
}

/* Social Links */
.social-links {
    display: flex !important;
    gap: 12px !important;
    justify-content: center !important;
}

.social-links a {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
    font-size: 16px !important;
}

.social-links a:hover {
    transform: translateY(-3px) !important;
    color: #ffffff !important;
}

.social-links .facebook:hover {
    background: #1877F2 !important;
}

.social-links .twitter:hover {
    background: #000000 !important;
}

.social-links .instagram:hover {
    background: #d62976 !important;
}

.social-links .youtube:hover {
    background: #CD201F !important;
}

/* Footer Bottom */
.footer-bottom {
    background: #CE1126 !important; /* Rouge SNC */
    padding: 20px 0 !important;
    margin-top: 40px !important;
}

.footer-bottom-container {
    max-width: 1300px !important;
    margin: 0 auto !important;
    padding: 0 30px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.footer-bottom p {
    margin: 0 !important;
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.legal-links {
    display: flex !important;
    gap: 20px !important;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    font-size: 0.8rem !important;
    transition: color 0.3s ease !important;
}

.legal-links a:hover {
    color: #FCD116 !important; /* Jaune SNC visible sur fond rouge */
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr !important;
    }
}

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

    .footer-bottom-container {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center !important;
    }
}