/* --- Contact Form Styles (Contact Page Only) --- */
.contact-form-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 0 5px rgba(217, 166, 164, 0.5);
}

.submit-btn {
    background-color: var(--accent-green);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #5a7d1b; /* A darker shade of the green */
}

/* --- Responsive Design --- */
/* Tablets (1024px and below) */
@media (max-width: 1024px) {
    .contact-form-section {
        max-width: 100%;
        padding: 0 20px;
    }

    .contact-form-section h1 {
        font-size: 2rem;
    }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
    .contact-form-section {
        max-width: 100%;
        padding: 0 15px;
    }

    .contact-form-section h1 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .contact-form-section p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .contact-form {
        gap: 15px;
        margin-top: 20px;
    }

    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 16px; /* Prevents mobile zoom on input focus */
    }

    .submit-btn {
        padding: 12px;
        font-size: 1rem;
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .contact-form-section {
        padding: 0 10px;
    }

    .contact-form-section h1 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .contact-form-section p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .contact-form {
        gap: 12px;
        margin-top: 15px;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 16px;
        border-radius: 4px;
    }

    .form-group textarea {
        resize: vertical;
        max-height: 200px;
    }

    .submit-btn {
        padding: 10px;
        font-size: 0.95rem;
    }
}