header {
    width: 100%;
    background-color:white  #969a86;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    margin-top: 10px;
}

.image {
    border-radius: 16px;
}

.logo {
        height: 50px; /* optional */
        margin-right: 30px;
}

.logo-text {
    height: 35px;
}


/* BASE */
* {
    box-sizing: border-box;
    font-family: "brother-1816", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background: #969a86;
    min-height: 100vh;
}


/* FORM CONTAINER */
.form-container {
    width: 95%;
    max-width: 700px;
    margin: 2rem auto;
    padding: 1.5rem;

    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.form-container-result {
    color: white;
    width: 95%;
    height: 600px;
    max-width: 700px;
    margin: 2rem auto;
    padding: 1.5rem;

    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

    background-image: url("../images/rahel_2.jpg");
    background-repeat: no-repeat;

    background-size: cover;
    background-position: center;
}


/* FORM LAYOUT */
form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}


/* OPTIONS */
.options {
    display: flex;
    flex-direction: column;
}

.options p {
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}


/* RADIO LABELS (Boy / Girl bleiben normal) */
.options label {
    display: flex;
    align-items: center;
    gap: 0.75rem;

    padding: 0.6rem;
    margin-bottom: 0.4rem;

    border: 1px solid #ddd;
    border-radius: 10px;

    cursor: pointer;
    font-weight: 400;
}


/* TITEL (nur Feld-Überschriften wie "Baby Name", "Geburtstag") */
.field > label,
.options > p {
    font-weight: 700;
}

.row {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}


/* INPUTS */
input {
    padding: 4px;
    outline: none;
}


/* INPUT FIELDS (gleicher Look wie Radio-Optionen) */
.field input[type="text"],
.field input[type="date"],
.field input[type="email"],
.field input[type="tel"],
.field textarea{
    width: 100%;
    padding: 0.6rem;

    border: 1px solid #ddd;
    border-radius: 10px;

    min-height: 44px;

    background: #fff;
    font-size: 1rem;

    padding-left: 0.8rem;

    display: block;
}

.field textarea {
    resize: vertical;
    min-height: 120px;
    max-height: 300px;
    overflow-y: auto;
}

/* BUTTONS */
.button-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.8rem;
    color: #d0aba3
}


.button-row input,
.back-button {
    width: 100%;
    padding: 0.6rem;

    border: none;
    border-radius: 10px;

    text-align: center;
    text-decoration: none;
}

.button-row .back-button {
    background: #969a86;
    color: white;
}

.button-row input[type="submit"] {
    font-size: 1rem;
    font-weight: normal;

    background: #3b4435;
    color: #fff;
}



.step5 {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin: 0; /* wichtig */
}





@media (min-width: 768px) {
    .form-container {
        padding: 2.5rem;
        margin-top: 3rem;
    }

    /* 2-FELDER REIHEN (z.B. Vorname + Nachname) */
    .row {
        display: flex;
        flex-direction: row;
        gap: 1rem;
    }

    /* beide Felder gleich breit */
    .row .field {
        flex: 1;
    }

    /* Inputs in Rows füllen Spalte komplett */
    .row .field input,
    .row .field textarea {
        width: 100%;
    }
}


.back-home {
    color: #3b4435
}


footer {
    width: 100%;
    color: #fff;
    background-color: #3b4435;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 0;
    margin-top: 80px;
}

.link_footer {
    display: block;
    color: white;
    text-align: center;
    margin-top: 10px;
}
