/* Goldene Momente – Buchung CSS */
/* Seitenbezogene Styles – modular ergänzt */

/* ===== BUCHUNGSFORMULAR ===== */
.booking-form {
    background: var(--white);
    padding: 7rem 6% 7rem;
    position: relative;
    z-index: 2;
}
.booking-form-inner {
    max-width: 720px;
    margin: 0 auto;
}
.booking-form-meta {
    font-size: 0.95rem;
    color: var(--gold-dark);
    letter-spacing: 5.5px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 2.6rem;
    text-align: center;
}
.booking-form h1 {
    font-size: clamp(1.8rem, 3.0vw, 2.5rem);
    color: var(--black);
    margin-bottom: 1.2rem;
    font-weight: 500;
    letter-spacing: -0.3px;
    line-height: 1.3;
    text-align: center;
}
.booking-form-intro {
    font-size: 1.02rem;
    color: rgba(0,0,0,0.6);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto 3.5rem;
    font-weight: 300;
    text-align: center;
}
.booking-form-form {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}
.form-row {
    display: flex;
    gap: 1.4rem;
}
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.form-group-full {
    flex: 1 1 100%;
}
.form-group label {
    font-size: 0.82rem;
    color: rgba(0,0,0,0.6);
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.label-optional {
    text-transform: none;
    font-size: 0.75rem;
    color: rgba(0,0,0,0.6);
    font-weight: 300;
    letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--black);
    background: #FAF9F7;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 2px;
    padding: 1rem 1.2rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(134, 105, 0, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0,0,0,0.6);
    font-weight: 300;
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}
.form-group select optgroup {
    font-weight: 500;
    color: var(--black);
}
.form-group select option {
    font-weight: 400;
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}
.form-checkbox-group {
    margin-top: 0.5rem;
}
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.88rem;
    color: rgba(0,0,0,0.6);
    line-height: 1.6;
    font-weight: 300;
}
.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 0.15rem;
    accent-color: var(--gold-dark);
    cursor: pointer;
}
.checkbox-label a {
    color: var(--gold-dark);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.3s ease;
}
.checkbox-label a:hover {
    color: var(--gold);
    border-bottom-color: transparent;
}
.checkbox-label-agb {
    margin-top: 0.6rem;
}
.form-submit {
    text-align: center;
    margin-top: 1.2rem;
}
.btn-submit {
    background: rgba(237, 181, 27, 0.92);
    color: var(--black);
    padding: 0 3.5rem;
    height: 50px;
    line-height: 50px;
    border: 1.5px solid rgba(237, 181, 27, 0.92);
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.btn-submit:hover {
    background: transparent;
    color: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
}

.form-select:invalid {
    color: rgba(0,0,0,0.6);
}
.form-select option,
.form-select optgroup {
    color: var(--black);
}

@media (max-width: 768px) {
    .booking-form { padding: 5rem 6% 5rem; }
    .booking-form h1 { font-size: clamp(1.6rem, 5vw, 1.9rem); }
    .booking-form-intro { font-size: 0.98rem; }
    .form-row { flex-direction: column; gap: 1.2rem; }
    .btn-submit { padding: 0 2rem; }
}
