/* =========================
   Reset
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   Grundlayout
========================= */

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

    background:
        radial-gradient(circle at 20% 20%, #ffffff 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, #e6eefc 0%, transparent 40%),
        linear-gradient(180deg, #f5f8ff, #eef3fb);

    color: #1c1c1c;
    line-height: 1.6;
}

/* =========================
   Layout Container
========================= */

.top,
.content,
.info,
.footer {
    max-width: 900px;
    margin: 8px auto;
    padding: 18px;

    position: relative;
    z-index: 1;
}

/* Karten-Design */
.top,
.content,
.info {

    background: #ffffff;

    border-radius: 14px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    transition: transform 0.2s ease, box-shadow 0.2s ease;

}

/* leichter Hover-Effekt (Desktop) */
.top:hover,
.content:hover,
.info:hover {

    transform: translateY(-2px);

    box-shadow: 0 14px 40px rgba(0,0,0,0.12);

}


/* =========================
   Navigation (modern)
========================= */

.menu {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 100%;
    max-width: 900px; /* gleiche Breite wie deine Content-Boxen */

    background: rgba(13, 71, 161, 0.92);
    backdrop-filter: blur(8px);

    padding: 10px 0;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    z-index: 9999;
}


.hamburger {
    font-size: 30px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    margin-left: 15px;
}

/* Overlay-Hintergrund */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.4);

    opacity: 0;
    pointer-events: none;

    transition: opacity 0.3s ease;
    z-index: 9998;
}

/* Menü-Panel */
.menu-content {
	visibility: hidden;
    position: fixed;
    top: 60px;
    left: 0;

    width: 100%;
    max-width: 300px;

    background: #0d47a1;
    color: white;

    padding: 20px;

    transform: translateX(-100%);
    transition: transform 0.3s ease;

    z-index: 9999;
}

.menu-content ul {
    list-style: none;
}

.menu-content li {
    padding: 12px 0;
}

.menu-content a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

.menu-content a:hover {
    text-decoration: underline;
}

/* Aktiv-Zustand */
.menu-open .menu-content {
	visibility: visible;
    transform: translateX(0);
}

.menu-open .menu-overlay {
    opacity: 1;
    pointer-events: auto;
}


/* =========================
   Logo
========================= */

header {

    margin-top: 5px;

    text-align: center;

    padding: 20px;

}

.logo {

    width: 100%;

    max-width: 600px;

    height: auto;

}

/* =========================
   Typografie
========================= */

h1, h2 {

    color: #0d47a1;

    margin-bottom: 15px;

}

p {

    margin-bottom: 15px;

    font-size: 1.05rem;

}

/* Listen */
ul {

    margin-left: 20px;

}

li {

    margin-bottom: 10px;

}

/* =========================
   Footer
========================= */

.footer {

    background: #0d47a1;

    color: white;

    text-align: center;

    border-radius: 14px;

}

/* =========================
   Responsive
========================= */

@media (min-width: 768px) {

    body {
        font-size: 18px;
    }

    .logo {
        max-width: 750px;
    }

}

.menu-inner {
    display: flex;
    align-items: center;
}

.site-title,
.site-title:link,
.site-title:visited,
.site-title:hover,
.site-title:active {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    margin-left: 15px;
    display: inline-block;
}