@import url('https://fonts.googleapis.com/css?family=Poppins:wgth@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-color: #FFFFFF;
    --second-bg-color: #FF00FF;
    --third-bg-color: #FFD700;
    --text-color: #ddd;
    --main-color: #FF00FF;
    --card-bg: rgba(12, 12, 12, 0.65);
    --card-glow: rgba(255, 255, 255, 0.1);
    --highlight: #ffd700;
}

.lesungenDiv {
    min-height: 100vh;
    width: 100%;
    padding: 12rem 5% 5rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: linear-gradient(180deg, #819d6e 0%, #494684 100%);
    position: relative;
}

.lesungenContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.lesungenHeading h1 {
    font-size: 5rem;
    font-weight: 800;
    color: var(--bg-color);
    margin-bottom: 2rem;
    text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
}

.lesungenBody {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

/* Force column layout for no reading card area */
.lesungenBody.column {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lesungenBody img {
    width: 45%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.lesungenBody img:hover {
    transform: scale(1.02);
}

.readingCard {
    max-width: 640px;
    width: 100%;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px var(--card-glow);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-color);
    font-size: 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.readingCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(255, 255, 255, 0.15);
}

.readingCard .eventTitle {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--highlight);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.readingCard p {
    line-height: 1.7;
    margin: 0.5rem 0;
    color: #f1f1f1;
}

.readingCard em {
    color: #ccc;
    font-style: italic;
}

.readingCard strong {
    font-weight: 600;
    color: var(--bg-color);
}

.readingCard .note {
    font-style: italic;
    font-size: 1.4rem;
    color: #f5f5f5;
    margin-top: 2rem;
    padding-left: 1rem;
    border-left: 3px solid var(--highlight);
}

.readingCard .emojiLabel {
    font-weight: 600;
    color: var(--highlight);
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .lesungenDiv {
        padding: 9rem 5% 3rem;
        flex-direction: column;
    }

    .lesungenBody {
        flex-direction: column;
        align-items: center;
    }

    .readingCard {
        padding: 2rem;
    }

    .readingCard .eventTitle {
        font-size: 2rem;
    }

    .lesungenBody img {
        width: 80%;
    }
}
