/* ===== CONTACT PAGE — PAGE‑SPECIFIC CSS ===== */

/* Subtitle under page title */
.subtitle {
    text-align: center;
    margin-top: -0.5rem;
    color: #6a4a5a;
}

/* Contact form layout */
.contact-form {
    margin-top: 2rem;
}

.form-row {
    margin-bottom: 1.4rem;
    display: flex;
    flex-direction: column;
}

/* Form labels */
label {
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #451638;
}

/* Inputs & textarea */
input,
textarea {
    padding: 0.7rem 0.9rem;
    border: 1px solid #c8b8a8;
    border-radius: 6px;
    font-size: 1rem;
    background: #fffdf7;
    color: #451638;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #78336A;
    box-shadow: 0 0 4px rgba(120,51,106,0.4);
}

/* Submit button */
.submit-btn {
    background: #78336A;
    color: white;
    padding: 0.9rem 1.4rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.2s ease;
}

.submit-btn:hover {
    background: #5e2754;
}

/* Success & error messages */
.success-box,
.error-box {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.success-box {
    background: #e6f7e6;
    color: #2d7a2d;
}

.error-box {
    background: #fdeaea;
    color: #a33a3a;
}
