/* ICZO Custom Styles - Rustig & Professioneel */

:root {
    --iczo-primary: #314e6f; /* Blauw */
    --iczo-secondary: #FFA500; /* Oranje/Geel */
    --iczo-red: #DC143C; /* Rood voor logo accent */
    --iczo-dark: #1a1a1a;
    --iczo-light: #f8f9fa;
    --iczo-text: #333;
    --iczo-text-light: #666;
    --spacing-section: 6rem;
}

/* Typography */
body {
    color: var(--iczo-text);
    line-height: 1.7;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.3;
    color: var(--iczo-text);
}

/* Override Bootstrap Primary Color */
.bg-primary {
    background-color: var(--iczo-primary) !important;
}

.btn-primary {
    background-color: var(--iczo-primary);
    border-color: var(--iczo-primary);
    font-weight: 400;
    padding: 0.6rem 2rem;
    border-radius: 0;
}

.btn-primary:hover {
    background-color: #263d58;
    border-color: #263d58;
}

.btn-outline-primary {
    color: var(--iczo-primary);
    border-color: var(--iczo-primary);
    font-weight: 400;
    padding: 0.6rem 2rem;
    border-radius: 0;
    border-width: 1px;
}

.btn-outline-primary:hover {
    background-color: var(--iczo-primary);
    border-color: var(--iczo-primary);
    color: white;
}

.text-primary {
    color: var(--iczo-primary) !important;
}

/* Hero Section - Met achtergrondafbeelding */
.hero-section {
    background-color: var(--iczo-primary);
    padding-top: 100px;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
}

/* Hero Section - Smaller voor detail pagina */
.hero-section-small {
    min-height: 200px;
    padding-top: 100px;
    padding-bottom: 2rem;
}

.hero-headline-small {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/themes/iczo/v1/assets/images/placeholder.png.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(49, 78, 111, 0.45) 0%, rgba(49, 78, 111, 0.4) 100%);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-logo {
    max-height: 80px;
    margin-bottom: 1rem;
    opacity: 0.95;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

/* Hero Content - Eye Catcher */
.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-headline {
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
    margin-bottom: 1.25rem;
}

.hero-subheadline {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-cta .btn {
    font-weight: 500;
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-cta .btn-light {
    background-color: white;
    color: var(--iczo-primary);
    border: none;
}

.hero-cta .btn-light:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-cta .btn-outline-light {
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.8);
    color: white;
}

.hero-cta .btn-outline-light:hover {
    background-color: white;
    color: var(--iczo-primary);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Infomomenten Cards */
.hero-infomoment-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.hero-infomoment-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-infomoment-date {
    font-size: 0.85rem;
    opacity: 0.9;
}

.hero-infomoment-titel {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.hero-infomoment-onderwerpen {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

.hero-infomoment-card .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    transition: all 0.3s ease;
}

.hero-infomoment-card .btn-outline-light:hover {
    background-color: white;
    color: var(--iczo-primary);
    border-color: white;
}

/* Page Header */
.page-header {
    padding-top: 50px !important;
    padding-bottom: 2rem;
    background-color: var(--iczo-primary);
}

/* Sections - Meer whitespace */
.section-intro,
.section-opleidingen,
.section-waarden {
    padding-top: var(--spacing-section);
    padding-bottom: var(--spacing-section);
}

/* Opleiding Card - Rustiger */
.opleiding-card {
    transition: box-shadow 0.2s ease;
    border: 1px solid #e9ecef;
    height: 100%;
    border-radius: 0;
    background: white;
}

.opleiding-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
    border-color: #dee2e6;
}

.opleiding-card .card-body {
    padding: 2rem;
}

.opleiding-card .card-title {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.opleiding-card .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--iczo-text-light);
    margin-bottom: 1.5rem;
}

.opleiding-image-wrapper {
    position: relative;
    overflow: hidden;
}

.opleiding-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #e9ecef;
}

/* Image badges overlay */
.opleiding-image-badges {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    z-index: 1;
}

.opleiding-image-badge {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--iczo-text);
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.opleiding-image-badge i {
    font-size: 0.85rem;
    color: var(--iczo-primary);
}

.opleiding-badge-location {
    border-left: 3px solid var(--iczo-primary);
}

.opleiding-badge-duration {
    border-left: 3px solid var(--iczo-secondary);
}

.opleiding-badge {
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--iczo-text-light);
    margin-bottom: 0.5rem;
}

.opleiding-card .btn {
    border-radius: 0;
    font-weight: 400;
    text-transform: none;
}

/* Navbar - Gedesigned */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    padding: 0;
    background-color: white !important;
    border-bottom: 1px solid #e9ecef !important;
    transition: box-shadow 0.3s ease;
    top: 80px;
}

@media (max-width: 991px) {
    .navbar {
        top: 0;
    }
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.navbar .container {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-brand {
    font-weight: 400;
    color: var(--iczo-text) !important;
    padding: 0.5rem 0 !important;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
    text-decoration: none;
}

.navbar-brand:hover {
    transform: translateY(-1px);
}

.navbar-brand img {
    transition: transform 0.2s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.brand-name {
    font-size: 1.35rem;
    letter-spacing: 1.5px;
    font-weight: 400;
    line-height: 1.2;
}

.brand-slogan {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    font-weight: 300;
    color: var(--iczo-text-light);
    line-height: 1.2;
    margin-top: 0.15rem;
}

.nav-link {
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1.25rem !important;
    letter-spacing: 0.3px;
    color: var(--iczo-text) !important;
    position: relative;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin: 0 0.25rem;
}

.nav-link.navbar-account-btn {
    color: white !important;
    text-transform: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 0;
    height: 2px;
    background-color: var(--iczo-primary);
    transition: all 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 2.5rem);
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover {
    color: var(--iczo-primary) !important;
    background-color: rgba(49, 78, 111, 0.03);
    border-radius: 4px;
}

.nav-link.navbar-account-btn:hover {
    color: white !important;
    background-color: #263d58 !important;
}

.nav-link.active {
    color: var(--iczo-primary) !important;
    font-weight: 500;
    background-color: rgba(49, 78, 111, 0.05);
    border-radius: 4px;
}

/* Navbar Account Button */
.navbar-account-btn {
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(49, 78, 111, 0.2);
    color: white !important;
}

.navbar-account-btn:hover,
.navbar-account-btn:focus,
.navbar-account-btn:active,
.navbar-account-btn.show {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 78, 111, 0.3);
    color: white !important;
    background-color: #263d58 !important;
    border-color: #263d58 !important;
}

.navbar-account-btn i {
    font-size: 1.1rem;
}

@media (max-width: 991px) {
    .navbar-account-btn {
        margin-top: 0.75rem;
        width: 100%;
        justify-content: center;
    }
}

/* Navbar Account Dropdown */
.navbar-account-btn.dropdown-toggle::after {
    margin-left: 0.5rem;
    border-top-color: white;
    border-bottom-color: white;
    transition: transform 0.2s ease;
}

.navbar-account-btn.dropdown-toggle[aria-expanded="true"]::after,
#mijnIczoDropdownContainer:hover .navbar-account-btn.dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Hover dropdown - show on hover */
#mijnIczoDropdownContainer:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Mijn ICZO Button - Ensure good readability */
.navbar-account-btn {
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.navbar-account-btn i {
    font-size: 1.15rem;
    vertical-align: middle;
}

/* Dropdown menu styling for better readability */
.navbar-account-btn + .dropdown-menu,
#mijnIczoDropdown + .dropdown-menu {
    min-width: 220px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.navbar-account-btn + .dropdown-menu .dropdown-item,
#mijnIczoDropdown + .dropdown-menu .dropdown-item {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.navbar-account-btn + .dropdown-menu .dropdown-item:hover,
#mijnIczoDropdown + .dropdown-menu .dropdown-item:hover {
    background-color: rgba(49, 78, 111, 0.08);
    color: var(--iczo-primary);
}

/* Legacy support */
#mijnIczoDropdownContainer .dropdown-menu {
    min-width: 220px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

#mijnIczoDropdownContainer .dropdown-item {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

#mijnIczoDropdownContainer .dropdown-item:hover {
    background-color: rgba(49, 78, 111, 0.08);
    color: var(--iczo-primary);
}

#mijnIczoDropdownContainer .dropdown-item i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.navbar .dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.navbar .dropdown-item:hover {
    background-color: rgba(49, 78, 111, 0.1);
    color: var(--iczo-primary);
}

.navbar .dropdown-item i {
    width: 1.25rem;
    text-align: center;
}

/* Navbar Search - Gedesigned */
.navbar-search {
    position: relative;
}

.navbar-search .input-group {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

.navbar-search .input-group:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.navbar-search .form-control {
    background-color: #f8f9fa;
    border: none;
    border-right: 1px solid #e9ecef;
    color: var(--iczo-text);
    font-size: 0.9rem;
    padding: 0.6rem 1.25rem;
    transition: all 0.3s ease;
}

.navbar-search .form-control::placeholder {
    color: #9ca3af;
    font-weight: 300;
}

.navbar-search .form-control:focus {
    background-color: white;
    color: var(--iczo-text);
    box-shadow: none;
    border-right-color: #e9ecef;
}

.navbar-search .btn-outline-light {
    border: none;
    color: var(--iczo-text);
    background-color: #f8f9fa;
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
}

.navbar-search .btn-outline-light:hover {
    background-color: var(--iczo-primary);
    color: white;
}

.navbar-search .btn-outline-light:focus {
    box-shadow: none;
}

/* Social Media Links in Navbar - Gedesigned */
.navbar .nav-link[aria-label] {
    color: var(--iczo-text) !important;
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 0.75rem !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 0.25rem;
}

.navbar .nav-link[aria-label]:hover {
    opacity: 1;
    color: white !important;
    background-color: var(--iczo-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 78, 111, 0.3);
}

.navbar .nav-link[aria-label]::after {
    display: none;
}

.navbar-toggler {
    border: 2px solid #e9ecef;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    border-color: var(--iczo-primary);
    background-color: rgba(49, 78, 111, 0.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(49, 78, 111, 0.15);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dropdown Menu - Gedesigned */
.dropdown-menu {
    border-radius: 6px;
    border: 1px solid #e9ecef;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    margin-top: 0.75rem;
    padding: 0.5rem 0;
    min-width: 220px;
}

.dropdown-item {
    font-weight: 400;
    font-size: 0.9rem;
    padding: 0.65rem 1.25rem;
    transition: all 0.2s ease;
    color: var(--iczo-text);
    position: relative;
}

.dropdown-item:not(.dropdown-divider) {
    margin: 0.15rem 0.5rem;
    border-radius: 4px;
}

.dropdown-item:hover {
    background-color: rgba(49, 78, 111, 0.08);
    color: var(--iczo-primary);
    padding-left: 1.5rem;
}

.dropdown-item.active {
    background-color: var(--iczo-primary);
    color: white;
    font-weight: 500;
}

.dropdown-divider {
    margin: 0.5rem 0;
    opacity: 0.3;
}

.dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Forms - Rustiger */
.form-control,
.form-select {
    border-radius: 0;
    border-color: #dee2e6;
    padding: 0.6rem 0.75rem;
    font-weight: 300;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--iczo-primary);
    box-shadow: 0 0 0 0.15rem rgba(49, 78, 111, 0.1);
}

.form-label {
    font-weight: 400;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--iczo-text);
}

/* Footer */
footer {
    margin-top: auto;
}

footer a:hover {
    color: var(--iczo-secondary) !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* News Ticker - Alleen desktop */
.news-ticker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1032;
    background: linear-gradient(135deg, var(--iczo-primary) 0%, #263d58 100%);
    border-bottom: 2px solid #fa1314;
    height: 40px;
    overflow: hidden;
}

.news-ticker-container {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: 100%;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 1rem;
}

.news-ticker-label {
    background-color: #fa1314;
    color: white;
    padding: 0 1.25rem;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 2;
}

.news-ticker-label i {
    font-size: 0.9rem;
}

a.news-ticker-label {
    color: white;
    transition: opacity 0.2s ease;
}

a.news-ticker-label:hover {
    color: white;
    opacity: 0.9;
}

.news-ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-ticker-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.news-ticker-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 300;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    white-space: nowrap;
}

.news-ticker-item.active {
    opacity: 1;
    z-index: 1;
}

.ticker-badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 1rem;
    white-space: nowrap;
}

.ticker-link {
    color: #fa1314;
    text-decoration: none;
    font-weight: 500;
    margin-left: 1rem;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.ticker-link:hover {
    color: white;
}

/* Pause ticker on hover */
.news-ticker:hover .news-ticker-wrapper {
    animation-play-state: paused;
}

/* Topbar - Secundair menu */
.topbar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1031;
    font-size: 0.875rem;
}

.topbar-link {
    color: var(--iczo-text-light);
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    font-weight: 400;
}

.topbar-link:hover {
    color: var(--iczo-primary);
}

.topbar-search .form-control {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 4px 0 0 4px;
    font-size: 0.85rem;
    padding: 0.35rem 0.75rem;
    height: 32px;
}

.topbar-search .form-control:focus {
    border-color: var(--iczo-primary);
    box-shadow: 0 0 0 0.15rem rgba(49, 78, 111, 0.1);
}

.topbar-search .btn {
    border-radius: 0 4px 4px 0;
    border: 1px solid #dee2e6;
    border-left: none;
    height: 32px;
    padding: 0 0.75rem;
}

.topbar-search .btn:hover {
    color: var(--iczo-primary);
}

.topbar-social {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.topbar-social-link {
    color: var(--iczo-text-light);
    text-decoration: none;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.topbar-social-link:hover {
    color: white;
    background-color: var(--iczo-primary);
    transform: translateY(-2px);
}

/* Body padding for fixed navbar + topbar + ticker */
body {
    padding-top: 160px;
}

@media (max-width: 991px) {
    body {
        padding-top: 80px;
    }
}

/* Navbar alignment improvements */
.navbar-nav {
    align-items: center;
}

@media (max-width: 991px) {
    .navbar-nav {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .navbar-search {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    .navbar .nav-link[aria-label] {
        display: inline-flex;
        margin: 0.5rem 0.5rem 0.5rem 0;
    }
}

/* Section spacing utilities */
.py-lg-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

@media (max-width: 768px) {
    .py-lg-6 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

/* Utility Classes */
.text-warning-custom {
    color: var(--iczo-secondary) !important;
}

.bg-warning-custom {
    background-color: var(--iczo-secondary) !important;
}

/* Card Shadows - Subtieler */
.card {
    box-shadow: none;
    border: 1px solid #e9ecef;
}

.shadow-lg {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
}

/* Container max-width */
.container {
    max-width: 1200px;
}

/* Footer - Rustiger */
footer {
    background-color: #2c2c2c !important;
    padding: 4rem 0 2rem 0;
}

footer h5 {
    font-weight: 400;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: #FFF;
}

footer p,
footer a {
    font-size: 0.9rem;
    font-weight: 300;
}

footer a:hover {
    color: white !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    :root {
        --spacing-section: 4rem;
    }
    
    .hero-section {
        padding-top: 100px;
        padding-bottom: 2rem;
        min-height: 320px;
    }
    
    .hero-headline {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta .btn {
        width: 100%;
        font-size: 1rem;
    }
    
    .hero-cta .btn-light {
        margin-right: 0 !important;
        margin-bottom: 0.75rem !important;
    }
    
    .section-intro,
    .section-opleidingen,
    .section-waarden,
    .section-actueel {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .section-infomomenten {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .infomoment-card {
        padding: 1.5rem;
    }
    
    .actueel-card {
        padding: 1.5rem;
    }
}

/* Loading Animation */
.spinner-border-primary {
    border-color: var(--iczo-primary);
    border-right-color: transparent;
}

/* Infomomenten Section - Gebruikt actueel styling */
.section-infomomenten {
    background-color: #f8f9fa;
}

/* Actueel Section */
.actueel-card {
    padding: 2rem;
    border: 1px solid #e9ecef;
    background: white;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.actueel-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-color: #dee2e6;
}

.actueel-card a {
    color: inherit;
    display: block;
    height: 100%;
}

.actueel-card a:hover {
    color: inherit;
}

.actueel-date {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.actueel-titel {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--iczo-text);
    margin-bottom: 0.75rem;
}

.actueel-beschrijving {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #6c757d;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.empty-state h3 {
    font-weight: 300;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.empty-state p {
    font-weight: 300;
    color: #999;
}

/* Input Group - Rustiger */
.input-group-text {
    border-radius: 0;
    background-color: white;
    border-color: #dee2e6;
}

.input-group .form-control {
    border-left: 0;
}

.input-group .form-control:focus {
    border-left: 0;
}

/* Alphabet Filter Buttons */
.alphabet-btn {
    min-width: 36px;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.alphabet-btn:hover {
    background-color: var(--iczo-primary);
    border-color: var(--iczo-primary);
    color: white;
    transform: translateY(-1px);
}

.alphabet-btn.active {
    background-color: var(--iczo-primary);
    border-color: var(--iczo-primary);
    color: white;
}

/* Active Filters */
#activeFilters {
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
    margin-top: 1rem;
}

#activeFiltersList .badge {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
}

#activeFiltersList .badge .btn-close {
    margin-left: 0.5rem;
    opacity: 0.8;
    font-size: 0.7rem;
}

#activeFiltersList .badge .btn-close:hover {
    opacity: 1;
}

/* Opleidingen List - Better spacing */
#alle-opleidingen {
    margin-top: 2rem;
}

/* Opleiding Detail Page - HTML Content Styling */
.opleiding-html-content {
    line-height: 1.8;
}

.opleiding-html-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.opleiding-html-content ul,
.opleiding-html-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.opleiding-html-content li {
    margin-bottom: 0.5rem;
}

.opleiding-html-content p {
    margin-bottom: 1rem;
}

.opleiding-html-content h3,
.opleiding-html-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--iczo-text);
}

.opleiding-html-content strong {
    color: var(--iczo-text);
    font-weight: 500;
}

.opleiding-html-content a {
    color: var(--iczo-primary);
    text-decoration: none;
}

.opleiding-html-content a:hover {
    text-decoration: underline;
}

/* Mobile Inschrijf Banner - Sticky onderaan op mobiel */
.mobile-inschrijf-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--iczo-primary) 0%, #263d58 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1030;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.mobile-inschrijf-banner .btn {
    white-space: nowrap;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

/* Extra padding voor body op mobiel zodat content niet achter banner komt */
@media (max-width: 767px) {
    body {
        padding-bottom: 80px;
    }
}

/* Accordion Styling voor Opleiding Detail */
.accordion-button {
    font-weight: 500;
    color: var(--iczo-text);
    background-color: white;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--iczo-primary);
    background-color: white;
    box-shadow: none;
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: 0 0 0 0.25rem rgba(49, 78, 111, 0.1);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23314e6f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23314e6f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.accordion-body {
    padding: 1.5rem;
}

.accordion-item {
    border-radius: 8px;
    overflow: hidden;
}

/* Opleiding Info Section - Subtiele informatie weergave */
.opleiding-info-section {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.opleiding-info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.opleiding-info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.opleiding-info-row:first-child {
    padding-top: 0;
}

.opleiding-info-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--iczo-text);
    min-width: 80px;
    flex-shrink: 0;
}

.opleiding-info-label i {
    color: var(--iczo-primary);
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

.opleiding-info-value {
    font-size: 0.875rem;
    color: var(--iczo-text-light);
    text-align: right;
    flex-grow: 1;
    margin-left: 1rem;
}

@media (max-width: 576px) {
    .opleiding-info-row {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .opleiding-info-value {
        text-align: left;
        margin-left: 1.75rem;
    }
}

/* Stand Firma Grid - Blokken layout */
.stand-firma-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 0;
}

.stand-firma-item {
    background-color: white;
    border: 1px solid #e9ecef;
    padding: 1.5rem;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.stand-firma-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: var(--iczo-primary);
    transform: translateY(-2px);
}

.stand-firma-datum {
    color: var(--iczo-primary);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.stand-firma-bedrijf {
    color: var(--iczo-text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .stand-firma-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .stand-firma-item {
        padding: 1.25rem;
    }
    
    .stand-firma-datum {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .stand-firma-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Sidebar Navigation Styling */
.list-group-item {
    border: none;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}

.list-group-item:hover {
    background-color: rgba(49, 78, 111, 0.05);
    color: var(--iczo-primary);
}

.list-group-item.active {
    background-color: var(--iczo-primary);
    color: white;
    font-weight: 500;
}

.list-group-item.active:hover {
    background-color: #263d58;
    color: white;
}

.list-group-item i {
    width: 1.25rem;
    text-align: center;
}

/* Inschrijf Form Styling */
#inschrijfForm .form-label,
#profileForm .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

#inschrijfForm .form-text,
#profileForm .form-text {
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

#inschrijfForm .was-validated .form-control:invalid ~ .invalid-feedback,
#inschrijfForm .was-validated .form-select:invalid ~ .invalid-feedback,
#inschrijfForm .was-validated .form-check-input:invalid ~ .invalid-feedback,
#profileForm .was-validated .form-control:invalid ~ .invalid-feedback,
#profileForm .was-validated .form-select:invalid ~ .invalid-feedback,
#profileForm .was-validated .form-check-input:invalid ~ .invalid-feedback,
#registerForm .was-validated .form-control:invalid ~ .invalid-feedback,
#registerForm .was-validated .form-select:invalid ~ .invalid-feedback,
#registerForm .was-validated .form-check-input:invalid ~ .invalid-feedback {
    display: block;
}

#inschrijfForm .was-validated .form-control:invalid,
#inschrijfForm .was-validated .form-select:invalid,
#profileForm .was-validated .form-control:invalid,
#profileForm .was-validated .form-select:invalid,
#registerForm .was-validated .form-control:invalid,
#registerForm .was-validated .form-select:invalid {
    border-color: #dc3545;
}

#inschrijfForm .was-validated .form-control:valid,
#inschrijfForm .was-validated .form-select:valid,
#profileForm .was-validated .form-control:valid,
#profileForm .was-validated .form-select:valid,
#registerForm .was-validated .form-control:valid,
#registerForm .was-validated .form-select:valid {
    border-color: #198754;
}

#inschrijfForm .was-validated .form-check-input:invalid,
#profileForm .was-validated .form-check-input:invalid,
#registerForm .was-validated .form-check-input:invalid {
    border-color: #dc3545;
}

#inschrijfForm .was-validated .form-check-input:valid,
#profileForm .was-validated .form-check-input:valid,
#registerForm .was-validated .form-check-input:valid {
    border-color: #198754;
}

/* KMO-Portefeuille Card */
.card.bg-light {
    background-color: #f8f9fa !important;
}

/* Helper Information Cards */
.sticky-top .card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-top .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

/* Homepage - Institute right list (opsomming met check-icoon) */
.institute-right-list ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.institute-right-list ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.institute-right-list ul li::before {
    content: "\F26B";
    font-family: "bootstrap-icons";
    color: var(--iczo-primary);
    margin-right: 0.5rem;
    flex-shrink: 0;
}

/* Homepage - Nieuwsbrief sectie */
.section-nieuwsbrief {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

/* Homepage - Institute fallback list (geen bullets) */
.institute-fallback-list {
    list-style: none;
    padding-left: 0;
}

/* Button - white-space nowrap */
.btn-nowrap {
    white-space: nowrap;
}

/* Contactpagina */
.contact-page .contact-page-map iframe {
    width: 100%;
    height: 100%;
}

.contact-page .contact-page-detail-icon {
    flex-shrink: 0;
    line-height: 1;
    padding-top: 0.15rem;
}