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

html, body {
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0f0f0f;
    color: #eaeaea;
    display: flex;
    flex-direction: column;
}

/* =====================================================
   LOADER
===================================================== */
#loader {
    position: fixed;
    inset: 0;
    background: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#loader.hide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #333;
    border-top: 4px solid #e10600;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =====================================================
   FADE / SCROLL ANIMATION
===================================================== */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: none; }
}

/* =====================================================
   HEADER
===================================================== */
.site-header {
    background: linear-gradient(135deg, #111, #240000);
    border-bottom: 3px solid #c30000;
}

.header-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

/* LOGO */
.logo-round {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
    box-shadow: 0 0 30px rgba(255,0,0,0.35);
}

/* TITLE */
.site-title {
    font-size: 2.6rem;
    font-weight: 700;
}

.site-title span {
    color: #ff2a2a;
}

.tagline {
    margin-top: 10px;
    font-size: 1.05rem;
    opacity: 0.85;
}

/* =====================================================
   LANGUAGE SWITCH
===================================================== */
.language-switch {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 14px;
}

.language-switch .lang {
    padding: 6px 14px;
    border-radius: 14px;
    border: 1px solid #333;
    text-decoration: none;
    color: #aaa;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.15s ease;
}

.language-switch .lang:hover {
    color: #fff;
    border-color: #e10600;
}

.language-switch .lang.active {
    color: #fff;
    border-color: #e10600;
    background: rgba(225,6,0,0.15);
}

/* =====================================================
   MAIN
===================================================== */
.site-main {
    flex: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* =====================================================
   CARDS
===================================================== */
.card {
    background: #151515;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    margin-bottom: 30px;
}

.card h2 {
    color: #ff3b3b;
    margin-bottom: 18px;
}

/* =====================================================
   ÜBER UNS
===================================================== */
.about-card {
    text-align: center;
}

.about-intro {
    max-width: 720px;
    margin: 0 auto 30px;
}

.about-people {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 35px 0;
}

.person {
    max-width: 260px;
    text-align: center;
}

.person img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid #e10600;
    object-fit: cover;
    box-shadow: 0 0 25px rgba(225,6,0,.4);
    transition: transform .35s ease, box-shadow .35s ease;
}

.person img:hover {
    transform: scale(1.07);
    box-shadow: 0 0 35px rgba(225,6,0,.7);
}

.person h3 {
    margin: 14px 0 6px;
    font-size: 1.2rem;
}

.person p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* =====================================================
   YOUTUBE
===================================================== */
.yt-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 0 35px rgba(255,0,0,0.35);
}

.yt-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* =====================================================
   SOCIAL BARS
===================================================== */
.social-bar {
    display: block;
    padding: 20px;
    margin-bottom: 16px;
    border-radius: 18px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.social-bar:hover {
    transform: scale(1.04);
    opacity: 0.9;
}

.youtube   { background: #ff0000; }
.instagram { background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045); }
.tiktok    { background: linear-gradient(45deg, #000, #ff0050); }
.facebook  { background: #1877f2; }

/* =====================================================
   CONTACT FORM
===================================================== */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 16px;
    border-radius: 14px;
    border: none;
    background: #222;
    color: #fff;
}

.contact-form button {
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    border: none;
    background: #e10600;
    color: #fff;
    font-size: 1.05rem;
    cursor: pointer;
}

.contact-form button:hover {
    background: #ff2a2a;
}

/* MANUAL MAIL */
.manual-mail {
    margin-top: 24px;
    text-align: center;
    font-size: 0.95rem;
    opacity: 0.9;
}

.manual-mail a {
    color: #e10600;
    font-weight: 600;
    text-decoration: none;
}

.manual-mail a:hover {
    text-decoration: underline;
}

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
    background: #0b0b0b;
    text-align: center;
    padding: 26px;
    opacity: 0.65;
    font-size: 0.9rem;
}

/* =====================================================
   MOBILE
===================================================== */
@media (max-width: 700px) {
    .logo-round {
        width: 160px;
        height: 160px;
    }

    .site-title {
        font-size: 2.1rem;
    }

    .person img {
        width: 150px;
        height: 150px;
    }
}
