/* Navigation */
.menu-top {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    background: #ffffff;
    border-bottom: 2px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 2000;
}

.menu-logo {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: white;
    padding: 4px;
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

.menu-toggle {
    font-size: 28px;
    cursor: pointer;
    color: #2e7d32;
    background: none;
    border: none;
    font-weight: bold;
}

/* Off-Canvas Menü */
.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background: #ffffff;
    box-shadow: 4px 0 12px rgba(0,0,0,0.15);
    padding: 20px;
    transition: transform 0.3s ease;
    z-index: 2000;
    transform: translateX(-100%);
}

.side-menu.open {
    transform: translateX(0);
}

.close-menu {
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    float: right;
}

/* Menülinks */
.side-nav {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px;
    margin-top: 40px;
}

.side-nav a {
    display: block !important;
    padding: 4px 0;
    font-size: 22px;
    color: #2e7d32;
    text-decoration: none;
    font-weight: 650;
}

.side-nav a.active {
    text-decoration: underline !important;
    font-weight: 800;
    color: #1b5e20;
}

.side-nav a:hover {
    color: #256628;
}

/* Overlay */
#menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 1500;
}

#menu-overlay.show {
    display: block;
}

/* Mobile */
@media (max-width: 768px) {
    .menu-toggle { font-size: 26px; }
    .side-menu { width: 260px; padding: 15px; }
    .side-nav a { font-size: 18px; }
}

@media (max-width: 480px) {
    .menu-toggle { font-size: 24px; }
}

/* Kontakt-Button */
.contact-fixed {
    position: fixed;
    bottom: 22px;
    right: 22px;
    background: #2e7d32;
    color: white;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: background 0.2s ease, transform 0.2s ease;
}

.contact-fixed:hover {
    background: #1b5e20;
    transform: scale(1.05);
}
