/*
Theme Name: Tilman Gerhardt - Evolvion
Theme URI: https://github.com/anywhere6135/tilman-gerhardt
Author: Webprinzip
Description: Custom theme für Dr. Tilman Gerhardt – Evolvion Leadership Advisory. Gutenberg-basiert mit ACF.
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 8.0
*/

/* ── Language Switcher ─────────────────────────────────── */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    color: var(--text-light, #999);
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.lang-btn::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--text-main, #1a1a1a);
    transition: width 0.25s ease;
}

.lang-btn:hover {
    color: var(--text-main, #1a1a1a);
}

.lang-btn:hover::after,
.lang-btn.lang-active::after {
    width: 100%;
}

.lang-btn.lang-active {
    color: var(--text-main, #1a1a1a);
}

.lang-divider {
    color: var(--line-color, #ddd);
    font-weight: 300;
    font-size: 0.7rem;
}

@media (max-width: 768px) {
    .lang-switcher {
        display: flex;
        gap: 4px;
    }
    .lang-btn {
        font-size: 0.7rem;
    }
    .lang-divider {
        font-size: 0.65rem;
    }
}
