/* === Basis-Layout ============================== */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #fff6f9;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* === HEADER ==================================== */
.header {
    position: relative;
    background-color: #fce4ec;
    padding: 1rem 0;
    text-align: center;
}

/* Nur über dem Content eine Trennlinie */
.header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 240px; /* Breite der Sidebar */
    right: 0;
    height: 2px;
    background-color: #f8bbd0;
}

.header-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.logo img {
    height: 60px;
    cursor: pointer;
}

.site-title {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: #c2185b;
    margin: 0;
}

/* === HAUPTBEREICH ============================== */
.main-wrapper {
    display: flex;
    flex: 1;
    min-height: 100%;
}

/* === SIDEBAR =================================== */
.sidebar {
    width: 240px;
    background-color: #fce4ec;
    padding: 2rem 1rem;
    box-sizing: border-box;
    border-right: 2px solid #f8bbd0;
}

/* === CONTENT =================================== */
.content {
    flex: 1;
    padding: 2rem;
    background-color: #fff;
    box-sizing: border-box;
    margin-bottom: 0;
    border-bottom: 2px solid #f8bbd0;
}

/* === FOOTER ==================================== */
.footer {
    background-color: #fce4ec;
    border-top: none;
    padding: 2rem 1rem 1rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: #c2185b;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ec407a;
}

.footer-copy {
    font-size: 0.9rem;
    color: #888;
    font-family: 'Poppins', sans-serif;
}

/* === EINGABEFORMULAR-STYLING =================== */
.content form input[type="text"],
.content form input[type="email"],
.content form input[type="number"],
.content form textarea,
.content form select {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    margin-bottom: 1rem;
    background-color: white;
    appearance: none;
}

/* Optionaler Dropdown-Pfeil für moderne Browser */
.content form select {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 7 5-7' fill='%23666'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
}

/* Fokus-Effekt für alle Felder */
.content form input:focus,
.content form textarea:focus,
.content form select:focus {
    outline: none;
    border-color: #c2185b;
    box-shadow: 0 0 0 2px rgba(194, 24, 91, 0.2);
}

/* Textarea individuell */
.content form textarea {
    resize: vertical;
    min-height: 120px;
}
