/* Breadcrumb Navigation Styles */

.breadcrumb-container {
    padding: 0 20px;
    max-width: 1600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
    padding: 8px 0;
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    overflow: hidden;
    white-space: nowrap;
}

.breadcrumb-link {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
    font-weight: 400;
}

.breadcrumb-link:hover {
    color: rgba(0, 0, 0, 0.8);
    opacity: 0.9;
    text-decoration: underline;
}

.breadcrumb-link:focus {
    outline: 2px solid var(--orange, #fb4d17);
    outline-offset: 2px;
    border-radius: 2px;
}

.breadcrumb-current {
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.breadcrumb-separator {
    color: rgba(0, 0, 0, 0.4);
    margin: 0 6px;
    user-select: none;
    font-weight: 300;
}

/* Dark background variant - voor gebruik op donkere achtergronden */
.breadcrumb.dark {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb.dark .breadcrumb-link {
    color: var(--orange, #fb4d17);
}

.breadcrumb.dark .breadcrumb-link:hover {
    color: var(--white, #ffffff);
    opacity: 0.9;
}

.breadcrumb.dark .breadcrumb-current {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb.dark .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

/* Light background variant */
.breadcrumb.light {
    color: rgba(0, 0, 0, 0.7);
}

.breadcrumb.light .breadcrumb-link {
    color: var(--dark-teal, #0d2c3e);
}

.breadcrumb.light .breadcrumb-link:hover {
    color: var(--orange, #fb4d17);
}

.breadcrumb.light .breadcrumb-current {
    color: rgba(0, 0, 0, 0.9);
}

.breadcrumb.light .breadcrumb-separator {
    color: rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumb-container {
        padding: 0 20px;
    }
    
    .breadcrumb {
        font-size: 0.7rem;
        padding: 6px 0;
        margin-bottom: 10px;
    }
    
    .breadcrumb-link,
    .breadcrumb-current {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 120px;
    }
}

/* Accessibility */
.breadcrumb[aria-label] {
    /* Ensure screen readers can identify this as navigation */
}

.breadcrumb-link:focus-visible {
    outline: 2px solid var(--orange, #fb4d17);
    outline-offset: 2px;
    border-radius: 2px;
}
