:root {
    --highlight: #ffc000;
    --fg: #141414;
    --bg: #ffffff;
    --muted: #6b6b6b;
    --border-subtle: #e6e6e6;
}

/* Reset / Basis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #fff7d6 0, #ffffff 40%, #ffffff 100%);
    color: var(--fg);
    -webkit-font-smoothing: antialiased;
}

/* Generelles Seitenlayout */
.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero-Bereich Startseite */
.hero {
    padding: 3rem 1.5rem 2.5rem;
}

.hero-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.logo {
    width: 160px;
    max-width: 60vw;
    height: auto;
    display: block;
    margin: 0 auto 1.5rem;
}

.hero-tagline {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--muted);
    max-width: 460px;
    margin: 0.25rem auto 0;
}

/* Bildbereich mit Overlay, Schatten, Fade-In */
.image-section {
    padding: 0 1.5rem 2.5rem;
}

.image-wrapper {
    position: relative;
    max-width: 960px;
    margin: 0 auto 2.5rem;
    border-radius: 1rem;
    overflow: hidden;
    background: #f4f4f4;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    animation: heroFadeIn 700ms ease-out both;
}

/* leichtes Overlay */
.image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.24),
        rgba(0, 0, 0, 0.05),
        rgba(255, 192, 0, 0.18)
    );
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Fade-In-Animation */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content-Bereich Startseite */
.content-section {
    padding: 0 1.5rem 3rem;
}

.content-inner {
    max-width: 720px;
    margin: 0 auto;
    border-top: 3px solid var(--highlight);
    padding-top: 2rem;
}

.content-inner h2 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.content-inner h2 + p {
    margin-bottom: 1.5rem;
}

.content-inner p {
    margin-bottom: 0.35rem;
    line-height: 1.6;
}

.content-inner a {
    color: var(--fg);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.content-inner a:hover {
    text-decoration-thickness: 2px;
}

.small-hint {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--muted);
}

/* Footer */
.page-footer {
    margin-top: auto;
    padding: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
}

.page-footer a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Impressumsseite */
.imprint-section {
    padding: 3rem 1.5rem;
    width: 100%;
}

.imprint-inner {
    max-width: 720px;
    margin: 0 auto;
}

.imprint-inner h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 4px solid var(--highlight);
    display: inline-block;
}

.imprint-inner h2 {
    font-size: 1.1rem;
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
}

.imprint-inner p {
    margin-bottom: 0.35rem;
    line-height: 1.6;
}

.imprint-inner a {
    color: var(--fg);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Zur Startseite-Link im Impressum */
.backlink {
    margin-top: 2.5rem;
}

.backlink a {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    border: 2px solid var(--highlight);
    color: var(--fg);
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s, transform 0.1s;
}

.backlink a:hover {
    background: var(--highlight);
    transform: translateY(-1px);
}

/* Responsive */
@media (min-width: 768px) {
    .hero {
        padding-top: 4rem;
        padding-bottom: 3rem;
    }

    .image-section {
        padding-bottom: 3rem;
    }

    .content-section {
        padding-bottom: 4rem;
    }

    .imprint-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

/* Roboto Variable – normal */
@font-face {
    font-family: "Roboto";
    src: url("/assets/fonts/roboto/Roboto-VariableFont_wdth,wght.ttf") format("truetype-variations");
    font-weight: 100 900; /* Variable Font Range */
    font-stretch: 75% 100%;
    font-style: normal;
    font-display: swap;
}

/* Roboto Variable – italic */
@font-face {
    font-family: "Roboto";
    src: url("/assets/fonts/roboto/Roboto-Italic-VariableFont_wdth,wght.ttf") format("truetype-variations");
    font-weight: 100 900;
    font-stretch: 75% 100%;
    font-style: italic;
    font-display: swap;
}


html, body {
    font-family: "Roboto", sans-serif;
}