:root {
    --green: #006b3c;
    --green-dark: #003d22;
    --green-mid: #0b7a47;
    --green-soft: #eef7f1;
    --blue: #1596c1;
    --blue-light: #d7f1f7;
    --cream: #fffaf0;
    --wood: #8a4f22;
    --gold: #efb52c;
    --white: #ffffff;
    --text: #1f2933;
    --muted: #667085;
    --border: #dbe7df;
    --shadow: 0 16px 40px rgba(0, 70, 39, 0.14);
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

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

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #f7faf8;
    line-height: 1.55;
}

.hero-title,
h1,
h2,
.section-title {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
}

a {
    color: inherit;
}

.site-header {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav {
    max-width: 1180px;
    margin: 0 auto;
    min-height: 96px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.hero {
    display: flex;
    flex-direction: column;
}

.hero-start {
    position: relative;

    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: url(img/rauten.svg) center center / cover no-repeat;
    color: #fff;
    text-align: center;
    flex-grow: 1;
    border-bottom: 7px solid var(--green);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(920px, 100%);
    margin: 0 auto;
}

.hero-title-img {
    display: block;
    /*max-width: min(680px, 90%);*/
    /*max-height: 45vh;*/
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

.hero-title-img.mobile {
    display: none;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 18px 28px;
    border-radius: 9px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-button.primary {
    background: var(--green);
    color: white;
    /*border-color: var(--gold);*/
}

.hero-button.secondary {
    color: var(--green);
    background: var(--green-soft);
    /*backdrop-filter: blur(6px);*/
    border-color: var(--green);
    border-width: 4px;
}

.info-strip {
    background: var(--white);
    box-shadow: var(--shadow);
}

.info-grid {
    max-width: 1120px;
    margin: 0 auto;
    padding: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 8px 34px;
    border-right: 1px solid #cedbd3;
}

.info-item:last-child {
    border-right: 0;
}

.info-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    border: 4px solid var(--green);
    color: var(--green);
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 2rem;
    font-weight: 900;

    svg {
        /*fill: var(--green);*/
        /*width: 32px;*/
    }
}

.info-item strong {
    display: block;
    color: var(--green);
    font-size: 1.5rem;
    line-height: 1.1;
}

.info-item span {
    display: block;
    color: var(--muted);
    font-size: 0.95rem;
    margin-top: 4px;
}

main {
    max-width: 1120px;
    margin: 0 auto;
    padding: 44px 22px 0;
}

.intro {
    display: flex;
    flex-direction: column;
    /*gap: 42px;*/
    align-items: center;
    /*margin-bottom: 34px;*/
    text-align: center;
}

.intro h2 {
    margin: 0 0 8px;
    color: var(--green);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
}

.intro h3 {
    margin: 0 0 22px;
    color: var(--green-dark);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    line-height: 1.1;
}

.intro-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 22px;
    color: var(--green-dark);
    font-weight: 700;
    margin-bottom: 20px;
}

.intro-meta span {
    white-space: nowrap;
}

.small-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--green), transparent);
    margin: 18px 0 22px;
}

.club-mark {
    justify-self: center;
    width: 260px;
    height: 220px;
    border-radius: 50% 50% 45% 45%;
    background: linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)),
    repeating-linear-gradient(90deg, #d6ebd9 0 12px, #ffffff 12px 24px);
    border: 5px solid var(--green);
    display: grid;
    place-items: center;
    color: var(--green);
    text-align: center;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 1.25rem;
    padding: 24px;
    box-shadow: var(--shadow);
}

.club-mark strong {
    display: block;
    font-style: normal;
    font-size: 2.3rem;
    line-height: 1;
    margin-bottom: 10px;
}

.event-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 16px;
    margin-bottom: 50px;
}

.highlight-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform .2s ease;
}

.highlight-card:hover {
    transform: translateY(-4px);
}

.highlight-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.highlight-card div {
    padding: 20px;
}

.highlight-card h2 {
    color: var(--green);
    margin: 0 0 10px;
    font-size: 1.5rem;
    line-height: 1.1;
}

.highlight-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text);
}

@media (max-width: 1000px) {
    .event-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .event-highlights {
        grid-template-columns: 1fr;
    }

    .highlight-card img {
        height: 200px;
    }
}

.program-panel {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: stretch;
    background: linear-gradient(135deg, #f4faf6, #ffffff);
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--green);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    margin: 0 0 18px;
}

.section-title::before,
.section-title::after {
    content: "";
    height: 3px;
    flex: 1;
    background: var(--green);
    opacity: 0.65;
}

.schedule {
    display: grid;
    gap: 0;
}

.schedule-row {
    display: grid;
    grid-template-columns: 62px 120px 1fr;
    gap: 18px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 2px dotted rgba(0, 107, 60, 0.45);
}

.schedule-row:last-child {
    border-bottom: 0;
}

.round-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    font-weight: 900;
}

.schedule-time {
    font-weight: 800;
    font-size: 1.05rem;
}

.program-image {
    min-height: 360px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.2)),
    radial-gradient(circle at 40% 35%, rgba(255, 214, 120, 0.95), transparent 16%),
    linear-gradient(135deg, #2f1a0b, #be7b22 45%, #0f4b2e);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 28px;
    color: #fff;
}

.cheers {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: 0.95;
    pointer-events: none;
}

.wood-sign {
    position: relative;
    z-index: 2;
    background: linear-gradient(90deg, rgba(80, 40, 12, 0.3), rgba(255, 255, 255, 0.08)),
    #7b451d;
    border: 4px solid #4f260e;
    transform: rotate(-5deg);
    padding: 18px 26px;
    border-radius: 8px;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 1.8rem;
    box-shadow: 0 14px 20px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.section-transparent {
    margin: 46px 0 44px;
    text-align: center;
}

.section-transparent .section-title {
    justify-content: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.section-transparent p {
    margin: -6px 0 22px;
    color: var(--green-dark);
    font-size: 1.12rem;
}

.frame-integration {
    max-width: 980px;
    margin: 0 auto;
    border: 3px solid var(--green);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
}

.frame-integration iframe {
    display: block;
    width: 100%;
    border: 0;
    background: #fff;
}

.footer {
    margin-top: 34px;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer::after {
    content: "♫";
    position: absolute;
    right: 60px;
    bottom: -30px;
    font-size: 9rem;
    opacity: 0.08;
    transform: rotate(-12deg);
}

.footer-grid {
    max-width: 1120px;
    margin: 0 auto;
    padding: 42px 22px 32px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 34px;
    position: relative;
    z-index: 1;
}

.footer h3 {
    margin: 0 0 14px;
    font-size: 1.1rem;
}

.footer p, .footer a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    margin: 4px 0;
    display: block;
    font-size: 0.95rem;
}

.footer-logo {
    width: 130px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    font-weight: 900;
    margin-bottom: 12px;
}

.socials {
    display: flex;
    gap: 12px;

    svg {
        fill: #fff;
        /*width: 12px;*/
    }
}

.socials a {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 50%;
    font-weight: 900;
}

.copyright {
    text-align: center;
    padding: 0 22px 26px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

@media (max-height: 750px) {
    .hero {
        height: auto !important;
    }
    .program-panel {
        height: auto !important;
    }
}

@media (max-width: 1040px) {
    .menu {
        display: none;
    }

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

    .info-item {
        border-right: 0;
        border-bottom: 1px solid var(--border);
        padding: 16px 10px;
    }

    .info-item:last-child {
        border-bottom: 0;
    }

    .intro {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .club-mark {
        display: none;
    }

    .program-panel {
        grid-template-columns: 1fr;
    }

    .program-image {
        display: none;
    }

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

@media (max-width: 640px) {
    .nav {
        min-height: 72px;
    }

    .hero {
        height: 100dvh;
    }

    .hero-title-img.mobile {
        display: block
    }

    .hero-title-img.desktop {
        display: none
    }

    .hero-button {
        width: 100%;
        min-width: 0;
    }

    .info-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;

        svg {
            width: 24px;
            height: 24px;
        }
    }

    .schedule-row {
        grid-template-columns: 48px 110px 1fr;
        gap: 12px;
        font-size: 0.92rem;
    }

    .round-icon {
        width: 42px;
        height: 42px;
    }

    .program-panel {
        padding: 22px 16px;
    }

    .section-title::before, .section-title::after {
        display: none;
    }

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

.notice {
    max-width: 1100px;
    margin: 30px auto 30px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    /*background: #eef7f1;*/
    border-left: 6px solid var(--green);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.notice-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice strong {
    color: var(--green);
    text-decoration: underline;
}

.notice p {
    margin: 6px 0 0;
    color: var(--text);
}
