/*
 Theme Name:   OEBG Child
 Theme URI:    https://oebg.de
 Description:  Child-Theme für die Österreichisch-Bayerische Gesellschaft e.V.
 Author:       OEBG
 Author URI:   https://oebg.de
 Template:     hello-elementor
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  oebg-child
*/

/* ── Navigation: aktive Seite in OEBG-Rot statt Standard-Grün ──────────────── */
.elementor-nav-menu .elementor-item.elementor-item-active,
.elementor-nav-menu .elementor-item.highlighted,
.elementor-nav-menu--main .elementor-item.elementor-item-active,
.elementor-nav-menu--main .elementor-item:focus,
nav.elementor-nav-menu li.current-menu-item > a,
nav.elementor-nav-menu li.current_page_item > a {
    color: #eb6c3e !important;
    border-bottom-color: #eb6c3e !important;
}

/* ── Hero Section: sicherstellen dass 100vh greift ─────────────────────────── */
.elementor-section.elementor-section-height-fit-to-screen {
    min-height: 100vh;
}

/* ── Weißen Leerbereich entfernen (Hello Elementor setzt min-height auf .site-header+.elementor) */
.site-header + .elementor {
    min-height: unset !important;
}
html, body {
    min-height: unset !important;
}

/* ── Shortcode: Startseite Events ───────────────────────────────────────────── */
.oebg-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.oebg-event-card {
    border: 1px solid #0055A4;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.oebg-event-card-img img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.oebg-event-placeholder {
    background: #EBF3FB;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4D8FCC;
    font-size: 14px;
}

.oebg-event-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.oebg-event-datum {
    color: #CC0000;
    font-weight: bold;
    font-size: 14px;
    margin: 0 0 8px;
}

.oebg-event-titel {
    color: #003D7A;
    font-size: 16px;
    margin: 0 0 8px;
    flex: 1;
}

.oebg-event-ort {
    color: #555555;
    font-size: 13px;
    margin: 0 0 16px;
}

.oebg-event-btn {
    display: inline-block;
    background: #0055A4;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    align-self: flex-start;
}

.oebg-event-btn:hover {
    background: #003D7A;
}

@media (max-width: 768px) {
    .oebg-events-grid {
        grid-template-columns: 1fr;
    }
}
