/* RESET & BASICS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #0d0d0d;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 600px; /* Perfekt für mobile conversion optimiert */
    margin: 0 auto;
}

/* HEADER (Logo oben, roter Button darunter) */
header {
    background: #121212;
    border-bottom: 1px solid #222222;
    padding: 20px 0;
}

.header-container {
    display: flex;
    flex-direction: column; /* Bringt Button unter das Logo */
    align-items: center;
    gap: 15px; /* Abstand zwischen Logo und Button */
}

 .logo img {
    width: 90vw;
    max-width: 360px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* PREMIUM BUTTONS (Veredeltes Alarm-Rot mit Glanz-Effekt) */
.btn-call {
    display: block;
    width: 100%;
    max-width: 320px;
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(153, 0, 0, 0.6);
    border: 1px solid #ff3333;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    margin: 0 auto;
}

/* HERO SEKTION */
.hero {
    background: radial-gradient(circle at center, #1c1c1c 0%, #0a0a0a 100%);
    text-align: center;
    padding: 40px 0;
}

.hero-text h1 {
    font-size: 2.1rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.3;
}

.gold-text {
    color: #f9ca06;
}

.hero-text p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
}

/* NOTRUF BOX */
.cta-box {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 12px;
    border: 4px solid #cc0000;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    margin: 0 auto 10px auto;
    max-width: 450px;
}

.notruf-label {
    font-size: 1.1rem;
    color: #000000 !important;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px !important;
    letter-spacing: 1px;
}

.notruf-number {
    font-size: 2.1rem;
    color: #cc0000;
    text-decoration: none;
    font-weight: 900;
    display: block;
}

/* FOOTER & IMPRESSUM */
.footer {
    background: #111111;
    padding: 40px 0;
    border-top: 1px solid #222222;
    font-size: 0.85rem;
    color: #888888;
}

.copyright {
    text-align: center;
    margin-bottom: 25px;
}

.impressum-box {
    background: #161616;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #222222;
    color: #cccccc;
    line-height: 1.7;
}

/* OPTIMIERUNG FÜR SMARTPHONES */
@media (max-width: 380px) {
    .hero-text h1 {
        font-size: 1.7rem;
    }
    .notruf-number {
        font-size: 1.7rem;
    }
}

    
    
