/* ========================================
   CUSTOM FOOTER STYLES
   ======================================== */

/* Reset Divi footer defaults */
#main-footer.custom-footer {
    background: none;
    padding: 0;
}

#main-footer.custom-footer #footer-widgets,
#main-footer.custom-footer #et-footer-nav,
#main-footer.custom-footer #footer-bottom {
    display: none;
}

/* ---- Footer Main ---- */
.footer-main {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 70px 0 50px;
    color: #c4c9d4;
    font-size: 15px;
    line-height: 1.8;
}

/* ---- Grid Layout ---- */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
    gap: 40px;
}

/* ---- Headings ---- */
.footer-heading {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 12px;
    position: relative;
    letter-spacing: 0.5px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #e94560, #0f3460);
    border-radius: 2px;
}

/* ---- About Kolom ---- */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    max-height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.footer-description {
    color: #a0a8b8;
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.9;
}

/* ---- Social Links ---- */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #c4c9d4;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #e94560;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(233, 69, 96, 0.3);
}

.social-link .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    line-height: 1;
}

/* ---- Navigatie Links ---- */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 10px;
    padding: 0;
}

.footer-nav li::before {
    display: none;
}

.footer-nav a {
    color: #a0a8b8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-nav a::before {
    content: '\203A';
    margin-right: 8px;
    color: #e94560;
    font-weight: bold;
    transition: margin 0.3s ease;
}

.footer-nav a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* ---- Contact Lijst ---- */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 14px;
    padding: 0;
}

.footer-contact-list li::before {
    display: none;
}

.footer-contact-list .dashicons {
    color: #e94560;
    font-size: 18px;
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: #a0a8b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: #ffffff;
}

/* ---- Openingstijden ---- */
.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.hours-table td:first-child {
    color: #c4c9d4;
    font-weight: 500;
}

.hours-table td:last-child {
    text-align: right;
    color: #a0a8b8;
}

.hours-table tr.closed td {
    color: #e94560;
    opacity: 0.7;
}

/* ---- Footer Bottom Bar ---- */
.footer-bottom {
    background: #111827;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    color: #6b7280;
    font-size: 13px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #e94560;
}

.footer-bottom-links .separator {
    color: #374151;
    font-size: 12px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }

    .footer-main {
        padding: 50px 0 40px;
    }
}

@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-heading {
        margin-bottom: 18px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}
