/* ==============================
   HEADER / NAV
============================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, #0d0d0f 0%, #0b0b0c 100%);
    border-bottom: 1px solid #222;
}

.site-nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo img {
    height: 64px;              /* <<< WICHTIG: deutlich kleiner & edler */
    width: auto;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-logo:hover img {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.45);
}

/* NAVIGATION */
.site-menu {
    display: flex;
    gap: 26px;
    font-size: 0.95rem;
}

.site-menu a {
    color: #bdbdbd;
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    transition: color 0.2s ease;
}

/* Hover-Unterstrich (clean, nicht kitschig) */
.site-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #2e8b57;
    transition: width 0.25s ease;
}

.site-menu a:hover {
    color: #ffffff;
}

.site-menu a:hover::after {
    width: 100%;
}

/* ACTIVE LINK (optional per PHP setzen) */
.site-menu a.active {
    color: #ffffff;
    font-weight: 600;
}

.site-menu a.active::after {
    width: 100%;
}

/* MOBILE */
@media (max-width: 820px) {
    .site-nav {
        flex-direction: column;
        gap: 12px;
    }

    .site-menu {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 0.9rem;
    }

    .site-logo img {
        height: 56px;
    }
}
