:root {
    /* Farben aus dem Logo extrahiert */
    --color-text: #595959; /* Dunkelgrau aus "ZEIT." */
    --color-green: #6B8E5B; /* Grün aus "RAUM" */
    --color-teal: #82c2b7; /* Türkis aus dem Kreis */
    --color-sand: #C6B995; /* Beige/Sand aus dem Kreis */
    --color-bg: #FAFAFA; /* Sehr weiches Weiß für den Hintergrund */
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
    line-height: 1.6;
}

.coming-soon-container {
    background: #ffffff;
    max-width: 600px;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 5px solid var(--color-green);
}

.logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 40px;
}

.message h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-green);
    margin-bottom: 15px;
}

.message p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 40px;
}

.contact-info {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 30px;
}

.contact-info h2 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--color-teal);
}

.contact-info p {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.contact-info a {
    color: var(--color-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--color-teal);
}

/* --- Formular Styling --- */
.rsvp-form {
    text-align: left;
    margin-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-green);
}

.form-group input[type="text"],
.form-group input[type="number"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-text);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 5px rgba(97, 189, 177, 0.3);
}

.radio-group label {
    display: flex;
    align-items: center;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 10px;
    cursor: pointer;
}

.radio-group input[type="radio"] {
    margin-right: 10px;
    transform: scale(1.2);
    accent-color: var(--color-green);
}

/* Honeypot verstecken */
.hp-field {
    display: none;
}

.btn-submit {
    background-color: var(--color-green);
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.btn-submit:hover {
    background-color: var(--color-teal);
}

.alert {
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
    font-weight: 600;
}

.alert.success {
    background-color: rgba(107, 142, 91, 0.1);
    color: var(--color-green);
    border: 1px solid var(--color-green);
}

.alert.error {
    background-color: #ffeaea;
    color: #cc0000;
    border: 1px solid #cc0000;
}

/* Responsiveness für Smartphones */
@media (max-width: 480px) {
    .coming-soon-container {
        padding: 30px 20px;
    }
    .message h1 {
        font-size: 1.5rem;
    }
}