/* RESET & BASICS */
:root {
    --bg-color: #ffffff;
    --text-color: #111; /* Noch schwärzer für Kontrast */
    --accent-color: #8e0000;
    --light-gray: #f4f4f4;
    --alert-bg: #fff0f0; /* Leichter Rotstich für Hervorhebung */
    --font-stack: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-stack);
    line-height: 1.5;
    font-size: 18px;
}

/* HEADER - Special Layout für Branding */
header, main, footer { max-width: 900px; margin: 0 auto; padding: 0 20px; }

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Oben bündig */
    padding-top: 30px;
    padding-bottom: 50px;
}

.brand-container {
    display: flex;
    flex-direction: column;
}

.logo {
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: -1px;
    line-height: 1;
}

.dot { color: var(--accent-color); }

.sub-brand {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
    font-weight: 500;
}
.sub-brand a { color: #666; text-decoration: none; border-bottom: 1px solid #ccc; }

/* Phone Link Header (Desktop) */
.phone-link-header {
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 900;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* HERO CRISIS */
.hero-crisis { margin-bottom: 60px; padding-bottom: 40px; border-bottom: 2px solid #eee; }

.mantra-crisis {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    font-weight: 900;
    margin-bottom: 20px;
}
.highlight { color: var(--accent-color); }

/* Bild Hoover */
.image-container {
  position: relative;
  display: inline-block;
}
.overlay-text {
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background: var(--accent-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; /* Standardmäßig unsichtbar */
  transition: opacity 0.3s ease; /* Sanfter Übergang */
}
.image-container:hover .overlay-text {
  o  pacity: 1; /* Beim Hover sichtbar */
}

.subtitle-crisis {
    font-size: 1.3rem;
    color: #333;
    max-width: 650px;
    margin-bottom: 40px;
}

/* EMERGENCY BUTTON */
.action-area { margin-top: 30px; }

.button-emergency {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 20px 40px; /* Großer Button */
    font-size: 1.3rem;
    text-decoration: none;
    font-weight: 900;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(142, 0, 0, 0.3);
    transition: transform 0.1s, background-color 0.2s;
}

.button-emergency:hover {
    background-color: #600000;
    transform: scale(1.02);
}

.availability-note {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* MISSION GRID */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
}

.mission-item {
    padding: 30px;
    border: 1px solid #eee;
}

.highlight-bg {
    background-color: var(--alert-bg);
    border-color: var(--accent-color);
}

.mission-item h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

/* PROCESS */
.process { margin-bottom: 80px; }
.process h2 { font-size: 2rem; margin-bottom: 30px; }

.steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    font-family: monospace;
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
    min-width: 40px;
}

/* FOOTER */
.site-footer {
    padding-top: 20px;
    border-top: 2px solid #ddd;
    padding-bottom: 40px;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
}
.footer-links a { color: #555; text-decoration: none; margin-right: 20px; }
.footer-note { color: #888; }

/* MOBILE OPTIMIZATION */
@media (max-width: 600px) {
    .site-header { flex-direction: column; gap: 20px; }
    .emergency-contact-header { display: none; } /* Auf Mobile Button unten wichtiger */
    .button-emergency { width: 100%; text-align: center; font-size: 1.1rem; }
    .mantra-crisis { font-size: 3.5rem; }
}
