:root {
    --bg-color: #e6f0fa; /* Weiches Hellblau für den Hintergrund */
    --text-color: #1c2833; /* Dunkles Blau für Text */
    --accent-color: #1b4f72; /* Hauptfarbe: Dunkles Blau */
    --highlight-color: #2874a6; /* Helleres Blau als Highlight */
    --button-bg: #21618c; /* Dunkles Blau für Buttons */
    --button-hover-bg: #1a5276; /* Etwas dunkler für Hover */
    --button-text: #ffffff; /* Weißer Text auf Buttons */
    --border-radius: 8px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Roboto Slab', serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
}

header {
    background: var(--accent-color);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--highlight-color);
}

header .logo h1 {
    font-size: 2em;
    margin: 0;
}

header .logo p {
    margin: 0;
    font-style: italic;
    font-size: 1em;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
}

main {
    padding: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.intro {
    text-align: center;
    margin-bottom: 40px;
}

.intro h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
}

.categories {
    margin-bottom: 40px;
}

.categories h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
}

.categories .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.btn {
    display: block;
    padding: 12px 20px;
    background: var(--button-bg);
    color: var(--button-text);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
    text-align: center;
    min-width: 120px;
    font-size: 1.1em;
}

.btn:hover {
    background: var(--button-hover-bg);
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 10px;
    background: var(--accent-color);
    color: white;
    font-size: 0.9em;
    border-top: 3px solid var(--highlight-color);
}
.head-pad {
    padding: 10px; /* Allgemeines Padding */
}

.p-title {
    font-size: 1.5em; /* Größere Schrift für Titel */
    font-weight: bold; /* Fetter Text */
    color: var(--text-color); /* Farbe entsprechend der globalen Variable */
    margin: 0;
}

.bar-right {
    text-align: right; /* Text rechtsbündig */
    float: right; /* Rechts ausgerichtet */
    margin-right: 20px; /* Abstand zum Rand */
}.hide-link {
    text-decoration: none; /* Entfernt Unterstriche */
    color: inherit; /* Übernimmt die Textfarbe des umgebenden Elements */
}

.hide-link:hover {
    text-decoration: underline; /* Optional: Unterstrich beim Hover */
}
