/**
 * Automatisch generiert durch admin.php
 * Zuletzt geändert: 09.09.2026 11:37:16
 */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

:root {
    --primary-color: #64748b;
    --secondary-color: #8b0303;
    --accent-color: #3b82f6;
    --bg-light: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --font-family: 'Outfit', sans-serif;
    --hero-height: 400px;
    --hero-overlay-opacity: 0.75;
    --hero-overlay-rgb: 100, 116, 139;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.hero {
    height: var(--hero-height) !important;
    min-height: var(--hero-height) !important;
    background: linear-gradient(rgba(100, 116, 139, 0.75), rgba(100, 116, 139, 0.85)), url('../bilder/startseite.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}

section.section-title {
    background: var(--primary-color) !important;
}

footer {
    background: var(--primary-color) !important;
}

.cta-button {
    background: var(--secondary-color) !important;
}