/* =======================
   Body & Hintergrund
======================= */
html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
}


#page-wrapper {
    min-height: 100vh;
    position: relative;
}

#page-wrapper::before {
    content: "";
    position: fixed;
    inset: 0;

    background: linear-gradient(180deg, #fff8e1 0%, #fffde7 100%);

    z-index: -1;
    pointer-events: none;
}

.section,
.container,
.page-wrapper,
.site-content,
.main-content {
    background: transparent !important;
}

/* =======================
   Termin Boxen
======================= */
.event-item {
    border: 1px solid #e0e0e0;       /* leichter Rahmen */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: #fff;           /* weißer Hintergrund für Boxen */
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.event-item:hover {
    transform: translateY(-3px);
}

/* =======================
   Titel & Details
======================= */
.event-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #222;
}

.event-item p {
    margin: 4px 0;
    font-size: 15px;
    color: #555;
}

.event-item .event-date {
    font-weight: bold;
    color: #d35400;   /* orangener Akzent für Datum */
}

.event-item .event-time {
    font-style: italic;
}

.event-item .event-location {
    font-weight: bold;
    color: #2980b9;   /* blauer Akzent für Ort */
}

/* =======================
   Responsive Anpassungen
======================= */
@media (max-width: 768px) {
    .event-item {
        padding: 15px;
    }
    .event-item h3 {
        font-size: 18px;
    }
    .event-item p {
        font-size: 14px;
    }
}

.navbar-toogle::before {
  content: '>';
}