/* ------------------------------
   Grundlayout & Typografie
--------------------------------*/
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #111827;
    background: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ------------------------------
   Header
--------------------------------*/
.site-header {
    background: #1E3A8A;
    padding: 15px 0;
}

.header-inner {
    display: flex;
    align-items: center;
}

.logo img {
    height: 48px;
}

/* ------------------------------
   Hero-Bereich
--------------------------------*/
.hero {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn-primary {
    background: #ffffff;
    color: #1E3A8A;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
}

.btn-primary:hover {
    background: #F3F4F6;
}

/* ------------------------------
   Listen (Neue Plätze / Zufällige Plätze)
--------------------------------*/
section {
    margin: 40px 0;
}

section h2, section h3 {
    margin-bottom: 10px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    background: #F3F4F6;
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 6px;
}

/* ------------------------------
   Footer
--------------------------------*/
.site-footer {
    background: #1E3A8A;
    color: white;
    padding: 30px 0;
    margin-top: 60px;
}

.footer-inner {
    text-align: center;
}

.footer-nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-weight: 500;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.site-footer p {
    margin-top: 15px;
    font-size: 0.9rem;
}