/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BASIS */
body {
    font-family: Arial, sans-serif;
    background-color: #cfeb99;
    color: #4c1f68;
    line-height: 1.6;
}

/* HEADER */
header {
    text-align: center;
    padding: 15px 20px;
    min-height: 120px;
}

/* TITELZEILE (DEIN HEADER-PROBLEM FIX) */
.titelzeile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    min-height: 60px;
}

/* HERZBILD */
.herz {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: block;
}

/* �BERSCHRIFTEN */
h1, h2, h3, h4 {
    margin: 0;
    line-height: 1.2;
}

/* NAVIGATION */
nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    padding: 10px 0;
}

nav a {
    display: inline-block;
    padding: 8px 12px;
    background: #cfeb99;
    color: #4c1f68;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.2s ease;
}

nav a:hover {
    opacity: 0.85;
}

/* LAYOUT */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.card {
    padding: 20px;
}

/* BILDER */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* SPEZIFISCHES BILD (falls genutzt) */
.center-img {
    width: 100%;
    max-width: 940px;
    height: 120px;
    margin: 10px auto;
}

/* FLEX CONTENT */
.content-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.text {
    flex: 1;
}

/* BILD BOX */
.bild img {
    width: 160px;
    height: auto;
}

/* FORMULAR */
input,
textarea {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
}

/* BUTTON */
button {
    width: 100%;
    padding: 12px;
    background: #cfeb99;
    color: #4c1f68;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
}

button:hover {
    opacity: 0.9;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
}

.kontakt-box {
    max-width: 500px;
    margin: 40px auto;
    background: #74b269; 
    padding: 25px;
    box-sizing: border-box;
}