/* =========================================================
   startseite.css
   Startseite / öffentliche Infoseite
   ========================================================= */

.page-startseite .content {
    text-align: center;
}

.page-startseite .content h2 {
    margin-bottom: 12px;
}

.page-startseite .content p {
    margin-bottom: 16px;
    line-height: 1.6;
}

.page-startseite .content a {
    font-weight: 600;
}

.page-startseite .event-date {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 8px 0 14px;
}

.page-startseite .event-times {
    line-height: 1.6;
    margin-bottom: 18px;
}

.page-startseite .event-times p {
    margin: 4px 0;
}

.page-startseite .intro-text {
    margin-top: 18px;
    font-size: 0.9rem;
    text-align: left;
}

.page-startseite .more-info-link a {
    font-size: 1.2rem;
}

/* Popup */
.info-popup {
    display: none;
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border: 4px solid var(--color-success);
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-width: 400px;
    width: calc(100% - 30px);
    border-radius: 10px;
}

.info-popup.is-visible {
    display: block;
}

.info-popup-label {
    margin-bottom: 8px;
}

.info-popup-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-text);
}

.info-popup-text {
    font-size: 1.05rem;
    margin-bottom: 14px;
    line-height: 1.5;
}