* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #F8F9FB;
    color: #222;
    line-height: 1.6;
}

.site-header {
    background: #0F2747;
    border-bottom: 4px solid #C89A52;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-logo {
    color: white;
    text-decoration: none;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;

}

.main-nav {
    display: flex;
    gap: 18px;
    align-items: center;
}

.main-nav a {
    color: white;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 4px;
    font-weight: 600;
}

.main-nav a:hover {
    color: #0F2747;
    background: #C89A52;
}

main {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

footer {
    text-align: center;
    padding: 25px;
    margin-top: 50px;
    border-top: 1px solid #ddd;
}
.hero {
    background: white;
    border: 1px solid #E1E5EA;
    border-radius: 10px;
    padding: 60px 40px;
    box-shadow: 0 8px 24px rgba(15, 39, 71, 0.08);
}

.hero-content {
    max-width: 850px;
}

.eyebrow {
    color: #9A6D2F;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero h2 {
    color: #0F2747;
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 18px;
}

.hero-text {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.search-form {
    display: flex;
    gap: 12px;
    max-width: 760px;
}

.search-form input {
    flex: 1;
    min-width: 0;
    padding: 15px 18px;
    border: 1px solid #BFC7D1;
    border-radius: 6px;
    font-size: 1rem;
}

.search-form input:focus {
    outline: 3px solid rgba(200, 154, 82, 0.25);
    border-color: #C89A52;
}

.search-form button {
    border: 0;
    border-radius: 6px;
    padding: 15px 28px;
    background: #C89A52;
    color: #0F2747;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.search-form button:hover {
    background: #D6AC6A;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 700px) {
    .hero {
        padding: 40px 24px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .search-form {
        flex-direction: column;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.stat-card {
    background: white;
    border: 1px solid #E1E5EA;
    border-radius: 8px;
    padding: 26px 22px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(15, 39, 71, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(15, 39, 71, 0.12);
}

.stat-number {
    display: block;
    color: #0F2747;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    color: #9A6D2F;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (max-width: 850px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
.page-header {
    margin-bottom: 28px;
}

.page-header h2 {
    color: #0F2747;
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 12px;
}

.page-intro {
    color: #555;
    font-size: 1.05rem;
}

.content-card {
    background: white;
    border: 1px solid #E1E5EA;
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 6px 18px rgba(15, 39, 71, 0.06);
}

.content-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #E1E5EA;
}

.content-card-header h3 {
    color: #0F2747;
    font-size: 1.3rem;
}

.result-count {
    color: #9A6D2F;
    font-size: 0.9rem;
    font-weight: 700;
}

.empty-state {
    padding: 48px 20px;
    text-align: center;
    color: #666;
}

@media (max-width: 600px) {
    .content-card-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
}
/* Responsive Ergänzungen für style.css */

.nav-toggle {
    display: none;
}

@media (max-width: 900px) {
    .header-inner {
        position: relative;
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
        padding: 9px 12px;
        border: 1px solid rgba(255, 255, 255, 0.45);
        border-radius: 7px;
        background: transparent;
        color: inherit;
        font: inherit;
        font-weight: 700;
        cursor: pointer;
    }

    .nav-toggle-icon,
    .nav-toggle-icon::before,
    .nav-toggle-icon::after {
        display: block;
        width: 20px;
        height: 2px;
        border-radius: 2px;
        background: currentColor;
    }

    .nav-toggle-icon {
        position: relative;
    }

    .nav-toggle-icon::before,
    .nav-toggle-icon::after {
        position: absolute;
        left: 0;
        content: "";
    }

    .nav-toggle-icon::before {
        top: -6px;
    }

    .nav-toggle-icon::after {
        top: 6px;
    }

    .main-nav {
        display: none;
        width: 100%;
        padding-top: 14px;
    }

    .main-nav.is-open {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .main-nav a {
        display: block;
        padding: 10px 12px;
        border-radius: 6px;
    }

    .hero {
        padding-right: 20px;
        padding-left: 20px;
    }

    .hero-content h2 {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        padding-right: 16px;
        padding-left: 16px;
    }
}

@media (max-width: 560px) {
    .site-logo {
        max-width: calc(100% - 95px);
        font-size: 1.05rem;
    }

    .main-nav.is-open {
        grid-template-columns: 1fr;
    }

    .search-form {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .search-form input,
    .search-form button {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        min-height: auto;
    }
}
