/* ========================================= */
/* LA VINIA – FORMS (RESERVIERUNG) CSS       */
/* Premium Black / Gold                       */
/* ========================================= */

/* WRAPPER */
.res-wrap {
    max-width: 1100px;
    margin: 2.5rem auto 3rem auto;
    padding: 0 1.25rem;
}

/* GRID STRUCTURE */
.res-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    gap: 1.5rem;
}

@media (max-width: 820px) {
    .res-grid {
        grid-template-columns: 1fr;
    }
}

/* PANELS */
.res-panel {
    background: radial-gradient(circle at top left, #191919 0, #090909 55%);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 15px 35px rgba(0,0,0,0.65);
    padding: 1.5rem;
}

.res-panel h2 {
    font-family: "Times New Roman", serif;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 1rem;
    color: var(--gold);
    margin-top: 0;
    margin-bottom: 1rem;
}

/* FORM ROWS */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 0.9rem;
}

/* INPUTS + TEXTAREA (BASE) */
.res-input,
.res-textarea,
.form-row input,
.form-row textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border-radius: 9px;
    border: 1px solid #333;
    background: #050505;
    color: #f5f5f5;
    font-size: 0.9rem;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--gold);
    background: #0a0a0a;
    outline: none;
}

.res-textarea,
.form-row textarea {
    min-height: 100px;
    resize: vertical;
}

/* SUBMIT / ACTION BUTTON */
.btn-primary {
    border-radius: 999px;
    border: 1px solid rgba(213,165,70,0.85);
    background: radial-gradient(circle at top, #d5a546 0, #8a5b16 60%, #1c140a 100%);
    padding: 0.7rem 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 0.9rem;
    cursor: pointer;
    color: #050505;
    transition: 0.25s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(213,165,70,0.45);
}

/* SUCCESS / ERROR */
.msg-success {
    color: #7CFC7C;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.msg-error {
    color: #ff5555;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

/* PAGE TITLE */
.page-title {
    text-align: center;
    margin: 2rem 0 2.2rem 0;
}

.page-title h1 {
    font-family: "Times New Roman", serif;
    text-transform: uppercase;
    font-size: 2rem;
    letter-spacing: 0.22em;
    color: var(--gold);
}

.divider {
    width: 100px;
    height: 2px;
    margin: 0.5rem auto 1rem auto;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );
}

/* MOBILE BASE TWEAKS */
@media (max-width: 600px) {

    .res-wrap {
        margin: 1.5rem auto 2.5rem auto;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
        padding: 0.9rem;
        font-size: 1rem;
    }

    .page-title h1 {
        font-size: 1.4rem;
        letter-spacing: 0.14em;
    }

    .divider {
        width: 60px;
    }
}

/* TEXTAREA ALIGNMENT */
.res-panel textarea {
    width: 100%;
    padding: 0.55rem 0.75rem;
    background: #050505;
    color: #f5f5f5;
    border: 1px solid #333;
    border-radius: 9px;
    font-size: 0.9rem;
    min-height: 90px;
    resize: vertical;
    box-sizing: border-box;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.res-panel textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 8px rgba(213,165,70,0.25);
}

/* ========================================= */
/* iOS SAFARI – INPUT / TEXTAREA ZOOM FIX    */
/* ========================================= */
@supports (-webkit-touch-callout: none) {

    input,
    textarea,
    select {
        font-size: 16px !important;
    }

}
