/* Hamburger Button - standardmäßig versteckt auf Desktop */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px; /* etwas kleiner */
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 2.5px;
    background: #000;
    border-radius: 2px;
}

/* Desktop Navigation bleibt sichtbar */
.menu_bar {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

/* === Mobile Styles === */
@media (max-width: 768px) {
    .header_section {
        padding: 8px 10px; /* kompakter auf Handy */
    }

    .aum_logo {
        height: 100px;      /* kleineres Logo auf Smartphone */
        margin-bottom: 10px;
    }

    /* Hamburger sichtbar */
    .hamburger {
        display: flex;
    }

    /* Menü verstecken und mobil umstylen */
    .menu_bar {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 55px;
        right: 10px;
        background-color: #fff;
        width: 180px;
        padding: 5px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        border-radius: 5px;
        z-index: 100;
        align-items: stretch; /* Links füllen Breite */
        justify-content: center; /* vertikal zentriert, falls Höhe größer */
    }

    .menu_bar.active {
        display: flex;
    }

    /* Links Styling für Mobile */
    .menu_bar a {
        padding: 10px 0;        /* etwas höher, aber kompakt */
        border-bottom: 1px solid #eee;
        font-size: 16px;
        color: #800000;
        text-decoration: none;

        display: flex;           /* Flexbox für zentrierte Inhalte */
        align-items: center;     /* vertikal zentrieren */
        justify-content: center; /* horizontal zentrieren */
        width: 100%;             /* Link füllt Breite des Menüs */
        box-sizing: border-box;  /* padding korrekt berücksichtigen */
    }
}
