/* Grund-Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; background-color: #cfcb9f; display: flex; justify-content: center; }

/* Zentriertes Haupt-Element */
.main-wrapper {
    width: 100%;
    max-width: 1000px;
    background-color: #fff;
    min-height: 100vh;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

/* Header & Content */
.site-header, .site-content { padding: 20px; text-align: center; }
.site-header { background: #333; color: white; }

/* Navigation Styling */
.main-nav { background: #444; position: relative; }
.nav-list { list-style: none; display: flex; justify-content: center; }
.nav-list > li {
    position: relative;
    /* Verhindert, dass kleine Lücken das Menü schließen */
    padding-bottom: 0; 
}
.nav-list a { display: block; padding: 15px 25px; color: white; text-decoration: none; }
.nav-list a:hover { background: #555; }


/* Submenu verstecken */
.submenu {
    display: none;
    position: absolute;
    top: 100%; /* Direkt unter dem Hauptpunkt */
    left: 0;
    background: #555;
    list-style: none;
    min-width: 180px;
    z-index: 100;
    margin: 0; /* Keine Lücke! */
}
.submenu li a { padding: 10px 20px; font-size: 0.9em; }

/* Burger Icon (Standard versteckt) */
.burger-menu {
    display: none;
    flex-direction: column;
    padding: 15px;
    cursor: pointer;
    width: fit-content;
}
.burger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 2px 0;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .nav-list { display: none; flex-direction: column; width: 100%; }
    .nav-list > li { width: 100%; }
    .submenu { position: static; background: #666; }
    .burger-menu { display: flex; }
}