/* Contact Page Specific Styles */
.contact-body {
    background-color: #0d1117;
    color: #e6edf3;
}

.contact-header {
    padding: 1.5rem 0;
    /* Border is now controlled by important.css */
}

.contact-hero {
    text-align: center;
    padding: 3rem 0 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.contact-hero .subtitle {
    font-size: 1.25rem;
    color: #8b949e;
    line-height: 1.5;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

/* Left column - Contact info */
.contact-info {
    padding: 2rem 0;
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3b82f6;
    display: inline-block;
    color: #ffffff;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.email-icon {
    background-color: rgba(59, 130, 246, 0.15);
}

.community-icon {
    background-color: rgba(59, 130, 246, 0.15);
}

.hours-icon {
    background-color: rgba(59, 130, 246, 0.15);
}

.contact-icon svg {
    color: #3b82f6;
    stroke: #3b82f6;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-details p {
    color: #8b949e;
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.hours {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

/* Right column - Contact form */
.contact-form-container {
    background-color: #161b22;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #ffffff;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.contact-form-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #3b82f6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 6px;
    background-color: #0d1117;
    border: 1px solid #30363d;
    color: #e6edf3;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.send-button {
    width: 100%;
    padding: 0.75rem;
    border-radius: 6px;
    background-color: #3b82f6;
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.send-button:hover {
    background-color: #2563eb;
}

/* Main content layout adjustments */
.contact-main {
    padding-top: 2rem;
}

.contact-content {
    margin-top: 2rem;
}

/* Responsive styles */
@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        padding: 1rem 0;
        order: 2;
    }
    
    .contact-form-container {
        order: 1;
    }
}

@media (max-width: 600px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
} 