/* =====================================================
   Aurora-Garten – Button 2
   Verwendung: Header Navigation
===================================================== */

.main-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 26px;
    min-height: 42px;
    border-radius: 8px;

    background-color: #6FAE45;
    color: #ffffff;
    text-decoration: none;

    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;

    white-space: nowrap; /* verhindert Umbruch */

    transition: all 0.2s ease;
}

/* Hover */

.main-nav a:hover {
    background-color: #5C8F39;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* Active */

.main-nav a:active {
    transform: translateY(0px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* =====================================================
   Active Navigation State
===================================================== */

.main-nav a.active {
    background-color: #4E7C2F; /* noch kräftigeres Grün */
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}