/* asset/css/breadcrumbs.css */
/* Adapted from tools-common.css for global use */

.tool-header {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    width: 100%;
    position: relative;
    z-index: 20;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.brand-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.brand-text {
    font-family: 'Teko', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(90deg, var(--color-accent-orange), #ffca28, var(--color-accent-orange));
    text-shadow: 0 0 10px rgba(255, 85, 0, 0.3);
    transition: all 0.3s ease;
}

.brand-link:hover .brand-text {
    text-shadow: 0 0 15px rgba(255, 85, 0, 0.6);
    letter-spacing: 0.25em;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-family: 'Noto Sans JP', sans-serif;
}

.breadcrumb a {
    color: #888;
    /* fallback */
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--color-accent-orange);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.2);
}

.breadcrumb .current {
    color: #fff;
    color: var(--color-text);
    font-weight: 500;
}

/* Light Theme Adjustments */
body.theme-light .tool-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, transparent 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.theme-light .breadcrumb a {
    color: rgba(0, 0, 0, 0.5);
}

body.theme-light .breadcrumb a:hover {
    color: var(--color-accent-orange);
}

body.theme-light .breadcrumb .separator {
    color: rgba(0, 0, 0, 0.2);
}

body.theme-light .breadcrumb .current {
    color: var(--color-text-dark);
}

/* Responsive */
@media (max-width: 600px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}