html, body {
    height: 100%;
    margin: 0;
    background-color: #fffdf7;
    font-family: 'Fredoka', sans-serif;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem;
}

h1, h2, h3 {
    font-family: 'Fredoka', sans-serif;
}

main a {
    color: #ff8800;
    text-decoration: none;
}

main a:hover {
    color: #cc6a00;
    text-decoration: underline;
}

.navbar {
    background: linear-gradient(to right, #ffb347, #ffcc33);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-family: 'Fredoka', sans-serif;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.btn-login {
    background-color: #ff6f61;
    color: white;
    transition: background-color 0.3s ease;
}

.btn-login:hover {
    background-color: #e85c50;
}

.logo {
    display: block;
    max-width: 700px;
    margin: 40px auto 20px auto;
    width: 100%; /* skaliert das Logo bei Bedarf mit */
    height: auto; /* behält das Seitenverhältnis bei */
}

@media (max-width: 768px) {
    .logo {
        max-width: 90%; /* oder z.B. 300px, je nach gewünschter Größe */
        margin: 20px auto 10px auto;
    }
}

.section-title {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #444;
}

.info-card {
    background-color: #fff2e6; /* leicht orange */
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    font-size: 2rem;
    color: #ff9800;
    margin-bottom: 10px;
}

footer {
    background-color: #f1f1f1;
    padding: 20px 0;
    text-align: center;
    font-family: 'Fredoka', sans-serif;
}

footer a {
    color: #444;
    margin: 0 10px;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.btn-warning {
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.login-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    background-color: white;
}

li.nextEvent {
    font-weight: bold;
    font-size: 1.2rem;
}

div.kigoReview img.reviewLogo {
    max-height: 100px;
    margin-right: 10px;
}

div.kigoReview p.reviewBook {
    text-align: right;
    text-style: italic;
}

div.kigoReview div.kigoReviewText {
    margin-top: 20px;
}

.bibelstelle {
    border-left: 4px solid #6a994e;
    background-color: #f0fdf4;
    padding: 1em;
    margin: 1em 0;
    font-style: italic;
    font-family: 'Georgia', serif;
    color: #1b4332;
}

.bibelstelle footer {
    margin-top: 0.5em;
    font-style: normal;
    font-weight: bold;
    text-align: right;
    color: #2d6a4f;
}

/* Print */

@media print {
    .no-print {
        display: none;
    }

    pre.summary {
        border: none;
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 0.8em;
    }
}

@media screen {
    .no-screen {
        display: none;
    }
}
