/* Mehr Platz im Main-Bereich für den Inhalt */
main.glass-container {
    min-height: 500px; /* Damit die Seite nicht springt, wenn wenig Inhalt da ist */
    padding: 40px;     /* Mehr Innenabstand für den Text */
}

/* Abstände für die Menü-Links */
.nav-links {
    display: flex;
    gap: 25px; /* Erhöht den Abstand zwischen den Links im Header */
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #555;
}

/* Navigation zweireihig */
.nav-links {
    display: flex;
    flex-direction: column; /* Stapelt die Zeilen untereinander */
    gap: 10px;              /* Abstand zwischen den beiden Zeilen */
    align-items: center;    /* Zentriert beide Zeilen */
}

.nav-row {
    display: flex;
    gap: 20px;              /* Abstand der Links in der Zeile */
}

/* Optional: Optische Unterscheidung für die PHP-Links */
.nav-php-link {
    color: #007bff !important; /* Andere Farbe für die interaktiven Bereiche */
    font-weight: bold;
}

body {
    margin: 0;
    padding: 20px;
    font-family: sans-serif;
}

.page-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.glass-container {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* Footer Design */
.site-footer {
    text-align: center;
}

.footer-boxes {
    display: flex;
    justify-content: center;
    gap: 30px; /* Abstand zwischen den Links */
    flex-wrap: wrap; /* Falls es auf dem Handy zu eng wird, bricht es um */
}

.footer-boxes a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.footer-boxes a:hover {
    text-decoration: underline;
}

.site-footer__copyright {
    margin-top: 20px;
    font-size: 0.8rem;
    opacity: 0.7;
}
