/* Hochzeit Rückmeldungsformular – Frontend */

.he-form-wrap {
    max-width: 560px;
    margin: 0 auto;
    font-family: inherit;
}

.he-form-inner {
    background: #1b3a3a;
    border-radius: 12px;
    padding: 40px 40px 36px;
    box-shadow: 0 8px 40px rgba(0,0,0,.25);
    color: #f0e8d4;
}

.he-form-title {
    font-size: 26px;
    font-weight: 700;
    color: #c9a94d;
    margin: 0 0 8px;
    text-align: center;
    letter-spacing: .5px;
}

.he-form-intro {
    text-align: center;
    color: #a8c0b0;
    font-size: 14px;
    margin: 0 0 28px;
    line-height: 1.6;
}

/* Fields */
.he-field {
    margin-bottom: 20px;
}
.he-field label,
.he-field > label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #c9a94d;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .6px;
}
.he-field input[type="text"],
.he-field input[type="number"],
.he-field textarea {
    width: 100%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(201,169,77,.3);
    border-radius: 6px;
    padding: 11px 14px;
    color: #f0e8d4;
    font-size: 15px;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color .2s;
}
.he-field input[type="text"]:focus,
.he-field input[type="number"]:focus,
.he-field textarea:focus {
    outline: none;
    border-color: #c9a94d;
    background: rgba(255,255,255,.09);
}
.he-field input[type="text"]::placeholder,
.he-field textarea::placeholder {
    color: rgba(240,232,212,.35);
}
.he-field input[type="number"] { width: 100px; }

/* Radio group */
.he-radio-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.he-radio-label { cursor: pointer; }
.he-radio-label input[type="radio"] { display: none; }
.he-radio-btn {
    display: inline-block;
    padding: 10px 18px;
    border: 2px solid rgba(201,169,77,.3);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #a8c0b0;
    transition: all .2s;
    background: rgba(255,255,255,.04);
}
.he-radio-label input[type="radio"]:checked + .he-radio-btn {
    border-color: #c9a94d;
    color: #c9a94d;
    background: rgba(201,169,77,.12);
}

/* Submit */
.he-submit {
    width: 100%;
    background: linear-gradient(135deg, #c9a94d 0%, #e0c06b 100%);
    color: #1b2e2e;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    letter-spacing: .3px;
    transition: opacity .2s, transform .1s;
}
.he-submit:hover { opacity: .9; transform: translateY(-1px); }
.he-submit:active { transform: translateY(0); }
.he-submit:disabled { opacity: .6; cursor: not-allowed; }

/* Notices */
.he-notice {
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 16px;
}
.he-notice--error {
    background: rgba(214,54,56,.15);
    border: 1px solid rgba(214,54,56,.4);
    color: #ff9b9b;
}

/* Success */
.he-success {
    text-align: center;
    padding: 20px 0;
}
.he-success-icon { font-size: 52px; margin-bottom: 12px; }
.he-success h3 {
    font-size: 22px;
    color: #c9a94d;
    margin: 0 0 8px;
}
.he-success p {
    color: #a8c0b0;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 480px) {
    .he-form-inner { padding: 28px 20px 24px; }
    .he-radio-group { flex-direction: column; }
}
