/* =========================
   Allgemeine Basis-Styles
   (für mehrere Seiten nutzbar)
   ========================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --color-primary: #21445d;
    --color-accent: #dfc98a;
    --color-bg: #f4f7fa;
    --color-text: #1f2933;
    --color-muted: #6b7280;

    --radius-lg: 1.6rem;
    --shadow-soft: 0 12px 35px rgba(15, 23, 42, 0.12);

    --font-sans: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

/* Typografie & Links */

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Layout-Helfer */

.container {
    width: min(1100px, 100% - 3rem);
    margin: 0 auto;
}

.section {
    padding: clamp(4rem, 6vw, 6rem) 0;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.4rem);
    margin: 0 0 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section-intro {
    max-width: 46rem;
    margin: 0 0 2rem;
    color: var(--color-muted);
}

.section-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .section-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    }
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.9rem;
    border-radius: 999px;
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
}

/* Listen */

.bullet-list {
    padding-left: 1.2rem;
    margin: 0;
    color: var(--color-muted);
}

.bullet-list li {
    margin-bottom: 0.5rem;
}

/* Formulare – generische Basis */

input,
textarea,
button {
    font-family: inherit;
}

/* Kleine Helfer */

strong {
    font-weight: 600;
}


