:root {
    --rose: #d991b3;
    --rose-dark: #b96b90;
    --cream: #fff9fb;
    --gold: #d6b36a;
    --text: #4b3b44;
    --white: #ffffff;
    --shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #fffafc 0%, #fff3f8 100%);
    color: var(--text);
}

.site-wrapper {
    min-height: 100vh;
}

.site-header {
    background: linear-gradient(90deg, #fff7fb, #ffe7f0);
    border-bottom: 1px solid rgba(185, 107, 144, 0.18);
    box-shadow: var(--shadow);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.site-logo {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 8px;
}

.header-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-title {
    margin: 0;
    font-family: 'Great Vibes', cursive;
    font-size: 3.6rem;
    font-weight: 400;
    color: var(--rose-dark);
}

.site-subtitle {
    margin: 0;
    font-size: 1rem;
}

.layout-shell {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    padding: 24px;
    min-height: calc(100vh - 230px);
}

.sidebar {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px 18px;
    align-self: stretch;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 24px;
}

.content-area {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-card,
.content-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card h2,
.content-card h2 {
    margin-top: 0;
    color: var(--rose-dark);
    font-size: 2rem;
}

.content-card h3 {
    color: var(--rose-dark);
    margin-top: 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-box {
    background: var(--cream);
    border: 1px solid rgba(185, 107, 144, 0.12);
    border-radius: 16px;
    padding: 18px;
}

.site-footer {
    background: #fff;
    border-top: 1px solid rgba(185, 107, 144, 0.18);
    padding: 24px;
    text-align: center;
    margin-top: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.footer-links a,
.site-footer a {
    color: var(--rose-dark);
    text-decoration: none;
    font-weight: 500;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label {
    font-weight: 600;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e6c8d7;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: #fff;
}

.alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 18px;
}

.alert.error {
    background: #fff0f0;
    color: #9b2c2c;
    border: 1px solid #f2b3b3;
}

.alert.success {
    background: #eefbf1;
    color: #21633b;
    border: 1px solid #bce0c8;
}

.hidden {
    display: none;
}

.frage {
    background: #fffafc;
    border: 1px solid #f0d3df;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.frage h3,
.frage h4 {
    margin-top: 0;
    margin-bottom: 18px;
    color: var(--rose-dark);
    line-height: 1.4;
}

.vertical-options {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    line-height: 1.5;
    cursor: pointer;
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 2px 0 0 0;
    flex: 0 0 18px;
    accent-color: var(--rose-dark);
}

.inline-text-option {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.inline-text-option-top {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.inline-text-option-top input[type="radio"],
.inline-text-option-top input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--rose-dark);
}

.inline-text-option input[type="text"] {
    max-width: 320px;
    width: 100%;
}

.skala {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.scale-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffeef5;
    border: 1px solid #edc2d5;
    border-radius: 14px;
    padding: 12px 16px;
    min-width: 64px;
    cursor: pointer;
}

.scale-option input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--rose-dark);
}

.freitext textarea {
    width: 100%;
    min-height: 120px;
}

.freitext input[type="date"],
.freitext input[type="text"] {
    max-width: 320px;
}

@media (max-width: 768px) {
    .frage {
        padding: 16px;
    }

    .inline-text-option input[type="text"],
    .freitext input[type="date"],
    .freitext input[type="text"] {
        max-width: 100%;
    }

    .skala {
        gap: 10px;
    }

    .scale-option {
        min-width: 56px;
        padding: 10px 12px;
    }
}

table th,
table td {
    vertical-align: top;
}

.calendar-day strong {
    display: inline-block;
    margin-bottom: 6px;
}

