/* --- GRUNDLAGEN & FARBEN --- */
:root {
    --bg-main: #0b0c10;       /* Tiefes, sattes Schwarz */
    --bg-card: #1f2833;       /* Edles Anthrazit für Boxen */
    --brand-color: #ffc107;   /* Warn-Gelb / Gold für Kontraste */
    --text-main: #c5c6c7;     /* Angenehmes Hellgrau zum Lesen */
    --text-light: #ffffff;    /* Reines Weiss für Überschriften */
    --wa-green: #25D366;      /* Original WhatsApp Grün */
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden; /* Verhindert horizontales Scrollen auf dem Handy */
}

h1, h2, h3, h4, h5 {
    color: var(--text-light);
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

/* --- RESPONSIVE TYPOGRAFIE (Passt sich der Bildschirmgrösse an) --- */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem); /* Riesig auf Desktop, passend auf Handy */
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.brand-highlight {
    color: var(--brand-color);
}

/* --- BUTTONS --- */
.btn-wa-massive {
    background-color: var(--wa-green);
    color: #fff;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
    border: 2px solid transparent;
}

.btn-wa-massive:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    color: #fff;
}

/* --- LAYOUT & KARTEN (Desktop vs. Mobile fix) --- */
/* Hero Section Layout */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3; /* Perfektes Format auf allen Geräten */
}

/* Premium Karten für Services */
.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-icon {
    font-size: 3rem;
    color: var(--brand-color);
    margin-bottom: 1.5rem;
}

/* --- FAQ ACCORDION ÜBERSCHREIBEN (Dark Mode fähig) --- */
.accordion-item {
    background-color: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 10px;
    border-radius: 8px !important;
}
.accordion-button {
    background-color: transparent !important;
    color: var(--text-light) !important;
    font-weight: 700;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    color: var(--brand-color) !important;
}
.accordion-body {
    color: var(--text-main);
}

/* --- SUB-SEITEN (Datenschutz, Impressum) --- */
.content-page {
    padding: 120px 0 80px;
}
.content-box {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

/* --- FOOTER & COOKIE BANNER --- */
footer {
    background-color: #000;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-link {
    color: var(--text-main);
    text-decoration: none;
    transition: 0.3s;
}
.footer-link:hover {
    color: var(--brand-color);
}

#cookie-banner {
    background: rgba(11, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--brand-color);
    z-index: 9999;
}

/* Mobile Optimierungen */
@media (max-width: 768px) {
    .hero-section { text-align: center; padding-top: 120px; }
    .hero-image-wrapper { margin-top: 3rem; }
    .content-box { padding: 1.5rem; }
}

/* --- BOOTSTRAP DARK-MODE FIX --- */
/* Macht alle "text-muted" Texte (wie Footer, Untertitel, Disclaimer) wieder edel und lesbar */
.text-muted {
    color: #8892b0 !important; 
}

/* Stellt sicher, dass normale Absätze immer unsere helle Haupt-Textfarbe nutzen */
p {
    color: var(--text-main);
}