/* Hauptinhalt standardmäßig ausblenden */
.hidden-content {
    display: none !important;
}

/* Hintergrundfarbe und Zentrierung für den Button-Modus */
body.button-mode {
    background-color: #e0eeff;
    /* Helles Blau */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* Vollbildhöhe */
    margin: 0;
    flex-direction: column;
    /* Für mögliche zusätzliche Elemente */
}

/* Standard-Styling für den Button (mittlere Größe) */
#showContentBtn {
    padding: 15px 30px;
    font-size: 18px;
    background-color: #4a6fa5;
    /* Mittelblau */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    max-width: 90%;
}

/* Styling für die Zeilen im Button */
#showContentBtn span {
    display: block;
    /* Jede Zeile als Block anzeigen */
}

/* Hover-Effekt für den Button */
#showContentBtn:hover {
    background-color: #3a7db5;
    /* Dunkleres Blau beim Hover */
    transform: scale(1.05);
    /* Leichtes Vergrößern beim Hover */
}

/* Animation für den Blitzeffekt */
@keyframes flashEffect {
    0% {
        background-color: #e0eeff;
        /* Helles Blau */
    }

    50% {
        background-color: #ffffff;
        /* Weiß */
    }

    100% {
        background-color: #ffffff;
        /* Weiß */
    }
}

/* Klasse für den Blitzeffekt */
body.flash-effect {
    animation: flashEffect 1.5s ease-in-out;
}

/* RESPONSIVE ANPASSUNGEN */

/* Kleine Bildschirme (Mobilgeräte) */
@media (max-width: 767px) {
    #showContentBtn {
        padding: 12px 20px;
        font-size: 16px;
        max-width: 80%;
    }

    /* Verringerte Animationsdauer für mobile Geräte */
    body.flash-effect {
        animation-duration: 1s;
    }
}

/* Extra kleine Bildschirme */
@media (max-width: 480px) {
    #showContentBtn {
        padding: 10px 16px;
        font-size: 14px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
}

/* Mittlere Bildschirme (Tablets und kleine Laptops) */
@media (min-width: 768px) and (max-width: 1199px) {
    #showContentBtn {
        padding: 15px 25px;
        font-size: 17px;
    }
}

/* Größere Bildschirme (Desktop-Monitore) */
@media (min-width: 1200px) and (max-width: 1599px) {
    #showContentBtn {
        /* Dies ist der Standard, bleibt unverändert */
        padding: 15px 30px;
        font-size: 18px;
    }
}

/* Große Bildschirme */
@media (min-width: 1600px) and (max-width: 1919px) {
    #showContentBtn {
        padding: 18px 36px;
        font-size: 20px;
        border-radius: 6px;
        box-shadow: 0 5px 8px rgba(0, 0, 0, 0.12);
    }
}

/* Sehr große Bildschirme (4K und größer) */
@media (min-width: 1920px) {
    #showContentBtn {
        padding: 22px 44px;
        font-size: 24px;
        border-radius: 8px;
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    }

    /* Verstärkter Hover-Effekt für große Bildschirme */
    #showContentBtn:hover {
        transform: scale(1.07);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.18);
    }
}

/* Berücksichtigung der Ausrichtung für mobile Geräte */
@media (max-height: 500px) and (orientation: landscape) {
    #showContentBtn {
        padding: 8px 20px;
        font-size: 14px;
    }
}