/* -----------------------------------------------
   GLOBAL FADE-IN
------------------------------------------------*/
.fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp .6s ease forwards;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -----------------------------------------------
   TITEL
------------------------------------------------*/
.ekir-auszug-title {
    text-align: center;
    margin-bottom: 1.4rem;
}

.ekir-auszug-title h2 {
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 700;
    color: #333;
}

.ekir-auszug-title .icon {
    font-size: 40px;
    margin-right: 8px;
}

/* -----------------------------------------------
   GRID
------------------------------------------------*/
.ekir-auszug-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.2rem;
}

/* -----------------------------------------------
   KARTEN
------------------------------------------------*/
.event-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 16px rgba(0,0,0,0.08);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: transform .15s ease, box-shadow .15s ease;
}
.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Farbleiste */
.event-colorbar {
    height: 6px;
    width: 100%;
}

/* BODY */
.event-body {
    padding: 16px;
    position: relative;
}

.event-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 4px;
}

.event-subtitle {
    color: #444;
    margin-top: 4px;
}

.event-person {
    margin-top: 6px;
    font-size: .9rem;
    color: #666;
}

/* FOOTER */
.event-footer {
    background: #fafafa;
    padding: 12px 16px;
    border-top: 1px solid #eee;
}
.event-address {
    font-size: .9rem;
    color: #555;
    line-height: 1.35;
}

/* NAVICON */
.nav-icon {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: #eef3ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 40;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.nav-icon svg {
    width: 20px;
    height: 20px;
    fill: #1a73e8;
}

/* -----------------------------------------------
   PREMIUM PAGE HEADER (optional)
------------------------------------------------*/
.premium-page-header {
    width: 100%;
    background: #f3efe9;
    padding: 60px 0 50px;
    border-bottom: 2px solid #e2dbcf;
    margin-bottom: 50px;
}

.premium-page-header .pph-inner {
    text-align: center;
}

.premium-page-header h1 {
    font-size: clamp(28px, 5vw, 42px);
    margin-top: 10px;
    font-weight: 700;
    color: #333;
}

.pph-icon {
    font-size: 52px;
    line-height: 1;
}

/* -----------------------------------------------
   PREMIUM CONTENT BOX (optional)
------------------------------------------------*/
.premium-cont
/* ===================================================================
   KINDERGOTTESDIENST – Keine Termine (Kindgerechter Hinweis)
   =================================================================== */

.kigo-no-events {
    display: flex;
    justify-content: center;
    margin: 80px auto 120px;
    padding: 0 20px;
}

.kigo-no-events-inner {
    background: #fffdfa;
    border-radius: 22px;
    padding: 55px 55px 45px;
    max-width: 620px;
    width: 100%;
    box-shadow: 0 14px 30px rgba(0,0,0,0.15);
    position: relative;
    text-align: center;
    animation: kigoFadeIn 0.9s ease-out;
}

/* Kritzel-Doodle über der Box */
.kigo-no-events-doodle {
    width: 95px;
    height: 95px;
    position: absolute;
    top: -45px;
    left: calc(50% - 47px);
    opacity: 0.28;
    background-size: 100% 100%;
    animation: kigoDoodleFloat 5s ease-in-out infinite;

    /* Sonne als SVG (inline base64) */
    background-image: url('data:image/svg+xml;utf8,\
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">\
<circle cx="32" cy="32" r="14" fill="%23ffd43b"/><g stroke="%23ffd43b" stroke-width="6">\
<line x1="32" y1="2" x2="32" y2="14"/><line x1="32" y1="50" x2="32" y2="62"/>\
<line x1="2" y1="32" x2="14" y2="32"/><line x1="50" y1="32" x2="62" y2="32"/>\
</g></svg>');
}

.kigo-no-events-inner h3 {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #444;
}

.kigo-no-events-inner p {
    margin-bottom: 14px;
    line-height: 1.6;
    font-size: 1.05rem;
    color: #555;
}

/* Animationen */
@keyframes kigoFadeIn {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes kigoDoodleFloat {
    0%   { transform: translateY(0px) rotate(0deg); }
    50%  { transform: translateY(-6px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}
