/* ================================
   GLOBAL – Seite & Fade-In
================================ */

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Georgia', serif;
    color: #ffffff;
}

body {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: fadeIn 1.4s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}


/* ================================
   STARTSEITE (Desktop)
================================ */

body.start-page {
    background-image: url("../img/start/start_desktop_bg.png");
    width: 100%;
    height: 100vh;
    position: relative;
}

/* Buttons rechts */
.start-container {
    position: absolute;
    top: 120px;
    right: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.start-btn {
    width: 120px;
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.start-btn:hover {
    transform: scale(1.08);
}

/* Button-Grafiken */
.btn-kalei { background-image: url("../img/buttons/kaleidoskop.png"); }
.btn-satire { background-image: url("../img/buttons/satire.png"); }
.btn-wahrheit { background-image: url("../img/buttons/wahrheit.png"); }


/* ================================
   MENÜ + TEXTSEITEN (Desktop)
================================ */

body.kaleidoskop-info  { background-image: url("../img/kaleidoskop/bg_info.png"); }
body.kaleidoskop-text  { background-image: url("../img/kaleidoskop/bg_text.png"); }

body.satire-info       { background-image: url("../img/satire/bg_info.png"); }
body.satire-text       { background-image: url("../img/satire/bg_text.png"); }

body.wahrheit-info     { background-image: url("../img/wahrheit/bg_info.png"); }
body.wahrheit-text     { background-image: url("../img/wahrheit/bg_text.png"); }


/* ================================
   MENÜ – Linke Leiste
================================ */

.side-menu {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.side-menu a {
    text-decoration: none;
    color: white;
    font-size: 26px;
    transition: 0.3s;
}

.side-menu a:hover {
    opacity: 0.7;
}


/* ================================
   TEXT-BOX
================================ */

.content-box {
    width: 55%;
    margin: 0 auto;
    margin-top: 120px;
    background: rgba(0,0,0,0.35);
    padding: 40px 60px;
    border-radius: 4px;
    line-height: 1.6;
    font-size: 20px;
}


/* ================================
   BACK BUTTON
================================ */

.back-btn {
    position: absolute;
    top: 30px;
    left: 40px;
    color: transparent;
    width: 70px;
    height: 70px;
    background: rgba(0,0,0,0);
    text-indent: -9999px;
}

.back-icon {
    background-image: url("../img/buttons/back.png");
    background-size: cover;
    background-position: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}


/* ================================
   SOCIAL ICONS – Desktop
================================ */

.social-links {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 22px;
}

.social-links a {
    width: 70px;
    height: 70px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.12);
}

.icon-ig  { background-image: url("../img/social/instagram.png"); }
.icon-tt  { background-image: url("../img/social/tiktok.png"); }
.icon-yt  { background-image: url("../img/social/youtube.png"); }


/* ================================
   MOBILE VERSION
================================ */

@media (max-width: 768px) {

    /* MOBILE STARTSEITE */
    body.start-page {
        background-image: url("../img/start/start_mobile_bg.png");
        background-position: center;
    }

    .start-container {
        top: auto;
        bottom: 120px;
        right: 20px;
        gap: 20px;
    }

    .start-btn {
        width: 90px;
        height: 90px;
    }

    /* Mobile Hintergründe */
    body.kaleidoskop-info { background-image: url("../img/kaleidoskop/bg_info_mobile.png"); }
    body.kaleidoskop-text { background-image: url("../img/kaleidoskop/bg_text_mobile.png"); }

    body.satire-info      { background-image: url("../img/satire/bg_info_mobile.png"); }
    body.satire-text      { background-image: url("../img/satire/bg_text_mobile.png"); }

    body.wahrheit-info    { background-image: url("../img/wahrheit/bg_info_mobile.png"); }
    body.wahrheit-text    { background-image: url("../img/wahrheit/bg_text_mobile.png"); }

    /* Menü */
    .side-menu {
        left: 20px;
    }

    .side-menu a {
        font-size: 22px;
    }

    /* Textbox */
    .content-box {
        width: 85%;
        padding: 25px;
        margin-top: 140px;
        font-size: 18px;
    }

    /* Back Button */
    .back-icon {
        width: 60px;
        height: 60px;
        left: 20px;
        top: 20px;
    }

    /* Social Icons */
    .social-links {
        bottom: 90px;
        right: 125px;
        gap: 16px;
    }

    .social-links a {
        width: 60px;
        height: 60px;
    }

    /* ================================
       FOOTER MOBILE
    ================================= */
    .wv-footer {
        padding: 20px 0;
        box-shadow: 0 -3px 10px rgba(255,215,0,0.15);
    }

    .footer-links a {
        display: inline-block;
        margin: 6px 10px;
        font-size: 14px;
    }

    .footer-copy {
        font-size: 13px;
    }

} /* ← GANZ Wichtig: schließt den Media-Block */
