/* Grundlayout */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #0a0a0a;
    color: #fff;
}

/* Navigation */
nav {
    background: #111;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
    border-bottom: 2px solid #ff0033;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

nav a:hover {
    color: #ff4da6;
}

/* Hero Bereich – verkleinert */
.hero {
    background: linear-gradient(135deg, #ff0033, #ff4da6, #0066ff);
    padding: 60px 20px;
    text-align: center;
    color: #fff;
    position: relative; /* wichtig für Logo links */
}

.hero.small {
    padding: 45px 20px;
}

.hero h1 {
    font-size: 2.4rem;
    margin: 0;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.1rem;
    margin-top: 10px;
    opacity: 0.9;
}

/* Logo links oben + klickbar */
.logo-link {
    display: inline-block;
    position: absolute;
    top: 15px;
    left: 20px;
}

.hero-logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 12px rgba(255, 0, 51, 0.5));
    border-radius: 10px;
}

/* Content Bereiche */
.section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    border-left: 5px solid #ff0033;
    padding-left: 10px;
}

/* Karten / Boxen */
.card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #0066ff;
}

.card h3 {
    margin-top: 0;
}

/* Footer */
footer {
    background: #111;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    border-top: 2px solid #ff0033;
}

.email {
    color: #ff4da6;
    font-weight: bold;
}

/* PREMIUM IMPRESSUM DESIGN */
.card.impressum {
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    border-left: 5px solid #ff0033;
    box-shadow: 0 0 25px rgba(0, 102, 255, 0.35);
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card.impressum:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 35px rgba(255, 0, 51, 0.55);
}

.card.impressum h3 {
    font-size: 1.6rem;
    color: #ff4da6;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card.impressum p {
    line-height: 1.7;
    font-size: 1.05rem;
    opacity: 0.95;
}

.card.impressum a {
    color: #ff4da6;
    font-weight: bold;
    text-decoration: none;
}

.card.impressum a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ICONS */
.icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #0066ff, #ff0033);
    margin-right: 10px;
    vertical-align: middle;
    box-shadow: 0 0 10px rgba(255, 0, 51, 0.4);
}

.icon.phone::after {
    content: "📞";
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.icon.mail::after {
    content: "✉️";
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.icon.home::after {
    content: "📍";
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Mobile Optimierung */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }

    nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    nav a {
        font-size: 0.9rem;
    }

    .hero-logo {
        width: 110px;
    }
}
