/* Contact page styles - mobile-first approach */

/* Contact grid layout */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-top: 4px solid #4a7c3f;
}

.contact-card h3 {
    color: #4a7c3f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-info {
    margin-bottom: 1rem;
}

.contact-label {
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: #333;
    display: block;
    margin-bottom: 0.75rem;
}

.contact-value a {
    color: #2554C7;
    text-decoration: none;
}

.contact-value a:hover {
    text-decoration: underline;
}

/* Section styles */
.section {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.section h2 {
    color: #4a7c3f;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #5a8c4f;
    padding-bottom: 0.5rem;
}

/* Officer list */
.officer-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.officer-card {
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 6px;
    border-left: 3px solid #5a8c4f;
}

.officer-card h4 {
    color: #4a7c3f;
    margin-bottom: 0.25rem;
}

.officer-card .title {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.officer-card .info {
    font-size: 0.9rem;
    color: #555;
    margin: 0.25rem 0;
}

.officer-card a {
    color: #2554C7;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Social links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #4a7c3f;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.social-btn:hover {
    background-color: #3d6633;
}

/* Info box */
.info-box {
    background: #e7f3ff;
    border-left: 4px solid #2554C7;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.info-box h3 {
    color: #2554C7;
    margin-bottom: 0.75rem;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 1rem;
    text-align: center;
    margin-top: 3rem;
}

/* Tablet and mobile responsive styles */
@media (max-width: 768px) {
    .contact-grid, .officer-list {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 1.5rem 1rem;
    }
}

/* Mobile-specific styles */
@media (max-width: 480px) {
    .contact-card {
        padding: 1rem;
    }

    .section {
        padding: 1rem;
    }

    .social-links {
        flex-direction: column;
    }

    .social-btn {
        width: 100%;
        justify-content: center;
    }
}
