/* =============================================================
   Snake-Eyes e.V. – Custom Stylesheet
   Stack: Bootstrap 5.3.3, Bootstrap Icons 1.11.3
   Fonts: Oswald + Source Sans 3 (lokal, GDPR-konform)
   ============================================================= */

/* ── 1. SELF-HOSTED FONTS ────────────────────────────────────── */
@font-face {
    font-family: 'Oswald';
    src: url('../fonts/oswald/Oswald-VariableFont_wght.woff2') format('woff2');
    font-weight: 200 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans 3';
    src: url('../fonts/source-sans-3/SourceSans3-VariableFont_wght.woff2') format('woff2');
    font-weight: 200 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans 3';
    src: url('../fonts/source-sans-3/SourceSans3-Italic-VariableFont_wght.woff2') format('woff2');
    font-weight: 200 900;
    font-style: italic;
    font-display: swap;
}

/* ── 2. CSS CUSTOM PROPERTIES ───────────────────────────────── */
:root {
    /* Brand Colors */
    --se-dark:        #1a1a1a;
    --se-dark-2:      #2d2d2d;
    --se-red:         #c0392b;
    --se-red-hover:   #922b21;
    --se-gray-light:  #f5f5f5;
    --se-gray-mid:    #6c757d;

    /* Bootstrap Overrides */
    --bs-body-font-family:    'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
    --bs-body-font-size:      1.05rem;
    --bs-body-line-height:    1.75;
    --bs-link-color:          var(--se-red);
    --bs-link-hover-color:    var(--se-red-hover);
    --bs-border-radius:       6px;
}

/* ── 3. BASE ─────────────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--bs-body-font-family);
    color: #212529;
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
    font-weight: 500;
    letter-spacing: 0.02em;
}

a {
    color: var(--se-red);
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}
a:hover {
    color: var(--se-red-hover);
}

/* Skip-Link für Barrierefreiheit */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--se-red);
    color: white;
    padding: 8px 16px;
    z-index: 10000;
    font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ── 4. UTILITY HELPERS ─────────────────────────────────────── */
.text-se-red { color: var(--se-red) !important; }
.bg-se-dark  { background-color: var(--se-dark) !important; }

/* ── 5. SECTION VARIANTS ────────────────────────────────────── */
.section-light {
    background-color: #fff;
    padding: 4rem 0;
}
.section-gray {
    background-color: var(--se-gray-light);
    padding: 4rem 0;
}
.section-dark {
    background-color: var(--se-dark);
    color: #fff;
    padding: 4rem 0;
}

@media (max-width: 767px) {
    .section-light,
    .section-gray,
    .section-dark { padding: 3rem 0; }
}

/* ── 6. SECTION TITLE ───────────────────────────────────────── */
.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background-color: var(--se-red);
    margin-top: 0.5rem;
    border-radius: 2px;
}
.section-title.centered::after {
    margin-left: auto;
    margin-right: auto;
}

/* ── 7. NAVBAR ──────────────────────────────────────────────── */
.navbar-se {
    background-color: var(--se-dark);
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    box-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.navbar-se .navbar-brand {
    color: #fff;
    text-decoration: none;
}
.navbar-se .navbar-brand:hover { color: var(--se-red); }

.brand-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #fff;
}
.brand-ev {
    color: var(--se-red);
}

.logo-img {
    filter: brightness(1.05);
    max-height: 46px;
    width: auto;
}

.navbar-se .nav-link {
    font-family: 'Oswald', sans-serif;
    font-size: 0.92rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.82);
    padding: 0.45rem 0.75rem;
    transition: color .2s ease;
    border-radius: 4px;
}
.navbar-se .nav-link:hover,
.navbar-se .nav-link.active,
.navbar-se .nav-link:focus-visible {
    color: var(--se-red);
    background-color: rgba(255,255,255,.04);
}

.navbar-se .dropdown-menu {
    background-color: var(--se-dark-2);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 6px;
    box-shadow: 0 6px 16px rgba(0,0,0,.4);
    padding: 0.4rem 0;
    min-width: 220px;
}
.navbar-se .dropdown-item {
    font-family: 'Oswald', sans-serif;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,.78);
    padding: 0.55rem 1.25rem;
    transition: background-color .18s ease, color .18s ease;
}
.navbar-se .dropdown-item:hover,
.navbar-se .dropdown-item:focus,
.navbar-se .dropdown-item.active {
    background-color: var(--se-red);
    color: #fff;
}

/* CTA-Button in der Nav */
.nav-cta {
    background-color: var(--se-red) !important;
    color: #fff !important;
    border-radius: 5px !important;
    padding: 0.4rem 1rem !important;
    font-weight: 500 !important;
    transition: background-color .2s ease !important;
}
.nav-cta:hover {
    background-color: var(--se-red-hover) !important;
    color: #fff !important;
}

/* ── 8. PAGE HEADER ─────────────────────────────────────────── */
.page-header {
    background-color: var(--se-dark);
    color: #fff;
    padding: 2.5rem 0 2rem;
}
.page-header h1 {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    font-weight: 600;
    color: #fff;
    margin: 0;
}
.page-header .breadcrumb { margin-bottom: 0.5rem; }
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255,255,255,.6);
    font-size: 0.88rem;
    text-decoration: none;
}
.page-header .breadcrumb-item a:hover { color: var(--se-red); }
.page-header .breadcrumb-item.active { color: rgba(255,255,255,.85); }
.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,.35);
}

/* ── 9. HERO SECTION ────────────────────────────────────────── */
.hero-section {
    background: linear-gradient(140deg, var(--se-dark) 0%, #2a2a2a 60%, #1f1f1f 100%);
    color: #fff;
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 50px,
        rgba(192,57,43,.04) 50px,
        rgba(192,57,43,.04) 100px
    );
    pointer-events: none;
}

.hero-dice {
    font-size: 3.5rem;
    color: var(--se-red);
    line-height: 1;
    letter-spacing: -0.1em;
}
.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5.5vw, 3.8rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}
.hero-subtitle {
    font-family: 'Source Sans 3', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    color: rgba(255,255,255,.75);
}

/* ── 10. FEATURE CARDS ──────────────────────────────────────── */
.feature-card {
    border: 1px solid rgba(0,0,0,.06) !important;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    transition: transform .22s ease, box-shadow .22s ease;
    background: #fff;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0,0,0,.12);
}

.card-icon {
    font-size: 2.4rem;
    color: var(--se-red);
    margin-bottom: 0.85rem;
    display: block;
}

.btn-card {
    color: var(--se-red);
    font-family: 'Oswald', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: none;
    background: none;
    transition: color .2s ease, gap .2s ease;
}
.btn-card:hover {
    color: var(--se-red-hover);
    gap: 8px;
}

/* ── 11. QUOTE BLOCK ────────────────────────────────────────── */
.quote-block {
    border-left: 4px solid var(--se-red);
    padding: 1.4rem 1.8rem;
    background-color: rgba(192,57,43,.05);
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
}
.quote-block p {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    margin: 0 0 0.5rem;
}
.quote-block cite {
    font-size: 0.83rem;
    color: var(--se-gray-mid);
    font-style: normal;
}

/* ── 12. TIMELINE ───────────────────────────────────────────── */
.timeline {
    position: relative;
    padding-bottom: 1rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--se-red), rgba(192,57,43,.1));
    border-radius: 1px;
}

.timeline-item {
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 2.5rem;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: 1px;
    top: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--se-red);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--se-red);
    z-index: 1;
    transition: transform .2s ease;
}
.timeline-item:hover .timeline-dot { transform: scale(1.2); }

.timeline-dot-today {
    background-color: var(--se-red);
    box-shadow: 0 0 0 2px var(--se-red), 0 0 10px rgba(192,57,43,.5);
}

.timeline-date {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--se-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
}
.timeline-content {
    background: #fff;
    border-radius: 8px;
    padding: 1.2rem 1.4rem;
    box-shadow: 0 2px 10px rgba(0,0,0,.07);
    border: 1px solid rgba(0,0,0,.05);
}
.timeline-content h4 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    color: var(--se-dark);
}
.border-se-red { border-left: 3px solid var(--se-red); }

/* Zweispaltig ab md */
@media (min-width: 992px) {
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .timeline-item {
        width: 46%;
        padding-left: 0;
        padding-right: 2.5rem;
        margin-bottom: 3rem;
    }
    .timeline-item:nth-child(even) {
        margin-left: 54%;
        padding-left: 2.5rem;
        padding-right: 0;
    }
    .timeline-dot {
        left: calc(100% - 9px);
    }
    .timeline-item:nth-child(even) .timeline-dot {
        left: -11px;
    }
}

/* ── 13. PERSON CARDS ───────────────────────────────────────── */
.person-card {
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.07) !important;
    transition: transform .2s ease, box-shadow .2s ease;
}
.person-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,.12) !important;
}

.person-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(192,57,43,.15);
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}
.person-avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #adb5bd;
}

.person-role {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--se-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.2rem;
}
.person-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--se-dark);
}
.person-email {
    font-size: 0.85rem;
    color: var(--se-gray-mid);
    text-decoration: none;
    word-break: break-all;
}
.person-email:hover { color: var(--se-red); }

/* ── 14. FUNKTIONÄRE-KARTEN ─────────────────────────────────── */
.funktion-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(192,57,43,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--se-red);
}
.funktion-role {
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--se-red);
    margin-bottom: 0.15rem;
}
.funktion-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}
.funktion-email {
    font-size: 0.83rem;
    color: var(--se-gray-mid);
    text-decoration: none;
}
.funktion-email:hover { color: var(--se-red); }

/* ── 15. SATZUNG ────────────────────────────────────────────── */
.satzung-toc {
    top: 80px;
}
.toc-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--se-gray-mid);
    margin-bottom: 0.75rem;
}
.toc-list li {
    margin-bottom: 0.2rem;
}
.toc-list a {
    font-size: 0.83rem;
    color: var(--se-gray-mid);
    text-decoration: none;
    display: block;
    padding: 2px 6px;
    border-radius: 4px;
    transition: color .15s ease, background .15s ease;
}
.toc-list a:hover {
    color: var(--se-red);
    background: rgba(192,57,43,.06);
}

.satzung-section {
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}
.satzung-section:last-child { border-bottom: none; }

.satzung-paragraph {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--se-red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

/* ── 16. VEREINSHEIM – INFO BOXEN ───────────────────────────── */
.info-box {
    background: #fff;
    border-radius: 8px;
    padding: 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.07);
    border: 1px solid rgba(0,0,0,.05);
    height: 100%;
}
.info-box h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

/* ── 17. KARTE ──────────────────────────────────────────────── */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.map-container iframe {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
}

/* ── 18. RÄUMLICHKEITEN ─────────────────────────────────────── */
.room-card { border-radius: 10px; overflow: hidden; }
.room-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}
.room-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}
.room-features .badge {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
}

/* ── 19. HAUSORDNUNG ────────────────────────────────────────── */
.ho-section {
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}
.ho-section:last-child { border-bottom: none; }

.ho-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--se-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.ho-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--se-red);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    flex-shrink: 0;
}

.checklist-box {
    background: rgba(192,57,43,.05);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-top: 0.5rem;
}
.checklist-item {
    font-size: 0.95rem;
    padding: 0.2rem 0;
}

/* ── 20. MITGLIEDSCHAFT ─────────────────────────────────────── */
.membership-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
    transition: transform .22s ease, box-shadow .22s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}
.membership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,.15);
}
.membership-card.featured {
    border-color: var(--se-red);
}
.membership-card .card-header {
    background-color: var(--se-dark);
    color: #fff;
    text-align: center;
    padding: 1.75rem 1.5rem;
}
.membership-card.featured .card-header {
    background-color: var(--se-red);
}
.price {
    font-family: 'Oswald', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 0.5rem;
}
.price-unit {
    font-size: 1rem;
    font-weight: 300;
    opacity: .8;
}
.membership-features li {
    padding: 0.35rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0,0,0,.05);
}
.membership-features li:last-child { border-bottom: none; }

/* Schritte */
.step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--se-red);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(192,57,43,.35);
}

/* ── 21. IMPRESSUM / LEGAL ──────────────────────────────────── */
.legal-nav .btn { font-size: 0.85rem; }

.legal-section { margin-bottom: 3rem; }
.legal-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--se-dark);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--se-red);
    margin-bottom: 1.5rem;
}
.legal-divider {
    border-color: #dee2e6;
    margin: 3rem 0;
}

/* ── 22. FOOTER ─────────────────────────────────────────────── */
.site-footer {
    background-color: var(--se-dark);
    color: rgba(255,255,255,.7);
    padding: 3rem 0 1.5rem;
    font-size: 0.9rem;
}

.footer-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,.95);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-logo { opacity: .85; }
.footer-tagline { font-size: 0.85rem; opacity: .8; margin-bottom: 0.75rem; }
.footer-address { font-size: 0.85rem; font-style: normal; }
.footer-address p { margin-bottom: 0.3rem; }

.site-footer nav a,
.site-footer a {
    color: rgba(255,255,255,.62);
    text-decoration: none;
    display: block;
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
    transition: color .18s ease;
}
.site-footer nav a:hover,
.site-footer a:hover {
    color: var(--se-red);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,.08);
    color: rgba(255,255,255,.72) !important;
    font-size: 1.2rem;
    margin-right: 0.5rem;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease;
}
.social-links a:hover {
    background-color: var(--se-red);
    color: #fff !important;
}

.footer-event { font-size: 0.85rem; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 1.5rem;
    margin-top: 2.5rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,.4);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom-links a {
    display: inline !important;
    margin-left: 1rem;
    font-size: 0.82rem;
}

/* ── 23. BACK TO TOP ────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background-color: var(--se-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease, background-color .2s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(192,57,43,.4);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background-color: var(--se-red-hover);
    color: #fff;
}

/* ── 24. 404 ERROR ──────────────────────────────────────────── */
.error-dice {
    font-size: 4rem;
    color: var(--se-red);
    letter-spacing: -0.1em;
    line-height: 1;
}

/* ── 25. RESPONSIVE TWEAKS ──────────────────────────────────── */
@media (max-width: 575px) {
    .hero-section    { padding: 3.5rem 0; }
    .page-header     { padding: 1.75rem 0; }
    .footer-bottom   { flex-direction: column; text-align: center; }
    .footer-bottom-links a { margin-left: 0.5rem; }
}

/* ── 26. NAVBAR SCROLL EFFECT ───────────────────────────────── */
.navbar-se {
    transition: padding-top .3s ease, padding-bottom .3s ease, box-shadow .3s ease;
}
.navbar-se.navbar-scrolled {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    box-shadow: 0 4px 24px rgba(0,0,0,.6);
}

/* ── 27. READING PROGRESS BAR ───────────────────────────────── */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--se-red) 0%, #e74c3c 100%);
    z-index: 1200;
    border-radius: 0 2px 2px 0;
    pointer-events: none;
    transition: width .08s linear;
}

/* ── 28. SCROLL REVEAL ──────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity .6s cubic-bezier(.4,0,.2,1),
                    transform .6s cubic-bezier(.4,0,.2,1);
    }
    .reveal.visible {
        opacity: 1;
        transform: none;
    }
    .reveal[data-delay="100"] { transition-delay: .1s; }
    .reveal[data-delay="200"] { transition-delay: .2s; }
    .reveal[data-delay="300"] { transition-delay: .3s; }
    .reveal[data-delay="400"] { transition-delay: .4s; }
    .reveal[data-delay="500"] { transition-delay: .5s; }
}

/* ── 29. HERO ENHANCEMENTS ──────────────────────────────────── */
@keyframes dicePulse {
    0%, 100% { filter: drop-shadow(0 0 0px rgba(192,57,43,0)); }
    50%       { filter: drop-shadow(0 0 14px rgba(192,57,43,.75)); }
}
.hero-dice {
    animation: dicePulse 3s ease-in-out infinite;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: none; }
}
.hero-title    { animation: heroFadeUp .7s .05s ease both; }
.hero-subtitle { animation: heroFadeUp .7s .2s  ease both; }
.hero-cta      { animation: heroFadeUp .7s .35s ease both; }

/* Hero – dezenter Glow-Akzent unten rechts */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(192,57,43,.12) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

/* ── 30. STATS BAR ──────────────────────────────────────────── */
.stats-bar {
    background: linear-gradient(135deg, var(--se-dark) 0%, var(--se-dark-2) 100%);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.stat-item { text-align: center; padding: 0.5rem 0; }
.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--se-red);
    line-height: 1;
    display: block;
}
.stat-label {
    font-size: .8rem;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-top: .4rem;
    display: block;
}

/* ── 31. ENHANCED FEATURE CARDS ─────────────────────────────── */
.feature-card {
    border-bottom: 3px solid transparent !important;
    transition: transform .25s ease,
                box-shadow .25s ease,
                border-color .25s ease !important;
}
.feature-card:hover {
    border-bottom-color: var(--se-red) !important;
}
.feature-card .card-icon {
    transition: transform .25s ease;
}
.feature-card:hover .card-icon {
    transform: scale(1.15);
}

/* ── 32. ENHANCED PAGE HEADER ───────────────────────────────── */
.page-header {
    background: linear-gradient(135deg,
        var(--se-dark) 0%,
        #222 70%,
        rgba(192,57,43,.18) 100%);
    border-bottom: 2px solid rgba(192,57,43,.4);
}

/* ── 33. ENHANCED SECTION TITLES ────────────────────────────── */
.section-title::after {
    transition: width .4s ease;
}
.section-title:hover::after {
    width: 80px;
}

/* ── 34. FOCUS RING ─────────────────────────────────────────── */
:focus-visible {
    outline: 2px solid var(--se-red);
    outline-offset: 3px;
    border-radius: 3px;
}

/* ── 35. BUTTON ENHANCEMENTS ────────────────────────────────── */
.btn-danger {
    background: linear-gradient(135deg, var(--se-red) 0%, #a93226 100%);
    border-color: transparent;
    transition: background .25s ease, box-shadow .25s ease, transform .15s ease;
    box-shadow: 0 2px 8px rgba(192,57,43,.35);
}
.btn-danger:hover {
    background: linear-gradient(135deg, #d44 0%, var(--se-red) 100%);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(192,57,43,.5);
    transform: translateY(-1px);
}
.btn-danger:active { transform: translateY(0); }

.btn-outline-light {
    transition: background .25s ease, color .25s ease, transform .15s ease;
}
.btn-outline-light:hover { transform: translateY(-1px); }
.btn-outline-light:active { transform: translateY(0); }

/* ── 36. ROOM CARD ENHANCEMENTS ─────────────────────────────── */
.room-card {
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,.07);
}
.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,.13);
}
.room-img {
    transition: transform .4s ease;
}
.room-card:hover .room-img {
    transform: scale(1.04);
}

/* ── 37. TIMELINE ENHANCEMENTS ──────────────────────────────── */
.timeline-content {
    transition: box-shadow .25s ease;
}
.timeline-item:hover .timeline-content {
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
}

/* ── 38. MEMBERSHIP CARD GLOW ───────────────────────────────── */
.membership-card.featured:hover {
    box-shadow: 0 16px 40px rgba(192,57,43,.25) !important;
}

/* ── 39. BACK-TO-TOP PULSE ──────────────────────────────────── */
@keyframes bttPop {
    0%   { transform: scale(0.7); opacity: 0; }
    70%  { transform: scale(1.1); }
    100% { transform: scale(1);   opacity: 1; }
}
.back-to-top.visible {
    animation: bttPop .3s ease both;
}
.back-to-top:hover {
    transform: translateY(-3px);
}
