/* ========================= Contact Page ========================= */

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.contact-container h1 {
    color: #4a2f75;
    font-weight: 900;
    margin-bottom: 1rem;
}

.contact-intro {
    margin-bottom: 2rem;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Labels */
label {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    color: #4a2f75;
}

.inline-label {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

/* Inputs */
input[type="text"],
input[type="email"],
textarea,
select {
    padding: 0.6rem 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

/* Required badge */
.required {
    color: #d9534f;
    font-size: 0.9rem;
    margin-left: 0.25rem;
}

/* Submit button */
.submit-button {
    padding: 0.75rem 1.5rem;
    background: #f4e1e1;
    color: #333;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.submit-button:hover {
    background: #e9ddff;
}

/* Privacy notice */
.privacy {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Honeypot (hidden) */
.honeypot {
    display: none;
}

/* Status messages */
.sending-message {
    background: #fff3cd;
    color: #856404;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #ffeeba;
    margin-top: 1rem;
    font-weight: 600;
    animation: fadeIn 0.3s ease-out;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #c3e6cb;
    margin-top: 1rem;
    font-weight: 600;
    animation: fadeIn 0.3s ease-out;
}

.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}