/* Base */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
    background: radial-gradient(circle at 20% 10%, #123b2d 0%, #0e2f24 35%, #0a231b 100%);
}

/* Video entfernt – statischer Hintergrund */

/* Top Header */
.top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 35, 27, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.top-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

/* Layout */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px 20px 120px;
    padding-top: 160px;
}
.header {
    text-align: center;
    margin-top: 10vh;
}
.logo {
    width: 160px;
    height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.6));
}
.header h1 {
    margin: 16px 0 8px;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 0.2px;
}
.tagline {
    margin: 0 auto;
    max-width: 720px;
    color: #e8e8e8;
    font-weight: 400;
}

/* Links */
.links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin: 28px 0 40px;
}
.link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(6px);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.18);
    transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}
.link-btn:hover { transform: translateY(-2px); background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.28); }
.link-btn:active { transform: translateY(0); }
.facebook { background: linear-gradient(90deg, rgba(24,119,242,0.2), rgba(24,119,242,0.1)); }
.website { background: linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08)); }
.instagram { background: linear-gradient(90deg, rgba(225,48,108,0.2), rgba(193,53,132,0.1)); }
.tiktok { background: linear-gradient(90deg, rgba(0,242,234,0.2), rgba(254,44,85,0.12)); }
.google { background: linear-gradient(90deg, rgba(66,133,244,0.2), rgba(52,168,83,0.12)); }

/* About */
.about h2, .events h2 {
    font-size: 28px;
    margin: 8px 0 18px;
}
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
}
.about-text p { color: #f1f1f1; line-height: 1.7; }
.about-media figure { margin: 0; }
.about-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow: 0 18px 48px rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.16);
}
.about-media figcaption {
    font-size: 13px;
    color: #e6e6e6;
    opacity: 0.9;
    margin-top: 8px;
}

/* Events */
.events { margin-top: 28px; }
.events p { color: #f1f1f1; line-height: 1.7; }

/* Floating Menu Button */
.floating-menu {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10;
    padding: 14px 18px;
    border-radius: 999px;
    background: #00a86b;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.floating-menu:hover { transform: translateY(-3px); box-shadow: 0 24px 50px rgba(0,0,0,0.45); background: #00b774; }

/* Footer */
.footer {
    position: relative;
    margin-top: 48px;
    padding: 28px 20px;
    background: rgba(0,0,0,0.55);
    border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto 8px;
}
.footer h3 { margin: 0 0 10px; font-size: 16px; }
.footer p, .footer a { color: #eaeaea; text-decoration: none; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin: 6px 0; }
.footer a:hover { text-decoration: underline; }
.copyright { text-align: center; color: #d9d9d9; opacity: 0.9; margin: 8px 0 0; font-size: 14px; }

/* Responsive */
@media (max-width: 840px) {
    .about-grid { grid-template-columns: 1fr; }
    .header h1 { font-size: 32px; }
    .logo { width: 140px; height: 140px; }
    .top-logo { width: 100px; height: 100px; }
}

@media (max-width: 768px) {
    .container {
        padding: 24px 16px 100px;
        padding-top: 140px;
    }
    .header {
        margin-top: 5vh;
    }
    .top-logo {
        width: 90px;
        height: 90px;
    }
    .logo {
        width: 120px;
        height: 120px;
    }
    .header h1 {
        font-size: 28px;
    }
    .tagline {
        font-size: 14px;
        padding: 0 10px;
    }
    .links {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 24px 0 32px;
    }
    .link-btn {
        padding: 16px 20px;
        font-size: 15px;
    }
    .about h2, .events h2 {
        font-size: 24px;
        margin: 6px 0 14px;
    }
    .about-text p, .events p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 12px;
    }
    .about-grid {
        gap: 18px;
    }
    .about-media img {
        border-radius: 12px;
    }
    .floating-menu {
        right: 16px;
        bottom: 16px;
        padding: 12px 16px;
        font-size: 14px;
    }
    .footer {
        padding: 24px 16px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer h3 {
        font-size: 15px;
    }
    .footer p, .footer a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 12px 90px;
        padding-top: 120px;
    }
    .header h1 {
        font-size: 24px;
    }
    .logo {
        width: 100px;
        height: 100px;
    }
    .top-logo {
        width: 80px;
        height: 80px;
    }
    .tagline {
        font-size: 13px;
    }
    .about h2, .events h2 {
        font-size: 22px;
    }
    .about-text p, .events p {
        font-size: 14px;
    }
    .floating-menu {
        right: 12px;
        bottom: 12px;
        padding: 10px 14px;
        font-size: 13px;
    }
}


