
@font-face {
    font-family: "LucidaHandwritingWeb";
    src: url("fonts/LHANDW.TTF") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --club-green: #176237;
    --club-green-dark: #0d4024;
    --club-green-light: #e8f0eb;
    --ink: #18201b;
    --muted: #69736d;
    --paper: #f6f7f5;
    --white: #ffffff;
    --line: rgba(23, 98, 55, 0.13);
    --shadow: 0 18px 50px rgba(15, 39, 25, 0.10);
    --shadow-hover: 0 24px 60px rgba(15, 39, 25, 0.16);
}

/* =========================================================
   GRUNDLAGEN
   ========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

img {
    max-width: 100%;
}

a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.section {
    padding: 105px 0;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--club-green);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.section-heading {
    text-align: center;
    margin-bottom: 48px;
}

.section-heading h2,
.legal-intro h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.section-heading p {
    color: var(--muted);
    margin-top: 12px;
}

.section-heading-split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
}

.section-heading-split > p {
    max-width: 390px;
    text-align: right;
    margin-bottom: 4px;
}

.section-heading-left {
    text-align: left;
    margin-bottom: 0;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: 590px;
    position: relative;
    overflow: hidden;
    display: flex;
    color: #fff;
    isolation: isolate;
    background: #15251b;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(1.025);
    transition: opacity 1.1s ease-in-out, transform 7s ease-out;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg,
            rgba(5, 20, 11, 0.82) 0%,
            rgba(5, 20, 11, 0.52) 38%,
            rgba(5, 20, 11, 0.12) 75%,
            rgba(5, 20, 11, 0.25) 100%),
        linear-gradient(0deg,
            rgba(5, 20, 11, 0.55) 0%,
            transparent 45%);
}

.hero-overlay {
    width: 100%;
    min-height: 590px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-inner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 590px;
}

.hero-copy {
    width: min(640px, 65%);
    margin-left: 27%;
}

.hero-kicker {
    margin-bottom: 14px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.88;
}

.hero h1 {
    margin-bottom: 15px;
    line-height: 0.98;
    text-shadow: 0 4px 20px rgba(0,0,0,0.28);
}

.hero-brand {
    display: block;
    font-family: "LucidaHandwritingWeb", cursive !important;
    font-size: clamp(3.4rem, 7vw, 6.8rem);
    font-weight: 400 !important;
    font-style: normal !important;
    letter-spacing: -0.035em;
    font-synthesis: none !important;
}

.hero-name {
    display: block;
    margin-top: 9px;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: clamp(1.1rem, 2.1vw, 1.65rem);
    font-weight: 700 !important;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-copy > p {
    max-width: 510px;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    opacity: 0.92;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.92rem;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-button:hover {
    transform: translateY(-2px);
}

.hero-button-primary {
    background: #fff;
    color: var(--club-green-dark);
}

.hero-button-primary:hover {
    background: var(--club-green-light);
}

.hero-button-ghost {
    border: 1px solid rgba(255,255,255,0.65);
    color: #fff;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(5px);
}

.hero-button-ghost:hover {
    background: rgba(255,255,255,0.18);
    border-color: #fff;
}

.hero-scroll {
    position: absolute;
    right: 0;
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.75;
}

.hero-scroll span {
    width: 1px;
    height: 42px;
    background: rgba(255,255,255,0.7);
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid rgba(23,98,55,0.08);
    box-shadow: 0 8px 25px rgba(10,30,18,0.07);
    backdrop-filter: blur(14px);
}

.nav-container {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    color: var(--club-green);
    text-decoration: none;
    font-family: "LucidaHandwritingWeb", cursive !important;
    font-size: 1.55rem;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    position: relative;
    color: #28322c;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 26px 0;
    transition: color 0.2s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 17px;
    height: 2px;
    background: var(--club-green);
    transition: right 0.25s ease;
}

.nav-links a:hover {
    color: var(--club-green);
}

.nav-links a:hover::after {
    right: 0;
}



/* =========================================================
   WILLKOMMEN
   ========================================================= */

.welcome {
    padding: 105px 0;
    background: #fff;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
    align-items: center;
}

.welcome-intro {
    position: relative;
}

.welcome-intro::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--club-green-light);
    left: -72px;
    top: -42px;
    z-index: 0;
}

.welcome-intro h2 {
    position: relative;
    z-index: 1;
    font-size: clamp(2.35rem, 4.5vw, 4rem);
    line-height: 1.03;
    letter-spacing: -0.04em;
}

.welcome-intro h2 span {
    color: var(--club-green);
}

.welcome-copy {
    max-width: 690px;
    font-size: 1.03rem;
    color: #56615a;
}

.welcome-copy p + p {
    margin-top: 16px;
}

.welcome-lead {
    color: var(--ink);
    font-size: 1.3rem;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 20px;
}


/* =========================================================
   VERANSTALTUNGEN
   ========================================================= */

.section-events {
    background:
        radial-gradient(circle at 90% 10%, rgba(23,98,55,0.07), transparent 25%),
        var(--paper);
}

.events {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    align-items: start;
}

.event-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-width: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.event-date {
    position: relative;
    background: var(--club-green);
    color: #fff;
    padding: 19px 22px;
}

.event-date::after {
    content: "EVENT";
    position: absolute;
    right: 20px;
    top: 21px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    opacity: 0.55;
}

.event-title-header {
    display: block;
    padding-right: 55px;
    font-size: 1.2rem;
    line-height: 1.3;
}

.event-content {
    padding: 21px;
}

.event-info {
    margin-bottom: 15px;
    color: #3e4942;
    font-size: 0.92rem;
}

.event-content > p:not(.event-info) {
    color: #68736c;
    font-size: 0.94rem;
}

.event-flyer {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: contain;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 10px;
    background: #f4f5f3;
    transition: transform 0.25s ease;
}

.event-flyer:hover {
    transform: scale(1.012);
}

.events-loading,
.no-events,
.instagram-loading,
.instagram-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--muted);
    padding: 25px;
}


/* =========================================================
   INSTAGRAM
   ========================================================= */

.instagram-section {
    background: linear-gradient(180deg, #eef4f0 0%, #f8faf8 100%);
    border-top: 1px solid rgba(23,98,55,0.08);
    border-bottom: 1px solid rgba(23,98,55,0.08);
}

.instagram-section .section-heading h2 {
    color: var(--club-green-dark);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
}

.instagram-section .section-heading h2::after {
    width: 72px;
    height: 4px;
}

.instagram-section .instagram-card {
    box-shadow: 0 10px 28px rgba(20,55,35,0.08);
}

.section-heading-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.section-heading-side p {
    max-width: 390px;
    text-align: right;
}

.text-link {
    color: var(--club-green);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
}

.text-link:hover {
    text-decoration: underline;
}

.instagram-posts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.instagram-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(15,39,25,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.instagram-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.instagram-media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #e9ece9;
}

.instagram-media::after {
    content: "Instagram";
    position: absolute;
    left: 14px;
    top: 14px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #fff;
    background: rgba(0,0,0,0.48);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.instagram-media img,
.instagram-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.instagram-card:hover .instagram-media img {
    transform: scale(1.045);
}

.instagram-content {
    padding: 18px 19px 20px;
}

.instagram-date {
    display: block;
    font-size: 0.78rem;
    color: #7a837d;
    margin-bottom: 7px;
}

.instagram-text {
    margin-bottom: 12px;
    font-size: 0.91rem;
    color: #4d5851;
}

.instagram-link {
    color: var(--club-green);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.86rem;
}

.instagram-link:hover {
    text-decoration: underline;
}


/* =========================================================
   SHOP
   ========================================================= */

.shop-section {
    background:
        linear-gradient(180deg, #f0f4f1 0%, #fff 100%);
}

.shop-intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

.shop-intro .section-heading {
    max-width: 650px;
}

.shop-intro .section-heading h2 {
    margin-bottom: 12px;
}

.shop-intro .section-heading p {
    max-width: 600px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.shop-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(15,39,25,0.08);
    text-decoration: none;
    color: var(--ink);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.shop-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-hover);
}

.shop-image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f2f4f2;
    overflow: hidden;
}

.shop-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.shop-card:hover .shop-image-wrap img {
    transform: scale(1.04);
}

.shop-card-content {
    position: relative;
    padding: 17px 18px 20px;
}

.shop-number {
    display: block;
    margin-bottom: 5px;
    color: var(--club-green);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.shop-card-content h3 {
    margin-bottom: 7px;
    font-size: 1.04rem;
}

.shop-card-link {
    color: var(--club-green);
    font-size: 0.84rem;
    font-weight: 800;
}

.shop-more {
    text-align: center;
    margin-top: 34px;
}

.shop-main-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    background: var(--club-green);
    color: #fff;
    box-shadow: 0 9px 22px rgba(23,98,55,0.18);
    transition: transform 0.2s ease, background 0.2s ease;
}

.shop-main-button:hover {
    background: var(--club-green-dark);
    transform: translateY(-2px);
}

.shop-main-button-top {
    white-space: nowrap;
}


/* =========================================================
   BILD-OVERLAY
   ========================================================= */

.image-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(4, 12, 8, 0.92);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.image-modal img {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
}


/* =========================================================
   DOWNLOADS
   ========================================================= */

.downloads-section {
    background: var(--paper);
}

.downloads {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.download-card {
    position: relative;
    display: grid;
    grid-template-columns: 45px 1fr;
    align-items: center;
    gap: 14px;
    padding: 22px;
    min-height: 145px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    text-decoration: none;
    color: var(--ink);
    box-shadow: 0 10px 28px rgba(15,39,25,0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.download-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.download-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--club-green-light);
    color: var(--club-green);
    font-size: 1.25rem;
    font-weight: 900;
}

.download-label {
    color: var(--club-green);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.download-card h3 {
    margin: 3px 0 2px;
    font-size: 1.05rem;
}

.download-card p {
    color: #717b75;
    font-size: 0.85rem;
    line-height: 1.45;
}

.download-arrow {
    position: absolute;
    right: 18px;
    top: 18px;
    color: var(--club-green);
    font-size: 1.15rem;
}


/* =========================================================
   IMPRESSUM / RECHTLICHES
   ========================================================= */

.section-dark {
    background:
        radial-gradient(circle at 0 0, rgba(75,145,101,0.18), transparent 30%),
        #17241c;
    color: #fff;
}

.legal-intro {
    margin-bottom: 55px;
}

.legal-intro .eyebrow {
    color: #a8d0b5;
}

.legal-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 70px;
}

.imprint {
    max-width: 850px;
}

.imprint h3 {
    margin-top: 28px;
    margin-bottom: 8px;
    color: #fff;
    font-size: 1rem;
}

.imprint h3:first-child {
    margin-top: 0;
    font-size: 1.2rem;
}

.imprint p {
    color: #c7d0ca;
    font-size: 0.9rem;
}

.legal-notes {
    padding-left: 45px;
    border-left: 1px solid rgba(255,255,255,0.13);
}

.legal-notes h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

.legal-notes h4 {
    margin-top: 27px;
    margin-bottom: 7px;
    color: #fff;
    font-size: 0.94rem;
}

.legal-notes p {
    color: #aeb9b1;
    font-size: 0.84rem;
    line-height: 1.65;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    background: #0d1510;
    color: #aeb8b1;
    padding: 40px 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 45px;
    padding-bottom: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.78rem;
    color: #89948c;
}

.footer-logo {
    color: #fff;
    font-family: "LucidaHandwritingWeb", cursive;
    font-size: 1.8rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a,
.footer-bottom a {
    color: #c9d0cb;
    text-decoration: none;
    font-size: 0.8rem;
}

.footer-links a:hover,
.footer-bottom a:hover {
    color: #fff;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid rgba(255,255,255,0.17);
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    transition: background 0.2s ease;
}

.footer-social:hover {
    background: rgba(255,255,255,0.08);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.09);
    font-size: 0.75rem;
}


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

@media (min-width: 1450px) {
    .events {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .event-flyer {
        height: 330px;
    }
}

@media (max-width: 1050px) {

    .hero-copy {
        margin-left: 30%;
        width: min(560px, 60%);
    }

    .nav-links {
        gap: 18px;
    }

    .welcome-grid {
        gap: 55px;
    }

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

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

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

@media (max-width: 800px) {

    .section {
        padding: 78px 0;
    }

    .hero,
    .hero-overlay,
    .hero-inner {
        min-height: 510px;
    }

    .hero-copy {
        margin-left: 25%;
        width: 68%;
    }

    .hero-scroll {
        display: none;
    }

    .nav-container {
        min-height: 64px;
    }

    .nav-links {
        gap: 13px 18px;
    }

    .nav-links a {
        padding: 22px 0;
        font-size: 0.82rem;
    }

    .nav-links a::after {
        bottom: 14px;
    }

    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .section-heading-split,
    .shop-intro {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .section-heading-split > p,
    .section-heading-side p {
        text-align: left;
        margin: 0;
    }

    .section-heading-side {
        align-items: flex-start;
    }

    .shop-main-button-top {
        margin-top: 5px;
    }

    .instagram-posts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .legal-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .legal-notes {
        padding-left: 0;
        padding-top: 40px;
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,0.13);
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

@media (max-width: 650px) {

    .container {
        width: min(94%, 560px);
    }

    .hero,
    .hero-overlay,
    .hero-inner {
        min-height: 475px;
    }

    .hero-shade {
        background:
            linear-gradient(180deg,
                rgba(5,20,11,0.18) 0%,
                rgba(5,20,11,0.72) 72%,
                rgba(5,20,11,0.90) 100%);
    }

    .hero-copy {
        width: 100%;
        margin-left: 0;
        padding-top: 110px;
    }

    .hero-brand {
        font-size: clamp(3rem, 15vw, 4.7rem);
    }

    .hero-name {
        font-size: 0.92rem;
        letter-spacing: 0.12em;
    }

    .hero-actions {
        margin-top: 24px;
    }

    .hero-button {
        min-height: 44px;
        padding: 0 16px;
        font-size: 0.82rem;
    }

    .nav-container {
        flex-direction: column;
        padding: 11px 0 12px;
        gap: 6px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        gap: 5px 14px;
    }

    .nav-links a {
        padding: 5px 0;
        font-size: 0.76rem;
    }

    .nav-links a::after {
        bottom: 0;
    }

    .welcome {
        padding: 75px 0;
    }

    .welcome-intro::before {
        width: 80px;
        height: 80px;
        left: -20px;
        top: -20px;
    }

    .events,
    .shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .event-card,
    .shop-card {
        border-radius: 13px;
    }

    .event-date {
        padding: 12px 12px;
    }

    .event-date::after {
        display: none;
    }

    .event-title-header {
        padding-right: 0;
        font-size: 0.94rem;
    }

    .event-content {
        padding: 12px;
    }

    .event-info {
        font-size: 0.76rem;
        line-height: 1.5;
    }

    .event-content > p:not(.event-info) {
        font-size: 0.78rem;
        line-height: 1.45;
    }

    .event-flyer {
        height: auto;
        max-height: 500px;
        margin-top: 12px;
    }

    .instagram-posts {
        grid-template-columns: 1fr;
    }

    .instagram-card {
        border-radius: 14px;
    }

    .shop-card-content {
        padding: 12px;
    }

    .shop-number {
        font-size: 0.58rem;
    }

    .shop-card-content h3 {
        font-size: 0.88rem;
        line-height: 1.25;
    }

    .shop-card-link {
        font-size: 0.75rem;
    }

    .shop-more {
        margin-top: 24px;
    }

    .shop-main-button {
        width: 100%;
        padding: 0 15px;
    }

    .downloads {
        gap: 12px;
    }

    .download-card {
        min-height: 120px;
        padding: 17px;
    }

    .download-card h3 {
        font-size: 0.96rem;
    }

    .download-card p {
        font-size: 0.78rem;
    }

    .footer-links {
        gap: 12px 16px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 420px) {

    .section {
        padding: 65px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .legal-intro h2 {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 290px;
    }

    .hero-button {
        width: 100%;
    }

    .events,
    .shop-grid {
        gap: 9px !important;
    }

    .event-content {
        padding: 10px;
    }

    .event-date {
        padding: 11px 10px;
    }

    .event-title-header {
        font-size: 0.86rem;
    }

    .event-info {
        font-size: 0.71rem;
    }

    .shop-card-content {
        padding: 10px;
    }

    .shop-card-content h3 {
        font-size: 0.8rem;
    }

    .download-card {
        grid-template-columns: 39px 1fr;
        gap: 11px;
    }

    .download-icon {
        width: 37px;
        height: 37px;
        font-size: 1rem;
    }

    .download-arrow {
        display: none;
    }
}



/* =========================================================
   V2.3 – SCROLL / NAVIGATION / MOBILE POLISH
   ========================================================= */

/* Aktiver Navigationspunkt beim Scrollen */
.nav-links a.active {
    color: var(--club-green);
}

.nav-links a.active::after {
    right: 0;
}

/* Der aktuell sichtbare Bereich bekommt eine dezente Akzentlinie.
   Die Überschrift selbst bleibt bewusst dunkel, damit sie nicht
   zu stark vom Inhalt ablenkt. */
.section-heading h2 {
    position: relative;
    display: inline-block;
}

.section-heading h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 42px;
    height: 3px;
    border-radius: 99px;
    background: var(--club-green);
    transform-origin: left center;
    transition: width 0.3s ease;
}

/* Welcome-Kreis: auf kleinen Displays nicht mehr vor dem Wort
   "Schön" nach links weglaufen lassen. */
@media (max-width: 800px) {
    .welcome-intro {
        padding-left: 0;
        padding-top: 10px;
    }

    .welcome-intro::before {
        left: 12px;
        top: -24px;
        width: 96px;
        height: 96px;
    }
}

/* Auf sehr kleinen Geräten etwas mehr Luft zwischen den Bereichen,
   damit Überschrift, Kreis und Text nicht ineinander laufen. */
@media (max-width: 480px) {
    .welcome {
        padding-top: 78px;
        padding-bottom: 82px;
    }

    .welcome-intro::before {
        left: 10px;
        top: -20px;
        width: 88px;
        height: 88px;
    }

    .welcome-intro .eyebrow {
        position: relative;
        z-index: 2;
    }

    .welcome-intro h2 {
        z-index: 2;
    }
}

/* Mobile Navigation: aktive Farbe bleibt auch beim Wischen sichtbar */
@media (max-width: 1050px) {
    .nav-links a.active {
        color: var(--club-green);
    }
}
