/* Reset und Grundstile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 20px;
}

/* Sprachumschalter */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: white;
    padding: 10px 15px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.language-switcher a {
    text-decoration: none;
    color: #555;
    padding: 5px 12px;
    margin: 0 3px;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.language-switcher a:hover {
    background: #f0f0f0;
}

.language-switcher a.active {
    background: #e31e24;
    color: white;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* Header */
header {
    text-align: center;
    padding: 40px 20px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Main Content */
main {
    padding: 40px 60px 60px;
}

h1 {
    font-size: 3em;
    color: #e31e24;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.subtitle {
    text-align: center;
    font-size: 1.3em;
    color: #666;
    margin-bottom: 50px;
}

h2 {
    font-size: 1.8em;
    color: #444;
    margin-bottom: 20px;
    border-bottom: 3px solid #e31e24;
    padding-bottom: 10px;
}

h3 {
    font-size: 1.3em;
    color: #555;
    margin-top: 25px;
    margin-bottom: 10px;
}

h4 {
    font-size: 1.1em;
    color: #666;
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    color: #555;
    font-size: 1.05em;
}

/* Content Boxen */
.content-box, .contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 5px solid #e31e24;
}

.impressum-content {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
}

/* Links */
a {
    color: #e31e24;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b01820;
    text-decoration: underline;
}

.btn {
    display: inline-block;
    background: #e31e24;
    color: white !important;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.btn:hover {
    background: #b01820;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.4);
}

.links {
    text-align: center;
    margin-top: 40px;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

footer p {
    color: white;
    margin-bottom: 5px;
}

.creator {
    font-size: 0.9em;
    opacity: 0.8;
}

.creator a {
    color: #e31e24;
    font-weight: 600;
}

.creator a:hover {
    color: #ff4444;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    main {
        padding: 30px 25px 40px;
    }

    h1 {
        font-size: 2.2em;
    }

    .subtitle {
        font-size: 1.1em;
    }

    .logo {
        max-width: 100%;
    }

    .content-box, .contact-info, .impressum-content {
        padding: 20px;
    }

    .language-switcher {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.4em;
    }

    main {
        padding: 20px 15px 30px;
    }
}
