/* Wildboerse.de — Theme ueber Bootstrap 5 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --gruen-dunkel: #1a3c0a;
    --gruen: #2d5016;
    --gruen-hell: #3d6b1e;
    --braun: #6b3a1f;
    --braun-hell: #8b5e3c;
    --gold: #c8922a;
    --gold-hell: #e8b84d;
    --beige: #f3f0e8;
    --beige-hell: #f8f7f4;
    --text: #2c2c2c;
    --text-muted: #6b6b6b;
    --warm-cream: #faf5ec;
    --color-primary: var(--gruen);
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background-color: var(--beige-hell);
    color: var(--text);
    padding-top: 70px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--gruen);
}

/* ========== NAVBAR ========== */
.navbar {
    background-color: var(--gruen-dunkel) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.35rem;
    color: #fff !important;
}

.logo-img {
    height: 40px;
    width: 40px;
    border-radius: 6px;
    object-fit: cover;
}

.navbar .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--gold-hell) !important;
}

.btn-accent {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #fff;
    font-weight: 600;
}

.btn-accent:hover {
    background-color: var(--gold-hell);
    border-color: var(--gold-hell);
    color: #fff;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    border-radius: 10px;
}

/* ========== HERO ========== */
.hero-home {
    position: relative;
    color: #fff;
    margin: -1.5rem calc(-50vw + 50%) 2rem;
    width: 100vw;
    min-height: 520px;
    overflow: hidden;
}

.hero-home__scene {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-home__content {
    position: relative;
    z-index: 1;
    padding: 4rem 0 2rem;
}

.hero-home__badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(4px);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.hero-home__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-home__slogan {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--gold-hell);
    margin-bottom: 0.8rem;
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

.hero-home__text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    max-width: 500px;
    line-height: 1.7;
    text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}

.btn-hero-primary {
    background: var(--gold);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
}

.btn-hero-primary:hover {
    background: var(--gold-hell);
    color: #fff;
    transform: translateY(-1px);
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

/* Hero Stats (rechte Seite) */
.hero-stat-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 1.2rem 1rem;
    text-align: center;
}

.hero-stat-card__num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-hell);
    line-height: 1;
}

.hero-stat-card__label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

/* ========== HERO TIERE ANIMATIONEN ========== */
/* Voegel fliegen */
.hero-bird { animation-timing-function: linear; animation-iteration-count: infinite; }
.hero-bird--1 { animation: birdFly1 18s linear infinite; }
.hero-bird--2 { animation: birdFly2 24s linear 6s infinite; }
.hero-bird--3 { animation: birdFly3 20s linear 12s infinite; }

@keyframes birdFly1 {
    0%   { transform: translate(-20px, 120px); opacity: 0; }
    5%   { opacity: 0.6; }
    90%  { opacity: 0.6; }
    100% { transform: translate(1460px, 80px); opacity: 0; }
}
@keyframes birdFly2 {
    0%   { transform: translate(-20px, 160px); opacity: 0; }
    5%   { opacity: 0.5; }
    90%  { opacity: 0.5; }
    100% { transform: translate(1460px, 100px); opacity: 0; }
}
@keyframes birdFly3 {
    0%   { transform: translate(1460px, 140px); opacity: 0; }
    5%   { opacity: 0.4; }
    90%  { opacity: 0.4; }
    100% { transform: translate(-20px, 90px); opacity: 0; }
}

/* Voegel Fluegel-Schlag */
.hero-bird path {
    animation: wingFlap 0.4s ease-in-out infinite alternate;
}
@keyframes wingFlap {
    0%   { d: path("M0,0 C-3,-5 -8,-4 -12,-1 M0,0 C3,-5 8,-4 12,-1"); }
    100% { d: path("M0,0 C-3,-2 -8,-6 -12,-5 M0,0 C3,-2 8,-6 12,-5"); }
}

/* Reh schaut rein */
.hero-reh {
    opacity: 0;
    animation: rehPeek 25s ease-in-out 8s infinite;
    animation-fill-mode: both;
}
@keyframes rehPeek {
    0%   { transform: translate(1195px, 340px); opacity: 0; }
    3%   { transform: translate(1175px, 340px); opacity: 0.8; }
    8%   { transform: translate(1175px, 340px); opacity: 0.8; }
    10%  { transform: translate(1175px, 335px); opacity: 0.8; } /* Kopf heben */
    14%  { transform: translate(1175px, 340px); opacity: 0.8; }
    17%  { transform: translate(1195px, 340px); opacity: 0; }
    100% { transform: translate(1195px, 340px); opacity: 0; }
}

/* Hase hoppelt */
.hero-hase {
    opacity: 0;
    animation: haseHop 30s ease-in-out 15s infinite;
    animation-fill-mode: both;
}
@keyframes haseHop {
    0%   { transform: translate(280px, 478px) scaleX(-1); opacity: 0; }
    1%   { transform: translate(280px, 478px) scaleX(-1); opacity: 0.8; }
    /* Langsam hin zum Jaeger - kleine flache Hopser */
    3%   { transform: translate(250px, 474px) scaleX(-1); }
    4%   { transform: translate(230px, 478px) scaleX(-1); }
    6%   { transform: translate(210px, 474px) scaleX(-1); }
    7%   { transform: translate(190px, 478px) scaleX(-1); }
    9%   { transform: translate(175px, 474px) scaleX(-1); }
    10%  { transform: translate(160px, 478px) scaleX(-1); }
    /* Vor dem Jaeger - stehen bleiben, Maennchen */
    12%  { transform: translate(160px, 478px) scaleX(-1); }
    13%  { transform: translate(160px, 471px) scaleX(-1) scaleY(1.15); }
    16%  { transform: translate(160px, 471px) scaleX(-1) scaleY(1.15); }
    17%  { transform: translate(160px, 478px) scaleX(-1) scaleY(1); }
    /* Erschrecken - schnelle groessere Hopser weg */
    18%  { transform: translate(190px, 478px); }
    19%  { transform: translate(220px, 472px); }
    20%  { transform: translate(260px, 478px); }
    21%  { transform: translate(310px, 470px); }
    22%  { transform: translate(370px, 478px); }
    23%  { transform: translate(440px, 468px); }
    24%  { transform: translate(520px, 478px); opacity: 0.8; }
    26%  { transform: translate(520px, 478px); opacity: 0; }
    100% { transform: translate(520px, 478px); opacity: 0; }
}

/* Fisch springt */
.hero-fisch {
    opacity: 0;
    animation: fishJump 20s ease-in-out 5s infinite;
    animation-fill-mode: both;
}
@keyframes fishJump {
    0%   { transform: translate(1100px, 435px) rotate(0deg); opacity: 0; }
    2%   { transform: translate(1100px, 435px) rotate(0deg); opacity: 0; }
    3%   { transform: translate(1105px, 408px) rotate(-30deg); opacity: 0.8; }
    4.5% { transform: translate(1110px, 395px) rotate(-45deg); opacity: 0.9; }
    6%   { transform: translate(1115px, 408px) rotate(-20deg); opacity: 0.8; }
    7%   { transform: translate(1120px, 435px) rotate(0deg); opacity: 0; }
    100% { transform: translate(1120px, 435px) rotate(0deg); opacity: 0; }
}

/* ========== SECTION HEADERS ========== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.section-title {
    font-size: 1.6rem;
    margin-bottom: 0.2rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ========== SCHNELLEINSTIEG-KACHELN ========== */
.home-tile {
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    position: relative;
    border: none;
    padding: 1.5rem 1rem;
}

.home-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.home-tile i { position: relative; z-index: 1; }
.home-tile span, .home-tile small { position: relative; z-index: 1; }
.home-tile span { font-weight: 700; font-size: 1.05rem; }
.home-tile small { opacity: 0.8; }

.home-tile--angebote { background: linear-gradient(135deg, #c8dbb8 0%, #8aad6e 100%); color: var(--gruen-dunkel); }
.home-tile--suche { background: linear-gradient(135deg, #d4c4a0 0%, #b89f6a 100%); color: #4a3d20; }
.home-tile--wildarten { background: linear-gradient(135deg, #c9e0d0 0%, #7aab8b 100%); color: #1a3c2a; }
.home-tile--rezepte { background: linear-gradient(135deg, #e8d5b7 0%, #c9a96e 100%); color: #4a3520; }

/* ========== CARDS ========== */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    padding: 1.25rem;
    background: #fff;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Kein Hover-Effekt auf Edit-Cards und Summernote */
.card:has(.wysiwyg):hover,
.card:has(form):hover,
.note-editor:hover {
    transform: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* ========== BUTTONS WILDBOERSE ========== */
.btn-wald {
    background-color: var(--gruen);
    border-color: var(--gruen);
    color: #fff;
}

.btn-wald:hover {
    background-color: var(--gruen-dunkel);
    border-color: var(--gruen-dunkel);
    color: #fff;
}

.btn-braun {
    background-color: var(--braun);
    border-color: var(--braun);
    color: #fff;
}

.btn-braun:hover {
    background-color: #5a3018;
    border-color: #5a3018;
    color: #fff;
}

/* ========== STEPS ========== */
.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gruen), var(--gruen-hell));
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--gruen);
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========== BADGES ========== */
.badge-fleisch { background: #fde8e8; color: #9b2c2c; }
.badge-fisch { background: #e0f2f7; color: #0c5460; }
.badge-aktiv { background: #e6f4ea; color: #1e7e34; }
.badge-offen { background: #fef3cd; color: #856404; }

/* ========== CTA SECTION ========== */
.cta-register {
    background: linear-gradient(135deg, var(--gruen-dunkel), var(--gruen));
    color: #fff;
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-register h2 { color: #fff; }
.cta-register p { color: rgba(255,255,255,0.85); }

.cta-register__features span {
    display: inline-block;
    margin-right: 1.2rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

.cta-register__features i {
    color: var(--gold-hell);
}

/* ========== CONTENT PANELS ========== */
.content-panel {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
}

.content-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #eee;
}

.content-panel__header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--gruen);
}

/* ========== WILDART CARDS ========== */
.wildart-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.wildart-card:hover {
    text-decoration: none;
    color: inherit;
}

/* ========== QUOTE SECTION ========== */
.quote-section {
    text-align: center;
    padding: 2rem 1rem;
}

.quote-section blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========== FOOTER ========== */
.site-footer {
    background-color: var(--gruen-dunkel);
    color: rgba(255,255,255,0.8);
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-link {
    color: var(--gold-hell);
    margin-left: 1.2rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* ========== ADMIN DASHBOARD ========== */
.admin-header h1 {
    margin-bottom: 0.1rem;
}

.admin-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.admin-section-title i {
    font-size: 0.95rem;
}

/* Stat Cards */
.admin-stat-card {
    border-radius: 12px;
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.admin-stat-card > i {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    font-size: 2rem;
    opacity: 0.2;
}

.admin-stat-card__num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.admin-stat-card__label {
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    opacity: 0.9;
}

.admin-stat-card__detail {
    font-size: 0.78rem;
    margin-top: 0.4rem;
    opacity: 0.7;
}

.admin-stat-card--gruen      { background: linear-gradient(135deg, var(--gruen), var(--gruen-hell)); }
.admin-stat-card--gold       { background: linear-gradient(135deg, var(--gold), #daa520); }
.admin-stat-card--braun      { background: linear-gradient(135deg, var(--braun), var(--braun-hell)); }
.admin-stat-card--gruen-hell { background: linear-gradient(135deg, var(--gruen-hell), #5a9a2f); }

/* Admin Tiles */
.admin-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    padding: 1.25rem 0.75rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-decoration: none;
    color: var(--text);
    transition: transform 0.2s, box-shadow 0.2s;
}

.admin-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    color: var(--text);
    text-decoration: none;
}

.admin-tile > i {
    font-size: 1.6rem;
    color: var(--gruen);
    margin-bottom: 0.15rem;
}

.admin-tile:hover > i {
    color: var(--gold);
}

.admin-tile__title {
    font-weight: 700;
    font-size: 0.9rem;
}

.admin-tile__desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* ========== TABLES (Admin etc.) ========== */
.table th {
    background-color: var(--gruen);
    color: #fff;
}

/* ========== ALERTS ========== */
.alert {
    border-radius: 10px;
}

/* ========== GRID HELPERS ========== */
.grid {
    display: grid;
    gap: 0 1rem;
}

.grid-2 {
    grid-template-columns: 1fr 1fr;
}

.grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.grid-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.grid-plz-ort {
    grid-template-columns: 5.5rem 1fr;
}

@media (max-width: 576px) {
    .grid-2, .grid-3, .grid-4, .grid-5 {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .grid-3, .grid-4, .grid-5 {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========== FORMS ========== */
.form-control:focus {
    border-color: var(--gruen);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.15);
}

/* ========== EMPTY STATE ========== */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

/* ========== AUTH PAGES (Login, Register) ========== */
.auth-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 220px);
    padding: 2rem 1rem;
}

.auth-card {
    width: 100%;
    max-width: 520px;
    background: linear-gradient(135deg, #c8dbb8 0%, #8aad6e 100%);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(26, 60, 10, 0.10), 0 1px 3px rgba(0,0,0,0.06);
    padding: 1.5rem 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #c8dbb8 0%, #8aad6e 100%);
}

.auth-card:hover {
    transform: none;
    box-shadow: 0 8px 40px rgba(26, 60, 10, 0.10), 0 1px 3px rgba(0,0,0,0.06);
}

/* Auth Header Bar (Logo links, Titel rechts) */
.auth-header-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.auth-header-bar__logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.auth-header-bar__title {
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.3;
}

/* Auth Logo (zentriert, fuer Login) */
.auth-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.auth-logo img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.auth-logo__text h1 {
    font-size: 1.3rem;
    margin-bottom: 0;
    line-height: 1.2;
    text-align: center;
}

.auth-logo__text p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
    text-align: center;
}

.auth-card .form-group {
    margin-bottom: 0.75rem;
}

.auth-card .form-group label {
    font-weight: 500;
    font-size: 0.82rem;
    color: var(--text);
    margin-bottom: 0.2rem;
    display: block;
}

.auth-card .form-control {
    border-radius: 8px;
    padding: 0.45rem 0.85rem 0.45rem 2.5rem;
    border: 1.5px solid #ddd;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-card .form-control:focus {
    border-color: var(--gruen);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.12);
}

.auth-input-group {
    position: relative;
}

.auth-input-group .auth-input-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    z-index: 2;
}

.auth-input-group .auth-toggle-pw {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
    z-index: 2;
}

.auth-input-group .auth-toggle-pw:hover {
    color: var(--gruen);
}

.auth-card .btn-primary {
    width: 100%;
    padding: 0.7rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gruen), var(--gruen-hell));
    border: none;
    transition: transform 0.15s, box-shadow 0.15s;
}

.auth-card .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.auth-divider span {
    padding: 0 1rem;
}

.auth-footer {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.auth-footer a {
    color: var(--gruen);
    font-weight: 600;
    text-decoration: none;
}

.auth-footer a:hover {
    color: var(--gruen-hell);
    text-decoration: underline;
}

.auth-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.auth-features span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.auth-features i {
    color: var(--gruen);
    font-size: 0.85rem;
}

/* Auth-Card breitere Variante (Registrierung) */
.auth-card--wide {
    max-width: 820px;
}

/* Zwei-Spalten-Layout fuer Registrierung */
.auth-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
}

.auth-col {
    min-width: 0;
}

@media (max-width: 680px) {
    .auth-columns {
        grid-template-columns: 1fr;
    }
}

.auth-card--wide .form-control {
    padding-left: 2.5rem;
}

.auth-card--wide .form-control--no-icon {
    padding-left: 0.85rem;
}

/* Rollen-Auswahl als Kacheln */
.auth-role-picker {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.auth-role-picker input[type="radio"] {
    display: none;
}

.auth-role-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    text-align: center;
}

.auth-role-option i {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.auth-role-option span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

.auth-role-option:hover {
    border-color: var(--gruen-hell);
    background: rgba(45, 80, 22, 0.03);
}

.auth-role-picker input[type="radio"]:checked + .auth-role-option {
    border-color: var(--gruen);
    background: rgba(45, 80, 22, 0.06);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.auth-role-picker input[type="radio"]:checked + .auth-role-option i {
    color: var(--gruen);
}

/* Abschnitt-Trenner in Auth-Forms */
.auth-section-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin: 0.5rem 0 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8e8e8;
}

/* Passwort-Staerke-Anzeige */
.pw-strength {
    height: 3px;
    border-radius: 2px;
    background: #e0e0e0;
    margin-top: 0.4rem;
    overflow: hidden;
}

.pw-strength__bar {
    height: 100%;
    width: 0;
    border-radius: 2px;
    transition: width 0.3s, background 0.3s;
}

.pw-strength__text {
    font-size: 0.75rem;
    margin-top: 0.2rem;
    color: var(--text-muted);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-home {
        min-height: 420px;
    }

    .hero-home__content {
        padding: 2.5rem 0 1.5rem;
    }

    .hero-home__title {
        font-size: 2rem;
    }

    .hero-home__slogan {
        font-size: 1.2rem;
    }

    .hero-home__text {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .cta-register {
        padding: 2rem 1.5rem;
    }
}
