/* /style/style.css */

body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #006600;
    font-family: Arial, sans-serif;
}

/* Header: Hintergrundfarbe und Layout */
header {
    background-color: #f2f2f2;
    border-bottom: 2px solid #008000;
    padding: 10px 0;
}

.header-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
}

.header-inner img {
    width: 80px;
    height: 80px;
}

.header-inner h1 {
    margin-left: 10px;
    color: #008000;
    font-size: 2em;
}

header img {
    display: inline-block;
    width: 80px;   /* quadratisch, kann angepasst werden */
    height: 80px;
}

/* Container der Navigation – evtl. zentriert */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Die Listenelemente als Inline-Block, damit sie nur so breit wie ihr Inhalt sind */
nav ul li {
    display: inline-block;
    margin: 5px;
}

/* Gemeinsame Basis für alle Links in der Navigation */
nav ul li a {
    display: inline-block;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Schatteneffekt */
}

/* Standard-Stil für Unterseiten-Buttons */
nav ul li.menu-item a {
    background-color: #006600;  /* Basisgrün */
    color: #fff;
}

/* Hover-Effekt für Unterseiten-Buttons */
nav ul li.menu-item a:hover {
    background-color: #004d00;  /* dunkleres Grün */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Stil für den "Zurück"-Button (Seite höher) */
nav ul li.menu-back a {
    background-color: #cccccc;  /* helles Grau */
    color: #333333;
}

/* Hover-Effekt für den "Zurück"-Button */
nav ul li.menu-back a:hover {
    background-color: #bbbbbb;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Responsive Design: Optimierung für mobile Geräte */
@media (max-width: 768px) {
    nav ul li a {
        font-size: 1em;
        padding: 10px;
    }
}

/* Footer: Schlichte Darstellung der Links */
footer {
    background-color: #f2f2f2;
    padding: 10px;
    text-align: center;
}

footer p a {
    color: #006600;
    text-decoration: none;
    margin: 0 5px;
}
