/*
 * CONTACT.CSS
 * Styles for the contact page.
 */

/* --- Main Layout & Container --- */
.contact-section {
    padding: 5rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Two columns */
    gap: 4rem;
    align-items: start;
}

/* --- Left Column: Contact Info --- */
.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.8;
}

.contact-details {
    list-style: none;
    margin-bottom: 2rem;
}

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-details svg {
    width: 20px;
    height: 20px;
    margin-right: 1rem;
    fill: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--font-color);
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.social-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.social-links svg {
    width: 24px;
    height: 24px;
}

/* --- Right Column: Contact Form --- */
.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.contact-form .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: var(--body-font);
    color: var(--font-color);
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(180, 122, 84, 0.2);
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        gap: 3rem;
    }

    .contact-info {
        text-align: center;
    }

    .contact-details li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}