/**
 * Voices Footer Styles
 * 
 * Styling voor voices.be footer met meertalige kolommen
 * Volgt het font van .voices-header-nav .elementor-nav-menu li a
 */

/* Footer Container */
.voices-footer {
    background: #fff;
    width: 100%;
}

.voices-footer-container {
    max-width: 1200px; /* Boxed content, same as other containers */
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Breadcrumbs bovenaan footer (over hele breedte) */
.voices-footer-breadcrumbs {
    width: 100%;
}

.voices-footer-breadcrumbs .voices-breadcrumbs {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px 0 0;
}

.voices-footer-content {
    width: 100%;
}

/* Footer Columns */
.voices-footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Default: 3 kolommen (zonder telefonie) */
    gap: 40px;
}

/* 4 kolommen wanneer telefonie actief is */
.voices-footer-has-telefonie .voices-footer-columns {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    /* Zonder telefonie: 3 kolommen, met telefonie: 3 kolommen (responsive) */
    .voices-footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .voices-footer-has-telefonie .voices-footer-columns {
        grid-template-columns: repeat(3, 1fr); /* Bij kleinere schermen: 3 kolommen ook met telefonie */
    }
}

@media (max-width: 768px) {
    /* Zonder telefonie: 2 kolommen, met telefonie: 2 kolommen */
    .voices-footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px; /* Compactere gap op tablet/mobile */
    }
    
    .voices-footer-has-telefonie .voices-footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Verbeterde padding op tablet/mobile */
    .voices-footer-container {
        padding: 0 16px;
    }
    
    .voices-footer-breadcrumbs .voices-breadcrumbs {
        padding: 0 16px 0 0;
    }
    
    /* Betere spacing voor kolommen */
    .voices-footer-column {
        margin-bottom: 8px;
    }
    
    /* Kleinere headings op mobile */
    .voices-footer-column h4 {
        font-size: 15px;
        padding-top: 12px;
        padding-bottom: 12px;
        margin-bottom: 4px;
    }
    
    /* Betere link spacing op mobile */
    .voices-footer-links {
        gap: 8px;
    }
    
    /* Grotere touch targets voor links */
    .voices-footer-links li a {
        padding: 8px 0;
        min-height: 44px; /* Minimum touch target size */
        display: flex;
        align-items: center;
    }
}

@media (max-width: 480px) {
    /* Alle kolommen onder elkaar op mobiel */
    .voices-footer-columns {
        grid-template-columns: 1fr;
        gap: 32px; /* Meer ruimte tussen kolommen op kleine schermen */
    }
    
    .voices-footer-has-telefonie .voices-footer-columns {
        grid-template-columns: 1fr;
    }
    
    /* Compactere padding op kleine schermen */
    .voices-footer-container {
        padding: 0 16px;
    }
    
    /* Kleinere headings op zeer kleine schermen */
    .voices-footer-column h4 {
        font-size: 14px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    /* Compactere link spacing */
    .voices-footer-links {
        gap: 6px;
    }
    
    /* Betere leesbaarheid voor contact informatie */
    .voices-footer-column-4 {
        margin-top: 8px;
    }
    
    /* Reviews widget op mobile */
    .voices-footer-column-3 .voices-reviews-widget {
        margin-top: 8px;
    }
    
    /* Opening hours op mobile */
    .voices-footer-column-3 h4 + ul.voices-footer-links {
        margin-top: 4px;
    }
    
    /* Betere spacing tussen secties in dezelfde kolom */
    .voices-footer-column h4 + nav,
    .voices-footer-column h4 + ul {
        margin-top: 0;
    }
    
    /* Extra ruimte tussen verschillende h4 secties in dezelfde kolom */
    .voices-footer-column h4:not(:first-child) {
        margin-top: 24px;
    }
    
    /* Copyright styling op mobile */
    .voices-footer-copyright {
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid #e0e0e0;
    }
    
    .voices-footer-copyright p {
        font-size: 12px;
        margin-bottom: 12px;
        line-height: 1.5;
    }
    
    /* Legal links op mobile - verticaal gestapeld */
    .voices-footer-legal-links {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .voices-footer-legal-links li a {
        font-size: 12px;
        padding: 8px 0;
        min-height: 44px; /* Minimum touch target size */
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Footer Column */
.voices-footer-column {
    display: flex;
    flex-direction: column;
}

.voices-footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    text-transform: none; /* Normaal lettertype, geen uppercase */
    /* Volg font van header nav menu */
    font-family: inherit; /* Inherits from body, same as header nav */
    line-height: 1.2;
}

/* Footer Links */
.voices-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.voices-footer-links li {
    margin: 0;
}

.voices-footer-links li a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase; /* Zelfde als header nav menu links */
    /* Volg font van header nav menu */
    font-family: inherit; /* Inherits from body, same as header nav */
    font-weight: 500; /* Zelfde als header nav menu */
    transition: color 0.3s ease;
    display: inline-block;
    line-height: 1.2; /* Zelfde als header nav menu */
}

.voices-footer-links li a:hover {
    color: #eb3683;
}

/* Footer Copyright */
.voices-footer-copyright {
    text-align: center;
}

.voices-footer-copyright p {
    margin: 0 0 10px 0;
    color: #666;
    font-size: 13px;
    /* Volg font van header nav menu */
    font-family: inherit; /* Inherits from body, same as header nav */
    line-height: 1.4;
}

/* Legal Links */
.voices-footer-legal-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.voices-footer-legal-links li {
    margin: 0;
}

.voices-footer-legal-links li a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    /* Volg font van header nav menu */
    font-family: inherit; /* Inherits from body, same as header nav */
    font-weight: 400;
    transition: color 0.3s ease;
}

.voices-footer-legal-links li a:hover {
    color: #eb3683;
}

/* Contact informatie styling */
.voices-footer-column-4 {
    /* Contact kolom krijgt extra styling indien nodig */
}

.voices-footer-column-4 .contact_voices {
    /* Contact shortcode styling */
}

/* Tablet optimalisaties */
@media (min-width: 481px) and (max-width: 768px) {
    /* Betere gap tussen kolommen op tablet */
    .voices-footer-columns {
        gap: 24px;
    }
    
    /* Compactere headings op tablet */
    .voices-footer-column h4 {
        font-size: 15px;
        padding-top: 12px;
        padding-bottom: 12px;
    }
    
    /* Betere link spacing */
    .voices-footer-links {
        gap: 8px;
    }
    
    /* Grotere touch targets */
    .voices-footer-links li a {
        padding: 6px 0;
        min-height: 40px;
        display: flex;
        align-items: center;
    }
}

