/* ================================
   Reset & Grundlegendes
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ================================
   Header & Navigation
   ================================ */
header {
    background-color: #004b3d;
    color: white;
    padding: 15px 0;
}

header .header-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Titel im Header */
header .header-inner strong {
    font-size: 1.8rem;
    font-weight: bold;
    display: block;
}

/* Navigation (NEU) */
.nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 4px;
    transition: 0.3s;
}

.nav a:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* aktive Seite */
.nav a.aktiv {
    background-color: rgba(255, 255, 255, 0.25);
    font-weight: 600;
}

/* ================================
   Hero / Banner
   ================================ */
.hero {
    background-color: #e1f0e9;
    padding: 60px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #222;
}

.hero p {
    font-size: 1.2rem;
    color: #555;
}

/* ================================
   Content Bereich
   ================================ */
.content-wrapper {
    display: flex;
    gap: 30px;
    width: 100%;
}

.main-content {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.content {
    flex: 3;
}

.content h2,
.content h3 {
    margin-bottom: 15px;
}

.content h2 {
    font-size: 2rem;
}

.content h3 {
    font-size: 1.5rem;
}

.content p {
    margin-bottom: 15px;
}

/* ================================
   Sidebar
   ================================ */
.sidebar {
    flex: 1;
}

.sidebar-box {
    background-color: #e1f0e9;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #004b3d;
}

.sidebar-box h3 {
    margin-bottom: 10px;
}

.sidebar-box ul {
    list-style: none;
}

.sidebar-box ul li a {
    text-decoration: none;
    color: #004b3d;
}

.sidebar-box ul li a:hover {
    text-decoration: underline;
}

/* ================================
   Linkseiten / Listen (deine Verlinkungsseite)
   ================================ */
.link-block {
    margin-bottom: 40px;
}

.link-liste {
    list-style: none;
    margin-top: 10px;
}

.link-liste li {
    margin-bottom: 8px;
}

.link-liste a {
    color: #004b3d;
    text-decoration: none;
}

.link-liste a:hover {
    text-decoration: underline;
}

/* ================================
   Footer
   ================================ */
footer {
    background-color: #004b3d;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

/* ================================
   Buttons
   ================================ */
a.button,
.button {
    display: inline-block;
    background-color: #004b3d;
    color: white !important;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: 0.3s;
}

a.button:hover,
.button:hover {
    background-color: #00684f;
}

/* ================================
   Responsive
   ================================ */
@media (max-width: 1024px) {
    .main-content {
        flex-direction: column;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .nav {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}