/* =========================
   Abenteuer-Moment – Modernes Basic Design
   ========================= */

@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap');

body {
    font-family: 'Patrick Hand', cursive;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f7f8f4;
    color: #2f3a2f;
    line-height: 1.6;
}

/* HEADER */
header {
    background: #eef3eb;
    padding: 40px 15px;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

header h1 {
    font-family: "Patrick Hand", cursive;
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: 1px;
}

header p {
    margin: 8px 0 0;
    color: #666;
    font-family: Arial, sans-serif;
    font-size: 1rem;
}
/* NAVIGATION */
nav {
    background: #dfe7da;
    text-align: center;
    padding: 12px 10px;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
}

nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.95em;
}

nav a:hover {
    color: #000;
    text-decoration: underline;
}

nav a {
    color: #555;
    text-decoration: none;
    padding: 8px 12px;
    transition: 0.3s;
}

nav a:hover {
    color: #58714f;
}

nav a.active {
    color: #58714f;
    font-weight: bold;
    border-bottom: 2px solid #6b8e6b;
}

/* CONTAINER */
.container {
    max-width: 920px;
    margin: auto;
    padding: 30px 18px;
}

/* CARDS */
.card, .report {
    background: #ffffff;
    padding: 22px;
    margin-bottom: 18px;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

/* HIGHLIGHT BOX */
.highlight {
    background: #ffffff;
    border-left: 5px solid #999;
    padding: 18px 22px;
    margin-bottom: 18px;
    border-radius: 6px;
}

.highlight {
    line-height: 1.8;
}

.highlight h3 {
    margin-top: 40px;
    color: #5d6d5a;
    font-weight: normal;
}

.highlight blockquote {
    margin: 30px 0;
    padding: 15px 25px;
    border-left: 4px solid #8b6f56;
    background: #f8f6f3;
    font-size: 1.1em;
    font-style: italic;
}

.highlight ul {
    margin-top: 20px;
}

.highlight li {
    margin-bottom: 10px;
}

/* LABELS */
.label, .tag {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75em;
    background: #f0f0f0;
    border-radius: 999px;
    margin-bottom: 10px;
    color: #444;
}

/* META INFO */
.meta {
    font-size: 0.85em;
    color: #777;
    margin-bottom: 10px;
}

/* LISTS */
ul {
    padding-left: 18px;
}

li {
    margin-bottom: 6px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 35px 15px;
    font-size: 0.85em;
    color: #777;
    margin-top: 40px;
}