@import './commonStyle.css';

.header-container{
    background-color: #1a1a1a; 
    background-image: url('../img/contact_background.webp');
}

.contact-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
}

.contact-section h2 {
    color: #333;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-size: 40px;
    font-weight: 500;
}

.section-description {
    text-align: center;
    color: #5a5a5a;
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 500;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    color: #333;
    margin-bottom: 8px;
}

input, textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--text-color-hover);
}
.submit-button {
    background-color: var(--text-color-hover);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #811c05;
}

.contact-form textarea {
    resize: none; 
}

@media (max-width: 768px) {
    .contact-section {
        padding: 20px;
    }

    .contact-section h2 {
        font-size: 32px;
    }

    .section-description {
        font-size: 14px;
    }

    .contact-form {
        gap: 16px;
    }

    input, textarea {
        font-size: 14px;
    }

    .submit-button {
        font-size: 14px;
    }
}