/* =============================================
   WORDPRESS THEME ADDITIONS
   Contact feedback + toast enhancements
   ============================================= */

/* Contact form feedback messages */
.contact-feedback {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    display: none;
    line-height: 1.6;
}

.contact-feedback--success {
    background: #edf7f0;
    border: 1.5px solid #2a7a3b;
    color: #2a7a3b;
}

.contact-feedback--error {
    background: #fdf0f0;
    border: 1.5px solid #C41E24;
    color: #C41E24;
}

/* WordPress nav menu overrides */
.nav-desktop-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-desktop-list li { position: relative; }

.nav-desktop-list a {
    display: block;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #2d2d2d;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-desktop-list a:hover,
.nav-desktop-list .current-menu-item > a,
.nav-desktop-list .current_page_item > a {
    color: #0A8A7B;
    background: #e6f5f3;
}

/* Sub-menus */
.nav-desktop-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid rgba(10,138,123,0.15);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 100;
    list-style: none;
}

.nav-desktop-list li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile nav menu from WP */
.nav-mobile-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-mobile-list a {
    display: block;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    text-decoration: none;
}

.nav-mobile-list a:hover { color: #0A8A7B; background: #e6f5f3; }

/* Custom logo fixes */
.custom-logo-link { display: flex; align-items: center; }
.custom-logo-link img { height: 50px; width: auto; }

/* WordPress pagination */
.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1.5px solid #e0e0e0;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 3px;
}

.page-numbers.current,
.page-numbers:hover {
    background: #0A8A7B;
    border-color: #0A8A7B;
    color: #fff;
}

/* Responsive: kempen cards grid on mobile */
@media (max-width: 768px) {
    .kempen-cards-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Scroll progress bar base */
body { position: relative; }
