@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #a3b02e; /* Hostingtrakt Olive-Grün */
    --mint: #70bf9b; /* Mint */
    --purple: #8076db; /* Lila */
    --dark: #2d2d2d; /* Fast-Schwarz */
    --white: #ffffff;
    --gray-bg: #f2f3ee; /* Leicht gelblich-grau, passend zu Olive */
    --gray-mid: #d0d4c0;
    --gray-light: #e8eade;
    --font: "Inter", sans-serif;
    --radius: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.7;
    font-size: 16px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: var(--primary);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
    color: var(--mint);
}

/* ===== HEADER ===== */
.site-header {
    background: var(--white);
}

.header-logo {
    position: absolute;
    z-index: 999;
    background-color: var(--white);
}

.logo-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.logo {
    height: 59px;
    width: auto;
    display: block;
}

.header-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
}

.header-tagline strong {
    color: var(--primary);
}

.header-hero {
    position: relative;
    width: 100%;
    height: 33vw;
    min-height: 480px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 24px;
    right: 32px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.93);
    border-left: 5px solid var(--purple);
    border-radius: var(--radius);
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.badge-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 600;
}

.badge-address {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
}

/* ===== SECTIONS ===== */
.section {
    padding: 72px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.colorful {
    font-size: 2.8rem;
    color: var(--dark);
}

.lead {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 16px;
    max-width: 720px;
}

/* ===== EVENT INTRO ===== */
.event-intro {
    background: var(--white);
}

.event-intro p {
    max-width: 720px;
    margin-bottom: 12px;
    color: var(--dark);
}

/* ===== DATES SECTION ===== */
.dates-section {
    background: var(--gray-bg);
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 8px;
}

.date-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border-top: 5px solid var(--primary);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

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

.date-card:nth-child(2) {
    border-top-color: var(--purple);
}

.date-tag {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    min-width: 48px;
    text-align: center;
}

.date-card:nth-child(2) .date-tag {
    color: var(--purple);
}

.date-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.date-day {
    font-size: 1.4rem;
    font-weight: 700;
}

.date-time {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.date-location {
    font-size: 0.88rem;
    color: #999;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.about-text p {
    color: var(--dark);
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.feature-list li {
    font-size: 1rem;
    padding: 12px 16px;
    background: var(--gray-bg);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    font-weight: 500;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.about-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    background: var(--gray-bg);
    border-radius: var(--radius);
    padding: 20px;
    border-top: 3px solid var(--purple);
}

.info-box:nth-child(2) {
    border-top-color: var(--purple);
}

.info-box h3 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.info-box p {
    color: var(--dark);
    font-size: 0.95rem;
}

/* ===== LIVESTREAM SECTION ===== */
.livestream-section {
    background: var(--dark);
}

.livestream-section .section-title,
.livestream-section .lead {
    color: var(--white);
}

.livestream-section .lead {
    color: rgba(255, 255, 255, 0.65);
}

.videos-container {
    display: flex;
    gap: 24px;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-width: 860px;
    margin: 24px auto 0;
    background: #1a1a1a;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--purple);
}

.video-placeholder-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    text-align: center;
}

.play-icon {
    width: 80px;
    height: 80px;
    min-height: 40px;
    opacity: 0.3;
    color: var(--purple);
}

.placeholder-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}

.placeholder-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.28);
}

/* ===== FOOTER ===== */
.site-footer {
    background: #222222;
    color: #ccc;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-top: 56px;
    padding-bottom: 40px;
}

.footer-bottom a {
    color: #555;
}
.footer-bottom a:hover {
    color: #555;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0.75);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #888;
}

.footer-col h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    /* color: var(--primary); */
    margin-bottom: 14px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li {
    font-size: 0.9rem;
    color: #888;
}

.footer-col ul a {
    color: #aaa;
    transition: color 0.15s;
}

.footer-col ul a:hover {
    color: var(--primary);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 18px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.82rem;
    color: #555;
}

.footer-bottom strong {
    color: #777;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .section {
        padding: 48px 0;
    }

    .colorful {
        font-size: 2rem;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 4px;
    }

    .hero-overlay {
        bottom: 12px;
        right: 12px;
    }

    .videos-container {
        flex-direction: column;
    }
}
