/*
 * contact.css
 * This file contains styles specific to the Get Involved and Contact sections.
 * It should be included AFTER index.css in contact.html.
 */




/* Contact Form */
#contact {
    background: linear-gradient(to bottom, #E0E7FF, #F9FAFB);
    position: relative;
}
#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M1200 0L0 120H1200V0z" fill="rgba(191,219,254,0.5)"/></svg>');
    background-size: cover;
    pointer-events: none;
}
#contact-form-container {
    background: #FFFFFF;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#contact-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
input[type="text"], input[type="email"], textarea {
    background: #F3F4F6;
    border: 1px solid #D1D5DB;
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    color: #374151;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
    background: #FFF;
    border-color: #FBBF24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.3);
    outline: none;
}
.form-message {
    padding: 1rem;
    border-radius: 0.75rem;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    text-align: center;
}
.form-message.show {
    opacity: 1;
    transform: translateY(0);
}
.form-success {
    background-color: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}
.form-error {
    background-color: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}
