/* HOH Contact Form — Sanctuary Soft UI */
.hoh-contact-form {
    max-width: 650px;
    margin: 40px auto;
    padding: 35px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #f0eefc;
    font-family: system-ui, sans-serif;
}

.hoh-contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #5a4ea3; /* HOH Purple */
    font-size: 15px;
}

.hoh-contact-form input[type="text"],
.hoh-contact-form input[type="email"],
.hoh-contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #dcd6f7;
    background: #faf9ff;
    font-size: 16px;
    margin-bottom: 22px;
    transition: all 0.25s ease;
}

.hoh-contact-form input:focus,
.hoh-contact-form textarea:focus {
    border-color: #7a5cff;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(122, 92, 255, 0.18);
    outline: none;
}

.hoh-contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.hoh-contact-form button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #7a5cff, #5a3fe0);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.hoh-contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(90, 63, 224, 0.35);
}

.hoh-contact-form button:active {
    transform: translateY(0);
    box-shadow: none;
}
