/* ============================================================================
   style.css
   EINZIGES, zentrales Stylesheet für ALLE Seiten der Website
   Ev. Kirche Burghasungen-Ehlen

   Aufbau dieser Datei:
     1. Variablen & Reset                    (alle Seiten)
     2. Header & Navigation                  (alle Seiten – identisch)
     3. Footer                               (alle Seiten – identisch)
     4. Responsive: Mobile-Navigation        (alle Seiten – identisch)
     5. Subpage-Hero (Titelbereich)          (Gemeindebüro, Gemeindebrief,
                                               Gottesdienstplan, Veranstaltungen)
     6. Buttons                              (aktuell nur Startseite)
     7. Startseite
     8. Gemeindebüro
     9. Gemeindebrief
    10. Gottesdienstplan
    11. Veranstaltungen

   WICHTIG zu Abschnitt 2-4 (Header/Navigation/Footer/Mobile-Menü):
   Diese Regeln gelten dank fehlender Einschränkung auf ALLEN Seiten.
   Änderst du hier etwas, wirkt es sich automatisch auf jede Seite aus,
   die includes/header.php und includes/footer.php einbindet.

   WICHTIG zu Klassennamen-Kollisionen:
   Manche Seiten haben (historisch gewachsen) gleiche Klassennamen für
   unterschiedliche Bauteile verwendet (z.B. ".container", ".gd-day",
   ".badge-cancelled", ".btn-outline", ".event-desc"). Damit das in EINER
   gemeinsamen Datei nicht kollidiert, sind genau diese Klassen unter einer
   Body-Klasse pro Seite eingeordnet (z.B. ".page-startseite .container").
   Die Body-Klasse wird automatisch von includes/header.php gesetzt.
   Alle anderen, eindeutig benannten Klassen sind bewusst NICHT eingeschränkt.

   Hinweis zur Vereinheitlichung:
   Einige Kleinigkeiten waren zwischen den Seiten leicht uneinheitlich
   (z.B. Footer-Link-Abstand, Copyright-Text, Mobile-Breakpoint, dauerhafte
   Hervorhebung des "Kontakt"-Links). Auf Wunsch wurde hier jeweils die
   Variante der Startseite als Referenz übernommen, sodass jetzt alle
   Seiten im Grundgerüst identisch sind.
   ============================================================================ */


/* ============================================================================
   1. VARIABLEN & RESET (alle Seiten)
   ============================================================================ */
:root {
    --col-primary: #1b4d3e;
    --col-primary-light: #288a5e;
    --col-secondary: #c2b280;
    --col-secondary-dark: #a09060;
    --col-accent: #d32f2f;
    --col-warning: #f59e0b;

    --col-text-main: #2c3e50;
    --col-text-light: #5f6c7b;
    --col-bg: #fdfbf7;
    --col-bg-alt: #ffffff;
    --col-bg-dark: #1a1a1a;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    --shadow-soft: 0 10px 30px -10px rgba(0,0,0,0.08);
    --shadow-card: 0 4px 12px rgba(0,0,0,0.05);
    --radius: 12px;
    --nav-height: 70px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); background-color: var(--col-bg); color: var(--col-text-main); line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }


/* ============================================================================
   2. HEADER & NAVIGATION (alle Seiten – identisch)
   ============================================================================ */
.main-header {
    position: sticky; top: 0; z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    height: var(--nav-height);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
}
.brand-logo { font-family: var(--font-heading); font-size: 1.4rem; color: var(--col-primary); font-weight: 700; display: flex; align-items: center; gap: 10px; }
.brand-logo i { font-size: 1.6rem; }

.nav-menu { display: flex; gap: 20px; list-style: none; }
.nav-link { font-weight: 600; color: var(--col-text-main); padding: 8px 12px; border-radius: 6px; font-size: 0.95rem; }
.nav-link:hover, .nav-link.active { color: var(--col-primary); background-color: rgba(27, 77, 62, 0.05); }

.mobile-toggle { display: none; font-size: 1.5rem; color: var(--col-text-main); background: none; border: none; cursor: pointer; }


/* ============================================================================
   3. FOOTER (alle Seiten – identisch)
   ============================================================================ */
.main-footer { background-color: var(--col-bg-dark); color: #ccc; padding: 40px 0; text-align: center; margin-top: auto; }
.footer-links a { color: #ccc; margin: 0 15px; }
.copyright { margin-top: 20px; padding-top: 20px; border-top: 1px solid #333; font-size: 0.9rem; }


/* ============================================================================
   4. RESPONSIVE: MOBILE-NAVIGATION (alle Seiten – identisch, Breakpoint 768px)
   ============================================================================ */
@media (max-width: 768px) {
    .nav-menu { display: none; position: absolute; top: var(--nav-height); left: 0; width: 100%; background: #fff; flex-direction: column; padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
    .nav-menu.active { display: flex; }
    .mobile-toggle { display: block; }
}


/* ============================================================================
   5. SUBPAGE-HERO – Titelbereich der Unterseiten
      (Gemeindebüro, Gemeindebrief, Gottesdienstplan, Veranstaltungen)
      Das Hintergrundbild selbst wird je Seite per Inline-Style gesetzt,
      da es inhaltlich zur jeweiligen Seite gehört.
   ============================================================================ */
.subpage-hero {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 50px;
}
.subpage-hero h1 { font-size: 2.5rem; margin-bottom: 10px; }
.subpage-hero p { font-size: 1.1rem; opacity: 0.9; }


/* ============================================================================
   6. BUTTONS (aktuell nur auf der Startseite verwendet)
   ============================================================================ */
.btn { display: inline-block; padding: 12px 24px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; text-align: center; cursor: pointer; border: 2px solid transparent; transition: all 0.3s ease; }
.btn-primary { background-color: var(--col-primary); color: #fff; }
.btn-primary:hover { background-color: var(--col-primary-light); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(27, 77, 62, 0.2); }
.btn-white { background-color: rgba(255,255,255,0.9); color: var(--col-primary); }
.btn-white:hover { background-color: #fff; transform: scale(1.05); }


/* ============================================================================
   7. STARTSEITE (Body-Klasse: page-startseite)
   ============================================================================ */

/* --- 7.1 Container & Grundlayout --- */
.page-startseite .container { max-width: 1200px; margin: 0 auto; padding: 60px 20px; flex: 1; }
.page-startseite .grid-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }

/* --- 7.2 Hero-Bereich (Bildslider + Termin-/Info-Banner) --- */
.hero-section { position: relative; height: 75vh; min-height: 500px; display: flex; align-items: center; justify-content: center; overflow: hidden; color: #fff; text-align: center; }
.hero-bg-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 2s ease-in-out; transform: scale(1.05); }
.slide.active { opacity: 1; transform: scale(1); transition: opacity 2s ease-in-out, transform 8s linear; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.5)); z-index: 1; }

.hero-content { position: relative; z-index: 10; max-width: 800px; padding: 40px; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: var(--radius); box-shadow: 0 20px 50px rgba(0,0,0,0.3); animation: fadeInUp 1s ease-out; }
.hero-mode-admin_info { border-left: 5px solid var(--col-accent); }
.hero-mode-office_open { border-left: 5px solid var(--col-primary); }
.hero-mode-upcoming_36h { border-left: 5px solid var(--col-secondary); }

.hero-title { font-size: 2.5rem; margin-bottom: 1rem; text-shadow: 0 2px 5px rgba(0,0,0,0.3); }
.hero-text { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.95; font-weight: 300; }

.upcoming-list-hero { text-align: left; background: rgba(0,0,0,0.2); padding: 15px; border-radius: 8px; margin-bottom: 20px; }
.hero-item-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 8px; }
.hero-item-row:last-child { border: none; }
.hero-badge { font-size: 0.7rem; text-transform: uppercase; padding: 2px 6px; border-radius: 4px; background: rgba(255,255,255,0.2); }

.status-badge { font-weight: bold; padding: 2px 6px; border-radius: 4px; font-size: 0.7em; margin-left: 5px; }
.status-cancelled { background: var(--col-accent); color: #fff; }
.status-time-change { background: var(--col-warning); color: #fff; }
.status-info-text { background: #fdfbf7; color: #1b4d3e; font-size: 0.8rem; display: block; margin-top: 5px; border-radius: 4px; padding: 4px 10px; font-weight: normal; border-left: 3px solid #c2b280; }

/* --- 7.3 Karten allgemein & Sektions-Überschriften --- */
.section-header { margin-bottom: 30px; display: flex; align-items: center; gap: 12px; border-bottom: 2px solid #eee; padding-bottom: 10px; }
.section-header i { color: var(--col-secondary-dark); font-size: 1.5rem; }
.section-header h2 { color: var(--col-primary); font-size: 1.8rem; margin: 0; }

.card { background: var(--col-bg-alt); border-radius: var(--radius); box-shadow: var(--shadow-card); padding: 25px; margin-bottom: 30px; border: 1px solid #eee; transition: transform 0.3s; }

/* --- 7.4 Gottesdienst-Vorschau (eigener Namensraum wegen Gottesdienstplan.php) --- */
.page-startseite .gd-item { display: flex; gap: 15px; padding: 15px 0; border-bottom: 1px solid #f0f0f0; align-items: flex-start; }
.page-startseite .gd-item:last-child { border: none; }
.page-startseite .gd-date-box { background: var(--col-primary); color: #fff; padding: 8px 12px; border-radius: 8px; text-align: center; min-width: 70px; }
.page-startseite .gd-day { display: block; font-size: 0.8rem; text-transform: uppercase; opacity: 0.8; }
.page-startseite .gd-num { display: block; font-size: 1.4rem; font-weight: 700; line-height: 1; margin: 2px 0; }
.page-startseite .gd-info h4 { margin-bottom: 5px; color: var(--col-text-main); font-size: 1.1rem; }
.page-startseite .gd-meta { font-size: 0.9rem; color: var(--col-text-light); display: flex; gap: 15px; flex-wrap: wrap; }
.page-startseite .gd-meta span { display: flex; align-items: center; gap: 5px; }

/* --- 7.5 Veranstaltungs-Slider --- */
.event-slider-container { position: relative; min-height: 200px; }
.event-card-display { animation: fadeIn 0.4s ease; }
.event-main-title { font-size: 1.4rem; color: var(--col-primary); margin-bottom: 10px; font-family: var(--font-heading); }
.event-meta-row { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; color: var(--col-text-light); font-size: 0.95rem; }
.page-startseite .event-desc { color: var(--col-text-main); margin-bottom: 15px; }

.slider-controls { display: flex; justify-content: space-between; margin-top: 20px; padding-top: 15px; border-top: 1px solid #eee; }
.nav-btn-mini { background: #f0f0f0; border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; transition: 0.2s; }
.nav-btn-mini:hover:not(:disabled) { background: var(--col-secondary); color: white; }
.nav-btn-mini:disabled { opacity: 0.3; cursor: not-allowed; }

/* --- 7.6 Sidebar: Schnellzugriff & Neuigkeiten --- */
.page-startseite .btn-outline { border-color: var(--col-primary); color: var(--col-primary); }
.page-startseite .btn-outline:hover { background-color: var(--col-primary); color: #fff; }

.link-list li { margin-bottom: 10px; }
.link-list a { display: flex; justify-content: space-between; align-items: center; padding: 12px 15px; background: #fff; border: 1px solid #eee; border-radius: 8px; font-weight: 600; color: var(--col-text-main); }
.link-list a:hover { background: var(--col-primary); color: #fff; border-color: var(--col-primary); transform: translateX(5px); }

.article-teaser { margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid #eee; }
.article-teaser h4 { font-size: 1.1rem; margin-bottom: 5px; }
.article-date { font-size: 0.8rem; color: var(--col-secondary-dark); text-transform: uppercase; font-weight: 700; margin-bottom: 8px; display: block; }
.read-more-link { color: var(--col-primary); font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 5px; margin-top: 5px; }

/* --- 7.7 Lightbox "Alle Neuigkeiten" --- */
.lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 2000; align-items: center; justify-content: center; backdrop-filter: blur(5px); }
.lightbox-content { background: #fff; padding: 40px; max-width: 800px; width: 90%; max-height: 90vh; overflow-y: auto; border-radius: var(--radius); position: relative; animation: slideUp 0.3s ease; }
.close-lb { position: absolute; top: 15px; right: 20px; font-size: 2rem; cursor: pointer; color: #999; }
.close-lb:hover { color: var(--col-accent); }

/* --- 7.8 Animationen --- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* --- 7.9 Responsive (Startseite) --- */
@media (max-width: 900px) {
    .page-startseite .grid-layout { grid-template-columns: 1fr; }
    .hero-section { height: 60vh; }
    .hero-title { font-size: 2rem; }
}
@media (max-width: 768px) {
    .hero-content { padding: 20px; width: 90%; }
}


/* ============================================================================
   8. GEMEINDEBÜRO (Body-Klasse: page-gemeindebuero)
   ============================================================================ */
.page-gemeindebuero .container { max-width: 1100px; margin: 0 auto 60px; padding: 0 20px; display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }

/* Kontaktkarte (kontrastreich) */
.contact-card { background: var(--col-primary); color: white; padding: 30px; border-radius: var(--radius); box-shadow: 0 10px 30px rgba(27,77,62,0.3); }
.contact-card h2 { color: var(--col-secondary); margin-bottom: 20px; font-size: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 10px; }
.contact-row { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; font-size: 1.05rem; }
.contact-row i { margin-top: 5px; color: var(--col-secondary); }
.contact-row a { color: white; text-decoration: underline; text-underline-offset: 4px; }
.contact-row a:hover { color: var(--col-secondary); }

/* Aufgaben-Karte */
.content-card { background: var(--col-bg-alt); padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow-card); border: 1px solid #eee; }
.content-card h2 { color: var(--col-primary); margin-bottom: 20px; font-size: 1.8rem; }
.task-list { list-style: none; }
.task-list li { margin-bottom: 15px; padding-left: 25px; position: relative; }
.task-list li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; color: var(--col-primary); }

@media (max-width: 768px) {
    .page-gemeindebuero .container { grid-template-columns: 1fr; }
}


/* ============================================================================
   9. GEMEINDEBRIEF (Body-Klasse: page-gemeindebrief)
   ============================================================================ */
.page-gemeindebrief .container { max-width: 96%; width: 100%; margin: 0 auto 60px; padding: 0 20px; }

/* Aktuelle Ausgabe / PDF-Viewer */
.pdf-wrapper {
    background: var(--col-bg-alt); padding: 10px; border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 1px solid #ddd;
    margin-bottom: 60px;
}
.pdf-toolbar {
    display: flex; justify-content: space-between; align-items: center; padding: 10px 20px;
    background: #f4f4f4; border-bottom: 1px solid #ddd; border-radius: 8px 8px 0 0;
}
.pdf-frame { width: 100%; height: 80vh; min-height: 500px; border: none; border-radius: 0 0 8px 8px; background: #eee; }
.btn-download {
    background: var(--col-secondary); color: #fff; padding: 8px 16px; border-radius: 4px; font-weight: 700; font-size: 0.9rem;
}
.btn-download:hover { background: #a09060; }

/* Archiv */
.archive-header { font-family: var(--font-heading); font-size: 1.8rem; color: var(--col-primary); margin-bottom: 30px; border-bottom: 2px solid #eee; padding-bottom: 10px; }

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.archive-card {
    background: var(--col-bg-alt); border: 1px solid #eee; border-radius: var(--radius);
    padding: 30px 20px; text-align: center; box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; flex-direction: column; align-items: center; justify-content: space-between;
}
.archive-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-color: var(--col-secondary); }

.archive-icon { font-size: 2.5rem; color: var(--col-secondary); margin-bottom: 15px; }
.archive-title { font-weight: 700; margin-bottom: 20px; color: var(--col-text-main); font-size: 1.1rem; }

.page-gemeindebrief .btn-outline {
    border: 2px solid var(--col-primary); color: var(--col-primary); padding: 8px 20px;
    border-radius: 50px; font-weight: 700; font-size: 0.9rem; width: 100%; text-decoration: none;
    display: inline-block;
}
.page-gemeindebrief .btn-outline:hover { background: var(--col-primary); color: #fff; }

@media (max-width: 768px) {
    .pdf-frame { height: 50vh; }
}


/* ============================================================================
   10. GOTTESDIENSTPLAN (Body-Klasse: page-gottesdienstplan)
   ============================================================================ */
.page-gottesdienstplan .container { max-width: 96%; width: 100%; margin: 0 auto 60px; padding: 0 20px; }

.gd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gd-card {
    background: var(--col-bg-alt); border: 1px solid #eee; border-radius: var(--radius);
    display: flex; flex-direction: column;
    overflow: hidden; box-shadow: var(--shadow-card);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}
.gd-card:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); border-color: var(--col-primary); }

.page-gottesdienstplan .gd-date-box {
    background: var(--col-primary); color: white;
    padding: 15px 20px;
    display: flex; justify-content: space-between; align-items: center;
}
.gd-date-left { display: flex; align-items: baseline; gap: 5px; }
.page-gottesdienstplan .gd-day { font-size: 1.5rem; font-weight: 700; line-height: 1; }
.gd-month { text-transform: uppercase; font-size: 0.95rem; opacity: 0.9; }
.gd-time { font-size: 0.9rem; background: rgba(0,0,0,0.25); padding: 4px 10px; border-radius: 4px; font-weight: bold; }

.page-gottesdienstplan .gd-info { padding: 25px; flex: 1; display: flex; flex-direction: column; }

.gd-title { font-family: var(--font-heading); font-size: 1.4rem; color: #222; margin: 0 0 15px 0; line-height: 1.2; }

.gd-meta-row { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; margin-bottom: 8px; color: #555; font-size: 0.95rem; }
.gd-meta-row span { display: flex; align-items: center; gap: 8px; }
.gd-meta-row i { color: var(--col-primary-light); width: 16px; text-align: center; }

.page-gottesdienstplan .badge-cancelled { display: inline-block; background: #ffebee; color: var(--col-accent); border: 1px solid var(--col-accent); padding: 2px 8px; border-radius: 4px; font-size: 0.75rem; font-weight: bold; text-transform: uppercase; margin-bottom: 12px; align-self: flex-start; }
.badge-changed { display: inline-block; background: #fff3e0; color: #ef6c00; border: 1px solid #ef6c00; padding: 2px 8px; border-radius: 4px; font-size: 0.75rem; font-weight: bold; text-transform: uppercase; margin-bottom: 12px; align-self: flex-start; }

.gd-notes {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 0.9rem; color: #666; font-style: italic;
}


/* ============================================================================
   11. VERANSTALTUNGEN (Body-Klasse: page-veranstaltungen)
   ============================================================================ */
.page-veranstaltungen .container { max-width: 1200px; width: 96%; margin: 0 auto 60px; padding: 0 20px; }
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--col-bg-alt); border-radius: var(--radius); box-shadow: var(--shadow-card);
    border: 1px solid #eee; display: flex; flex-direction: column; overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%; position: relative;
}
.event-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-color: var(--col-primary); }

.date-box {
    background: var(--col-primary); color: #fff; padding: 15px;
    display: flex; flex-direction: row; justify-content: space-between; align-items: center;
}
.event-card.is-serie .date-box { background: var(--col-secondary); color: var(--col-text-main); }
.event-card.cancelled-state .date-box { background: #95a5a6; color: #fff; }

.date-left { display: flex; align-items: baseline; gap: 5px; }
.date-day { font-size: 1.5rem; font-weight: 700; line-height: 1; }
.date-month { font-size: 1rem; text-transform: uppercase; opacity: 0.9; }
.date-time { font-size: 0.9rem; background: rgba(0,0,0,0.2); padding: 4px 10px; border-radius: 4px; display: flex; align-items: center; gap:5px; }

.event-info { padding: 25px; display: flex; flex-direction: column; flex: 1; }
.event-tag { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--col-primary-light); margin-bottom: 8px; display: block; }
.event-card.is-serie .event-tag { color: var(--col-text-main); opacity: 0.6; }
.event-title { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 15px; color: var(--col-text-main); line-height: 1.2; }
.event-card.cancelled-state .event-title { text-decoration: line-through; opacity: 0.7; }

.page-veranstaltungen .badge-cancelled {
    background: #e74c3c; color: white; padding: 6px 12px; border-radius: 4px;
    font-weight: 700; font-size: 0.85rem; margin-bottom: 15px; display: inline-flex; align-items: center; gap: 5px;
    align-self: flex-start;
}
.badge-time-change { background: #f39c12; color: white; padding: 2px 6px; border-radius: 3px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; }
.info-box-override {
    background: #e1f5fe; color: #0277bd; padding: 12px; border-radius: 8px;
    border-left: 4px solid #039be5; font-size: 0.95rem; margin-bottom: 15px;
    font-weight: 600; display: flex; gap: 10px; align-items: flex-start;
}

.event-meta { font-size: 0.95rem; color: #666; margin-bottom: 15px; display:flex; align-items:center; gap:8px;}
.event-meta i { color: var(--col-primary-light); width: 16px; text-align: center; }
.page-veranstaltungen .event-desc { font-size: 0.95rem; color: var(--col-text-main); line-height: 1.5; margin-bottom: 20px; flex-grow: 1; }
.btn-card { align-self: flex-start; padding: 8px 20px; border: 2px solid var(--col-primary); border-radius: 50px; color: var(--col-primary); font-weight: 700; font-size: 0.9rem; margin-top: auto; transition:0.2s; }
.btn-card:hover { background: var(--col-primary); color: #fff; }