/* Globale Stile und Resets */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #F8F8F8;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
}

/* Header mit "Giersch" Schriftzug */
.header {
    padding: 2rem;
    text-align: center;
}

.header h1 {
    font-size: 1.5rem;
    /* GEÄNDERT: Von 500 auf 400 für einen leichteren Look */
    font-weight: 400; 
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
}

/* Hauptinhalt, der den verfügbaren Platz einnimmt */
.content {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Die Liste der Meilensteine */
.milestones p {
    margin: 0.8rem 0;
    font-size: 1.1rem;
    /* GEÄNDERT: Von 400 auf 300 für den filigranen Look */
    font-weight: 300; 
    color: #4B4B4B;
}

/* Sticky Footer am unteren Rand */
.footer {
    padding: 2rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    color: #808080;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
}

.footer a {
    color: #808080;
    text-decoration: underline;
    font-size: 0.9rem;
    font-weight: 300;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Anpassung für Mobilgeräte */
@media (max-width: 600px) {
    .header h1 {
        font-size: 1.2rem;
        text-transform: uppercase;
    }
    .milestones p {
        font-size: 1rem;
    }
}
/* --- Stile für die Kontakt-Seite --- */

.form-container {
    width: 100%;
    max-width: 550px; /* Etwas breiter für das Formular */
    padding: 0 1rem;
    box-sizing: border-box;
}

#contact-form {
    display: flex;
    flex-direction: column;
}

#contact-form input,
#contact-form textarea {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #1a1a1a;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

#contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Visuelles Feedback, wenn ein Feld aktiv ist */
#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: #808080;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

#contact-form button {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 14px 20px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;
    align-self: flex-start; /* Button linksbündig */
}

#contact-form button:hover {
    opacity: 0.8;
}

.hidden {
    display: none;
}

#success-message {
    text-align: center;
    font-weight: 300;
    color: #28a745; /* Grüner Farbton für Erfolg */
    border: 1px solid #e0e0e0;
    padding: 2rem;
    border-radius: 4px;
}
/* --- Stile für die Kontakt-Seite --- */

.form-container {
    width: 100%;
    max-width: 550px; /* Etwas breiter für das Formular */
    padding: 0 1rem;
    box-sizing: border-box;
}

#contact-form {
    display: flex;
    flex-direction: column;
}

#contact-form input,
#contact-form textarea {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #1a1a1a;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

#contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Visuelles Feedback, wenn ein Feld aktiv ist */
#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: #808080;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

#contact-form button {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 14px 20px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;
    align-self: flex-start; /* Button linksbündig */
}

#contact-form button:hover {
    opacity: 0.8;
}

.hidden {
    display: none;
}

#success-message {
    text-align: center;
    font-weight: 300;
    color: #28a745; /* Grüner Farbton für Erfolg */
    border: 1px solid #e0e0e0;
    padding: 2rem;
    border-radius: 4px;
}