/* Allgemeine Stile */
body {
    font-family: Arial, sans-serif;
    background-color: #f3e9df; /* Cremefarbener, natürlicher Hintergrund */
    color: #5a4a42; /* Dezentes Dunkelbraun für Text */
    margin: 0;
    padding: 0;
    overflow-y: auto; /* Scrollen aktivieren, wenn nötig */
}

html {
    overflow-y: auto; /* Scrollen sicherstellen */
}

/* Header */
header {
    background-color: #dac4b0; /* Warmer, heller Beigeton */
    padding: 20px;
    text-align: center;
}

header h1 {
    color: #b87a61; /* Warmes Pastellrosa, das an Bonbons erinnert */
    font-size: 36px;
    cursor: pointer;
}

/* Navigation */
nav {
    background-color: #a6758b; /* Pastell-Lila als Hauptfarbe für Navigation */
    padding: 15px 0;
    text-align: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15); /* Leichter Schatten für Tiefe */
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #fffaf3; /* Helle Textfarbe für Kontrast */
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease; /* Weicher Übergang bei Hover */
}

nav a:hover {
    background-color: #d4a6b8; /* Helleres Pastellrosa beim Hover */
}

nav a.active {
    color: #fff; /* Weiße Schrift für die aktive Seite */
    font-weight: bold;
    background-color: #855a6c; /* Dunkleres Pastell-Lila für die aktive Seite */
}

/* Hauptinhalt */
main {
    padding: 20px;
    text-align: left; /* Text links ausrichten */
    height: auto; /* Vermeide eine feste Höhe, die das Scrollen beeinflusst */
    overflow-y: visible; /* Stelle sicher, dass das Scrollen nicht blockiert wird */
}

main h2 {
    color: #b87a61; /* Warmes Pastellrosa für Überschriften */
}

main p {
    line-height: 1.6;
    color: #5a4a42; /* Dezentes Dunkelbraun für Fließtext */
}

/* Footer */
footer {
    background-color: #dac4b0; /* Gleiche warme Farbe wie der Header */
    padding: 10px;
    text-align: center;
    position: relative; /* Footer am Seitenende fixieren */
    width: 100%;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1); /* Leichter Schatten oben für Abtrennung */
}

/* Zusätzliche Akzente */

button {
    background-color: #f6b2c3; /* Pastellrosa für Buttons */
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #e799a8; /* Dunkleres Rosa beim Hover */
}

/* Formatierung für dezente Listen */
ul {
    list-style-type: none; /* Entfernt die Aufzählungspunkte */
    padding: 0;
    margin: 0;
}

ul li {
    padding: 5px 0; /* Dezenter Abstand zwischen Listenelementen */
    color: #6f5170; /* Kräftigeres Lila, abgestimmt auf die Navigation */
}

ul li:hover {
    color: #a6758b; /* Gleiche Farbe wie die Navigation beim Hover */
}
