/* --- Variablen & Reset --- */
:root {
    --primary-color: #0f172a; /* Dunkelblau/Schwarz */
    --accent-color: #d4af37; /* Gold */
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.full-width {
    width: 100%;
    display: block;
}

/* --- Navigation --- */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li a {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero Section (Startseite) --- */
.hero {
    margin-top: 80px;
    height: 90vh;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.7)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero .subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-usp {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-usp li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-usp i {
    color: var(--accent-color);
}

/* --- Hero Small (Unterseiten) --- */
.hero-small {
    margin-top: 80px;
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero-small h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--white);
}

/* --- General Section Styles --- */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
}

.bg-light {
    background-color: var(--light-bg);
}

/* --- Stats Grid --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: var(--transition);
}

.stat-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.stat-card .icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.stat-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--accent-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card ul {
    margin-top: 20px;
}

.service-card ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}

.service-card ul li i {
    color: var(--accent-color);
    margin-top: 4px;
}

/* --- Trust / Split Layout --- */
.split-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.trust-features {
    margin-top: 30px;
}

.feature {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 40px;
}

.feature h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.cta-block-sidebar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.cta-block-sidebar h3 {
    color: var(--white);
}

.cta-block-sidebar p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-block-sidebar .btn {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}

.cta-block-sidebar .btn:hover {
    background-color: var(--white);
    border-color: var(--white);
}

/* --- Text Content (Impressum/Datenschutz) --- */
.text-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.text-content h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.text-content h4 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.text-content p {
    margin-bottom: 15px;
    color: #444;
}

.text-content hr {
    margin: 40px 0;
    border: 0;
    border-top: 1px solid #eee;
}

/* --- Contact Section --- */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
    color: var(--white);
    text-align: center;
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h2 {
    color: var(--white);
}

.cta-box p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    color: var(--text-color);
}

.form-group {
    margin-bottom: 15px;
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.small-text {
    font-size: 0.8rem;
    color: #777;
    margin-top: 15px;
}

/* --- Footer --- */
footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* FOOTER LOGO FIX (Weißer Kasten) */
.footer-logo {
    margin-bottom: 10px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    background-color: #ffffff; /* Weißer Hintergrund */
    padding: 8px;
    border-radius: 4px;
    display: block;
    margin-bottom: 5px;
}

.footer-logo p {
    color: #fff;
    font-weight: bold;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.footer-links a {
    margin-left: 20px;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-links a:hover {
    color: var(--white);
}

/* FOOTER DISCLAIMER (HERVORGEHOBEN) */
.footer-disclaimer {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1); /* Hellerer Hintergrund */
    border-left: 5px solid var(--accent-color); /* Auffälliger goldener Balken */
    border-radius: 4px;
    text-align: left;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: #e2e8f0; /* Helles Weiß/Grau für gute Lesbarkeit */
    line-height: 1.6;
    margin: 0;
}

.footer-disclaimer strong {
    color: var(--accent-color);
    font-weight: 700;
}

.footer-disclaimer i {
    color: var(--accent-color);
    margin-right: 8px;
    font-size: 1.1rem;
}

.copyright {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #222;
    color: #555;
    font-size: 0.85rem;
}

/* --- Cookie Banner Styles --- */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px 20px;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    border-top: 4px solid var(--accent-color);
    animation: slideUp 0.5s ease-out;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .cookie-content p {
        max-width: 70%;
        margin-bottom: 0;
    }
}

#cookie-banner h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.2rem;
    display: none;
}

#cookie-banner p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e2e8f0;
}

#cookie-banner a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; 
    }
    
    .hamburger {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-usp {
        flex-direction: column;
        align-items: center;
    }
    
    .split-layout {
        grid-template-columns: 1fr;
    }
    
    .nav-container .btn {
        display: none;
    }
    
    .footer-content {
        justify-content: center;
        text-align: center;
    }
    
    .footer-links a {
        margin: 0 10px;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn, .btn-outline {
        width: 100%;
        text-align: center;
    }
}