.header_section {
    display: flex;
    flex-direction: column; /* Logo über Menü */
    align-items: center;    /* Alles horizontal zentrieren */
    justify-content: center;
    padding: 20px 0;
    text-align: center;

        /* Hintergrundbild */
    background-image: url("/data/assets/bilder/sonstiges/white_background.jpg");
    background-size: cover;       /* Füllt den Header komplett aus */
    background-position: center;  /* Bild mittig ausrichten */
    background-repeat: no-repeat; /* Kein Kacheleffekt */
    background-attachment: fixed; /* optional: leichter Parallax-Effekt (scrollt nicht mit) */

    border-bottom: 2px solid #800000; /* goldener Trennstrich */
}

.aum_logo {
    height: 150px;
    width: auto;
    margin-bottom: 20px; /* Abstand zwischen Logo und Menü */
}

.menu_bar {
    display: flex;
    gap: 5px;             /* Abstand zwischen Menülinks */
    flex-wrap: wrap;       /* Zeilenumbruch bei kleineren Bildschirmen */
}

/* --- Menülinks --- */
.menu_bar a {
    text-decoration: none;
    color: #b8860b;
    font-weight: 500;
    font-size: 21px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease; /* Sanfter Übergang für alle Änderungen */
    position: relative;
}

/* --- Hover-Effekt --- */
.menu_bar a:hover {
    color: #800000; /* Dunkelrot / Weinrot */
    transform: scale(1.1); /* Sanfte Vergrößerung statt font-size */
    text-shadow: 0 0 8px rgba(128, 0, 0, 0.3); /* dezenter Schimmer */
}

/* --- Optionaler Unterstrich-Effekt beim Hover --- */
.menu_bar a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background-color: #800000;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu_bar a:hover::after {
    width: 60%;
}
