/* ============================================================
   WHEELS OF STEEL MC GERMANY - Main Stylesheet
   ============================================================ */

/*
   Farbpalette:
   --accent        rgba(160, 170, 185, 1)   Graublau hell (Akzent)
   --accent-bright rgba(200, 210, 220, 1)   Hellgrau/Graublau (Hover)
   --accent-dim    rgba(100, 112, 128, 1)   Graublau mittel
   --accent-dark   rgba(55, 65, 78, 1)      Graublau dunkel
   --accent-subtle rgba(160, 170, 185, 0.18) Hauch-Akzent
   --border        rgba(160, 170, 185, 0.3)  Standard-Border
   --text-main     rgba(255, 255, 255, 1)
   --text-mid      rgba(200, 200, 200, 1)
   --text-dim      rgba(150, 155, 160, 1)
   --text-muted    rgba(100, 105, 110, 1)
   --bg-base       rgba(0, 0, 0, 1)
   --bg-card       rgba(15, 18, 22, 1)
   --bg-header     rgba(8, 10, 14, 1)
*/

/* --- Terminleiste ------------------------------------------- */
#termine-bar {
    background-color: rgba(10, 12, 16, 1);
    border-bottom: 1px solid rgba(160, 170, 185, 0.2);
    padding: 0;
    width: 100%;
    overflow: hidden;
    position: relative;
    min-height: 38px;
}

.termine-track-wrap {
    overflow: hidden;
    width: 100%;
}

#termine-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: termine-scroll 48s linear infinite;
}

#termine-track:hover {
    animation-play-state: paused;
}

@keyframes termine-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.termin-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 2.2rem;
    border-right: 1px solid rgba(160, 170, 185, 0.12);
    white-space: nowrap;
    cursor: default;
    transition: background 0.25s ease;
}

.termin-item:hover {
    background-color: rgba(160, 170, 185, 0.06);
}

.termin-datum {
    font-family: 'Impact', Arial Narrow, sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.07em;
    color: rgba(160, 170, 185, 1);
    text-transform: uppercase;
}

.termin-uhr {
    font-family: 'DSBehrensschrift', Georgia, serif;
    font-size: 0.95rem;
    color: rgba(120, 125, 132, 1);
}

.termin-sep {
    color: rgba(160, 170, 185, 0.35);
    font-size: 0.95rem;
}

.termin-titel {
    font-family: 'DSBehrensschrift', Georgia, serif;
    font-size: 0.95rem;
    color: rgba(220, 222, 225, 1);
}

.termin-ort {
    font-family: 'DSBehrensschrift', Georgia, serif;
    font-size: 0.95rem;
    color: rgba(140, 145, 152, 1);
}

.termin-chapter-tag {
    font-family: 'Impact', Arial Narrow, sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background-color: rgba(160, 170, 185, 0.1);
    color: rgba(160, 170, 185, 0.9);
    border: 1px solid rgba(160, 170, 185, 0.25);
    padding: 0.05rem 0.45rem;
    border-radius: 2px;
}

.termine-loading {
    font-family: 'Impact', Arial Narrow, sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(100, 105, 112, 1);
    padding: 0.55rem 1.5rem;
    display: inline-block;
    animation: pulse-fade 1.4s ease-in-out infinite;
}

@keyframes pulse-fade {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 1; }
}

/* --- Logo-Sektion Startseite -------------------------------- */
#logo-sektion {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 4rem 1rem 2rem;
}

#site-logo-img {
    width: min(520px, 80vw);
    height: auto;
    display: block;
}


/* --- Termine Pfeile (nur Mobile) ---------------------------- */
.termine-arrow {
    display: none;
}

/* --- Fish-Eye Termine (Mobile) — horizontaler Scroll-Snap --- */
@media (max-width: 768px) {
    #termine-bar {
        min-height: auto;
        overflow: hidden;
        display: flex;
        align-items: center;
    }

    .termine-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 28px;
        background: none;
        border: none;
        color: rgba(160, 170, 185, 0.6);
        font-size: 1.8rem;
        line-height: 1;
        cursor: pointer;
        padding: 0;
        transition: color 0.2s ease, opacity 0.2s ease;
        z-index: 5;
    }

    .termine-arrow:active {
        color: rgba(160, 170, 185, 1);
    }

    .termine-arrow[disabled] {
        opacity: 0;
        pointer-events: none;
    }

    .termine-track-wrap {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .termine-track-wrap::-webkit-scrollbar {
        display: none;
    }

    #termine-track {
        display: flex;
        flex-direction: row;
        width: max-content;
        animation: none;
        gap: 0;
        padding: 0.6rem 10vw;
        align-items: center;
    }

    .termin-item {
        flex: 0 0 78vw;
        max-width: 78vw;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.3rem 0.6rem;
        padding: 0.7rem 1rem;
        border-right: 1px solid rgba(160, 170, 185, 0.12);
        border-bottom: none;
        white-space: normal;
        scroll-snap-align: center;
        transform-origin: center center;
        transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                    opacity 0.35s ease,
                    background 0.25s ease;
        opacity: 0.45;
        transform: scale(0.85);
        cursor: default;
    }

    .termin-item.fisheye-active {
        transform: scale(1.0);
        opacity: 1;
        background-color: rgba(160, 170, 185, 0.1);
        border-left: 3px solid rgba(160, 170, 185, 0.45);
        position: relative;
        z-index: 2;
    }

    .termin-item.fisheye-adjacent {
        transform: scale(0.92);
        opacity: 0.65;
    }

    #site-logo-img {
        width: min(280px, 72vw);
    }
}

/* --- Webfonts ----------------------------------------------- */
@font-face {
    font-family: 'Impact';
    src: url('../schrift/impact.eot');
    src: url('../schrift/impact.eot?#iefix') format('embedded-opentype'),
         url('../schrift/impact.woff') format('woff'),
         url('../schrift/impact.ttf') format('truetype'),
         url('../schrift/impact.svg#impact') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DSBehrensschrift';
    src: url('../schrift/DSBehrensschrift.woff2') format('woff2'),
         url('../schrift/DSBehrensschrift.woff')  format('woff'),
         url('../schrift/DSBehrensschrift.ttf')   format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* --- Reset & Base ------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: rgba(0, 0, 0, 1);
    color: rgba(255, 255, 255, 1);
    font-family: 'DSBehrensschrift', Georgia, serif;
    font-size: 1rem;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: rgba(160, 170, 185, 1);
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover,
a:focus {
    color: rgba(200, 210, 220, 1);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* --- Header ------------------------------------------------- */
#site-header {
    background-color: rgba(8, 10, 14, 1);
    border-bottom: 2px solid rgba(100, 112, 128, 1);
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.site-logo {
    font-family: 'Impact', Arial Narrow, sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    color: rgba(200, 210, 220, 1);
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
}

.site-logo a {
    color: inherit;
    text-decoration: none;
}

.site-logo a:hover {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

/* --- Navigation --------------------------------------------- */
#main-nav {
    display: flex;
    align-items: center;
}

#nav-list {
    display: flex;
    gap: 0;
    align-items: center;
    flex-wrap: nowrap;
}

#nav-list li {
    position: relative;
}

#nav-list > li > a {
    font-family: 'Impact', Arial Narrow, sans-serif;
    font-size: 1.0rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(200, 205, 210, 1);
    padding: 0.5rem 0.85rem;
    display: block;
    border-bottom: 3px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease;
}

#nav-list > li > a:hover,
#nav-list > li > a:focus,
#nav-list > li > a.active {
    color: rgba(255, 255, 255, 1);
    border-bottom-color: rgba(160, 170, 185, 1);
    text-decoration: none;
}

/* Dropdown */
#nav-list .has-dropdown > a::after {
    content: ' \25BE';
    font-size: 1.0rem;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(12, 14, 18, 1);
    border: 1px solid rgba(100, 112, 128, 0.4);
    border-top: 2px solid rgba(100, 112, 128, 1);
    min-width: 200px;
    z-index: 999;
}

.dropdown-menu li a {
    font-family: 'Impact', Arial Narrow, sans-serif;
    font-size: 1.0rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(190, 195, 202, 1);
    padding: 0.6rem 1rem;
    display: block;
    border-bottom: 1px solid rgba(160, 170, 185, 0.1);
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover,
.dropdown-menu li a:focus {
    background-color: rgba(160, 170, 185, 0.1);
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

#nav-list .has-dropdown:hover .dropdown-menu,
#nav-list .has-dropdown:focus-within .dropdown-menu {
    display: block;
}

/* --- Hamburger Button --------------------------------------- */
#hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 1100;
}

#hamburger-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: rgba(160, 170, 185, 1);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#hamburger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

#hamburger-btn.open span:nth-child(2) {
    opacity: 0;
}

#hamburger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Main Content ------------------------------------------- */
#page-content {
    flex: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

/* --- Hero Section ------------------------------------------- */
.hero {
    text-align: center;
    padding: 4rem 1rem 3rem;
    border-bottom: 1px solid rgba(160, 170, 185, 0.18);
    margin-bottom: 3rem;
}

.hero h1 {
    font-family: 'Impact', Arial Narrow, sans-serif;
    font-size: clamp(2rem, 6vw, 4.5rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1rem;

    /* Verwitterte, ausgefranste Schrift – wie altes Blech */
    color: rgba(185, 190, 198, 0.82);

    /* Mehrschichtige Schatten: Kratzer, Tiefe, abgeplatzte Kanten */
    text-shadow:
        /* harte Highlights oben-links (abgeplatzter Lack) */
        -1px -1px 0   rgba(255, 255, 255, 0.08),
         1px -1px 0   rgba(255, 255, 255, 0.04),
        /* dunkle Kratzer */
         2px  2px 0   rgba(0, 0, 0, 0.6),
         3px  3px 0   rgba(0, 0, 0, 0.35),
        /* weicher Schmutz-/Russ-Schleier */
         0    0   6px rgba(0, 0, 0, 0.5),
         0    0  14px rgba(0, 0, 0, 0.3),
        /* leichte Rostfärbung seitlich */
         4px  3px 8px rgba(80, 55, 30, 0.25),
        /* ausgefraster Rand – winzige Pixel-Versätze */
        -2px  1px 0   rgba(100, 108, 118, 0.3),
         1px -2px 0   rgba(100, 108, 118, 0.2),
        -3px  2px 3px rgba(0, 0, 0, 0.2),
         2px -3px 3px rgba(0, 0, 0, 0.15);

    /* Leichte Opazitäts-Unschärfe = verblasster Farblack */
    filter: contrast(0.88) brightness(0.92);
}

.hero p {
    font-family: 'DSBehrensschrift', Georgia, serif;
    font-size: clamp(1.5rem, 3.75vw, 2.1rem);
    color: rgba(170, 175, 182, 1);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-divider {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, rgba(60, 70, 85, 1) 0%, rgba(160, 170, 185, 1) 50%, rgba(60, 70, 85, 1) 100%);
    margin: 0 auto;
}

/* --- Page Title --------------------------------------------- */
.page-title {
    font-family: 'Impact', Arial Narrow, sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(200, 208, 218, 1);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.page-subtitle {
    color: rgba(130, 138, 148, 1);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.title-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, rgba(55, 65, 78, 1) 0%, rgba(160, 170, 185, 1) 50%, rgba(55, 65, 78, 1) 100%);
    margin-bottom: 2.5rem;
}

/* --- Chapter Page Layout ------------------------------------ */
.chapter-header {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(160, 170, 185, 0.12);
}

.chapter-header-image {
    width: 300px;
    flex-shrink: 0;
    border: none;
}

.chapter-info {
    margin: 0.8rem 0 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.chapter-info-row {
    display: flex;
    gap: 0.6rem;
    font-size: 1rem;
    color: rgba(195, 198, 202, 1);
    flex-wrap: wrap;
}

.chapter-info-label {
    font-family: 'Impact', Arial Narrow, sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(160, 170, 185, 1);
    min-width: 100px;
    flex-shrink: 0;
}

.chapter-social-links {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.6rem;
    flex-wrap: wrap;
}

.chapter-social-link {
    font-family: 'Impact', Arial Narrow, sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(160, 170, 185, 1);
    border: 1px solid rgba(160, 170, 185, 0.3);
    padding: 0.2rem 0.6rem;
    display: inline-block;
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.chapter-social-link:hover {
    background-color: rgba(160, 170, 185, 0.12);
    color: rgba(220, 225, 232, 1);
    text-decoration: none;
}

.chapter-maps-link {
    font-family: 'Impact', Arial Narrow, sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(160, 170, 185, 1);
    border: 1px solid rgba(160, 170, 185, 0.3);
    padding: 0.2rem 0.6rem;
    display: inline-block;
    margin-top: 0.4rem;
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.chapter-maps-link:hover {
    background-color: rgba(160, 170, 185, 0.12);
    color: rgba(220, 225, 232, 1);
    text-decoration: none;
}

.chapter-clubhaus-img {
    width: 100%;
    margin-top: 1.4rem;
    border: 1px solid rgba(100, 112, 128, 0.22);
}

/* Nur Obing-Bilder im Chapter Traunstein in Sepia */
.chapter-traunstein-sepia {
    filter: grayscale(1);
}

.chapter-header-text h2 {
    font-family: 'Impact', Arial Narrow, sans-serif;
    font-size: 1.6rem;
    color: rgba(200, 208, 218, 1);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.chapter-header-text p {
    color: rgba(200, 202, 206, 1);
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
}

/* --- Members Grid ------------------------------------------- */
.section-heading {
    font-family: 'Impact', Arial Narrow, sans-serif;
    font-size: 1.4rem;
    color: rgba(190, 198, 210, 1);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(160, 170, 185, 0.2);
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    justify-items: center;
}

.member-card {
    background-color: rgba(15, 18, 22, 1);
    border: 1px solid rgba(100, 112, 128, 0.22);
    padding: 1.2rem;
    text-align: center;
    transition: border-color 0.25s ease;
    width: 100%;
}

.member-card:hover {
    border-color: rgba(160, 170, 185, 0.6);
    cursor: pointer;
}

.member-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 0.8rem;
    background: transparent;
}

.member-card .member-name {
    font-family: 'Impact', Arial Narrow, sans-serif;
    font-size: 1rem;
    color: rgba(190, 198, 210, 1);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.member-card .member-role {
    font-size: 0.85rem;
    color: rgba(120, 128, 138, 1);
    margin-top: 0.2rem;
}

/* --- Bikes Grid --------------------------------------------- */
.bikes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.bike-card {
    background-color: rgba(12, 14, 18, 1);
    border: 1px solid rgba(100, 112, 128, 0.22);
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.bike-card:hover {
    border-color: rgba(160, 170, 185, 0.6);
}

.bike-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: rgba(22, 26, 32, 1);
}

.bike-card-body {
    padding: 1rem 1.2rem;
}

.bike-card .bike-title {
    font-family: 'Impact', Arial Narrow, sans-serif;
    font-size: 1.1rem;
    color: rgba(190, 198, 210, 1);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.bike-card .bike-owner {
    font-size: 0.88rem;
    color: rgba(120, 128, 138, 1);
}

/* --- RIP Section -------------------------------------------- */
.rip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.rip-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background-color: rgba(8, 8, 8, 1);
    border: 1px solid rgba(80, 85, 92, 0.35);
    text-align: center;
    transition: border-color 0.25s ease;
    overflow: visible;
    position: relative;
}

.rip-banner {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 150px;
    height: auto;
    pointer-events: none;
    z-index: 10;
}

.rip-card:hover {
    border-color: rgba(120, 128, 138, 0.55);
}

.rip-colour-wrap {
    flex: 0 0 50%;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8% 1.5rem;
    box-sizing: border-box;
}

.rip-chapter-colour {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    opacity: 0.75;
}

.rip-card-body {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rip-card-body img {
    width: min(240px, 80%);
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 2px solid rgba(80, 85, 92, 0.45);
    background-color: rgba(25, 28, 32, 1);
}

.rip-card .rip-name {
    font-family: 'Impact', Arial Narrow, sans-serif;
    font-size: 1.58rem;
    color: rgba(190, 192, 196, 1);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.rip-card .rip-dates {
    font-size: 1.28rem;
    color: rgba(110, 115, 122, 1);
}

.rip-card .rip-chapter {
    font-size: 1.23rem;
    color: rgba(85, 90, 96, 1);
    margin-top: 0.2rem;
}

/* --- News --------------------------------------------------- */
.news-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.news-list img {
    max-width: 700px;
    width: 100%;
}

/* --- Text Content (Impressum / Datenschutz) ----------------- */
.text-content {
    max-width: 900px;
}

.text-content h2 {
    font-family: 'Impact', Arial Narrow, sans-serif;
    font-size: 1.3rem;
    color: rgba(190, 198, 210, 1);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 2rem 0 0.7rem;
}

.text-content h3 {
    font-family: 'Impact', Arial Narrow, sans-serif;
    font-size: 1.05rem;
    color: rgba(150, 160, 172, 1);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 1.5rem 0 0.5rem;
}

.text-content p,
.text-content li {
    color: rgba(195, 198, 202, 1);
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.text-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.text-content a {
    color: rgba(160, 170, 185, 1);
}

/* --- Kontakt ------------------------------------------------- */
.contact-info {
    max-width: 600px;
}

.contact-info p {
    font-size: 1.05rem;
    color: rgba(195, 198, 202, 1);
    margin-bottom: 0.8rem;
}

.contact-info .contact-label {
    font-family: 'Impact', Arial Narrow, sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(160, 170, 185, 1);
    display: block;
    margin-bottom: 0.15rem;
}

/* --- Impact Line -------------------------------------------- */
.impact-line {
    font-family: 'Impact', Arial Narrow, sans-serif !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 1.25rem;
}

/* --- Info Box ----------------------------------------------- */
.info-box {
    background-color: rgba(14, 17, 22, 1);
    border-left: 3px solid rgba(100, 112, 128, 1);
    padding: 1.2rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.15rem;
    color: rgba(195, 198, 202, 1);
}

/* --- HTMX Loading Indicator --------------------------------- */
.htmx-indicator {
    display: none;
    color: rgba(160, 170, 185, 1);
    font-family: 'Impact', Arial Narrow, sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 1rem 0;
}

.htmx-request .htmx-indicator {
    display: block;
}

/* --- Footer ------------------------------------------------- */
#site-footer {
    background-color: rgba(5, 6, 8, 1);
    border-top: 2px solid rgba(55, 65, 78, 1);
    padding: 2rem;
    text-align: center;
    margin-top: auto;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    margin-bottom: 1rem;
}

.footer-nav a {
    font-family: 'Impact', Arial Narrow, sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(100, 108, 118, 1);
    transition: color 0.25s ease;
}

.footer-nav a:hover {
    color: rgba(190, 198, 210, 1);
    text-decoration: none;
}

.footer-copy {
    font-family: 'DSBehrensschrift', Georgia, serif;
    font-size: 0.82rem;
    color: rgba(60, 65, 72, 1);
}

/* --- Cookie Banner ------------------------------------------ */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 12, 16, 0.97);
    border-top: 2px solid rgba(75, 85, 100, 1);
    z-index: 9999;
    padding: 1.2rem 2rem;
    display: none;
}

#cookie-banner.visible {
    display: block;
}

.cookie-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cookie-text {
    font-size: 0.9rem;
    color: rgba(185, 190, 198, 1);
}

.cookie-text a {
    color: rgba(160, 170, 185, 1);
}

.cookie-types {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(100, 112, 128, 0.25);
}

.cookie-type-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 1rem;
    border-bottom: 1px solid rgba(100, 112, 128, 0.15);
}

.cookie-type-row:last-child {
    border-bottom: none;
}

.cookie-type-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.cookie-type-name {
    font-family: 'Impact', Arial Narrow, sans-serif;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(200, 208, 218, 1);
}

.cookie-type-desc {
    font-size: 0.82rem;
    color: rgba(130, 138, 148, 1);
}

.cookie-toggle-fixed {
    font-family: 'Impact', Arial Narrow, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(100, 112, 128, 1);
    white-space: nowrap;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
    flex-shrink: 0;
    cursor: pointer;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background-color: rgba(50, 56, 66, 1);
    border: 1px solid rgba(100, 112, 128, 0.4);
    transition: background 0.25s ease;
}

.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    height: 14px;
    width: 14px;
    left: 3px;
    top: 3px;
    background-color: rgba(130, 140, 155, 1);
    transition: transform 0.25s ease, background 0.25s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: rgba(40, 110, 60, 1);
    border-color: rgba(80, 180, 100, 0.5);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(18px);
    background-color: rgba(160, 230, 170, 1);
}

.cookie-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.btn {
    font-family: 'Impact', Arial Narrow, sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.55rem 1.4rem;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    border-radius: 0;
}

.btn-accept {
    background-color: rgba(100, 112, 128, 1);
    color: rgba(255, 255, 255, 1);
}

.btn-accept:hover {
    background-color: rgba(140, 152, 168, 1);
}

.btn-reject {
    background-color: rgba(28, 30, 36, 1);
    color: rgba(170, 175, 182, 1);
    border: 1px solid rgba(75, 82, 92, 0.5);
}

.btn-reject:hover {
    background-color: rgba(40, 44, 52, 1);
}

/* --- Skip Link (Accessibility) ------------------------------ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background-color: rgba(100, 112, 128, 1);
    color: rgba(255, 255, 255, 1);
    font-family: 'Impact', Arial Narrow, sans-serif;
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 9999;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 1rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet landscape */
@media (max-width: 1100px) {
    #nav-list > li > a {
        font-size: 0.85rem;
        padding: 0.5rem 0.6rem;
    }
}

/* Tablet portrait */
@media (max-width: 900px) {
    .chapter-header {
        flex-direction: column;
    }

    .chapter-header-image {
        width: 100%;
        max-width: 400px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    #hamburger-btn {
        display: flex;
    }

    #main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(5, 6, 8, 0.98);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.35s ease;
        z-index: 999;
    }

    #main-nav.nav-open {
        transform: translateX(0);
    }

    #nav-list {
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
    }

    #nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(100, 112, 128, 0.1);
    }

    #nav-list > li > a {
        padding: 1rem 1.5rem;
        font-size: 1.05rem;
        border-bottom: none;
    }

    #nav-list .has-dropdown > a::after {
        float: right;
    }

    .dropdown-menu {
        position: static;
        display: none;
        background-color: rgba(15, 18, 22, 1);
        border: none;
        border-top: 1px solid rgba(100, 112, 128, 0.12);
    }

    .dropdown-menu.open {
        display: block;
    }

    .dropdown-menu li a {
        padding: 0.75rem 2.5rem;
        font-size: 0.95rem;
    }

    #page-content {
        padding: 1.5rem 1rem;
    }

    .hero {
        padding: 2.5rem 0.5rem 2rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .btn {
        flex: 1;
        text-align: center;
    }

    #site-header {
        padding: 0 1rem;
    }

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

    .rip-card-body img {
        width: min(180px, 80%);
    }

    .rip-card .rip-name  { font-size: 1.3rem; }
    .rip-card .rip-dates { font-size: 1.05rem; }
    .rip-card .rip-chapter { font-size: 1rem; }
}

@media (max-width: 480px) {
    .site-logo {
        font-size: 1.1rem;
    }

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

    .rip-card {
        flex-direction: column;
    }

    .rip-colour-wrap {
        flex: none;
        width: 100%;
        height: 180px;
        padding: 1rem 8%;
    }

    .rip-card-body img {
        width: min(160px, 80%);
    }

    .rip-card .rip-name {
        font-size: 1.2rem;
    }

    .rip-card .rip-dates {
        font-size: 1rem;
    }

    .rip-card .rip-chapter {
        font-size: 0.95rem;
    }
}

/* Presse-Styles → css/presse.css (ausgelagert) */
