/* --- CSS Styling --- */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('assets/banner.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hauptcontainer */
.container {
    max-width: 700px;
    margin: -60px auto 50px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

/* Info Text */
.party-info {
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}
.party-info h2 { color: #e67e22; margin-top: 0; }
.party-info p { font-size: 1.1rem; }

/* Formular Styling */
.form-group { margin-bottom: 20px; }
label { display: block; margin-bottom: 8px; font-weight: bold; color: #444; }

input[type="text"], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    font-family: inherit;
}

.radio-group { display: flex; gap: 20px; margin-top: 5px; }
.radio-group label { font-weight: normal; display: flex; align-items: center; gap: 5px; }

button {
    background-color: #e67e22;
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    transition: background 0.3s ease;
    margin-top: 10px;
}
button:hover { background-color: #d35400; }

/* Meldungen */
#form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    display: none;
    text-align: center;
    font-weight: bold;
}
.success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.error { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Responsive */
@media (max-width: 600px) {
    .container { margin: -30px 15px 30px; padding: 20px; }
    .hero h1 { font-size: 2.5rem; }
}
