/* ===================================
   FOOTER MOBIEL - 3 KOLOMMEN UITGELIJND
   Links, Account, Juridisch + Social onderaan
   =================================== */

/* Mobiel - 3 kolommen layout */
@media (max-width: 992px) {
    
    /* Footer container */
    footer {
        padding: 40px 0 20px 0 !important;
    }
    
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
    }
    
    /* Eerste sectie (YourYouthBook) - full width bovenaan */
    .footer-content .footer-section:first-child {
        width: 100% !important;
        text-align: center !important;
        padding-bottom: 20px !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
        margin-bottom: 5px !important;
    }
    
    .footer-content .footer-section:first-child h3 {
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }
    
    .footer-content .footer-section:first-child p {
        font-size: 14px !important;
        margin-bottom: 15px !important;
        opacity: 0.9 !important;
    }
    
    .footer-content .footer-section:first-child img {
        max-height: 45px !important;
    }
    
    /* Container voor de 3 kolommen - netjes uitgelijnd */
    .footer-columns-wrapper {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
        width: 100% !important;
        align-items: start !important; /* Top aligned */
    }
    
    /* Laatste 3 secties (Links, Account, Juridisch) */
    .footer-content .footer-section:nth-child(2),
    .footer-content .footer-section:nth-child(3),
    .footer-content .footer-section:nth-child(4) {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 5px !important;
    }
    
    /* Headings - consistent */
    .footer-content .footer-section h3 {
        font-size: 15px !important;
        margin-bottom: 15px !important;
        font-weight: 600 !important;
        text-align: left !important;
        padding-bottom: 8px !important;
        border-bottom: 2px solid rgba(255,255,255,0.2) !important;
    }
    
    /* Links - netjes uitgelijnd */
    .footer-links {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .footer-links li {
        margin-bottom: 10px !important;
    }
    
    .footer-links a {
        font-size: 13px !important;
        line-height: 1.5 !important;
        display: block !important;
        padding: 3px 0 !important;
        transition: all 0.2s ease !important;
    }
    
    .footer-links a:hover {
        padding-left: 5px !important;
        opacity: 0.8 !important;
    }
    
    /* Verberg social icons in Juridisch sectie */
    .footer-content .footer-section:nth-child(4) .social-icons {
        display: none !important;
    }
    
    /* Social icons onderaan footer - na de kolommen */
    .footer-social-bottom {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 15px !important;
        padding: 20px 0 !important;
        margin-top: 10px !important;
        border-top: 1px solid rgba(255,255,255,0.1) !important;
    }
    
    .footer-social-bottom .social-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        background: rgba(255,255,255,0.1) !important;
        color: white !important;
        transition: all 0.3s ease !important;
        text-decoration: none !important;
    }
    
    .footer-social-bottom .social-icon:hover {
        background: rgba(255,255,255,0.2) !important;
        transform: translateY(-3px) !important;
    }
    
    /* Footer bottom */
    .footer-bottom {
        margin-top: 20px !important;
        padding-top: 20px !important;
        border-top: 1px solid rgba(255,255,255,0.1) !important;
    }
    
    .footer-bottom p {
        font-size: 12px !important;
        text-align: center !important;
        line-height: 1.6 !important;
    }
}

/* Extra kleine schermen - nog compacter maar uitgelijnd */
@media (max-width: 576px) {
    .footer-columns-wrapper {
        gap: 15px !important;
    }
    
    .footer-content .footer-section h3 {
        font-size: 14px !important;
        margin-bottom: 12px !important;
    }
    
    .footer-links a {
        font-size: 12px !important;
    }
    
    .footer-links li {
        margin-bottom: 8px !important;
    }
    
    .footer-social-bottom {
        gap: 12px !important;
    }
    
    .footer-social-bottom .social-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 14px !important;
    }
    
    .footer-bottom p {
        font-size: 11px !important;
        line-height: 1.5 !important;
    }
}

/* Tablet - betere spacing */
@media (min-width: 768px) and (max-width: 992px) {
    .footer-columns-wrapper {
        gap: 25px !important;
    }
    
    .footer-content .footer-section h3 {
        font-size: 16px !important;
    }
    
    .footer-links a {
        font-size: 14px !important;
    }
    
    .footer-social-bottom .social-icon {
        width: 44px !important;
        height: 44px !important;
        font-size: 18px !important;
    }
}