/* css/contact.css */

/* General Styles */
body {
    background-color: #1A1A1A;
    color: #FFFFFF;
    margin: 0;
}

/* Contact Section */
#contact-section {
    background-color: #FFFFFF;
    color: #1C2526;
    padding: 60px 20px;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

#contact-section h1 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 10px;
}

#contact-section .subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Form */
#contact-form {
    text-align: left;
}

#contact-form fieldset {
    border: none;
    padding: 0;
    margin: 0 0 30px 0;
}

#contact-form legend {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
    color: #1C2526;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 5px;
    color: #1C2526;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #FF5E62;
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-group label {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1C2526;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

#contact-form .cta-button {
    background: linear-gradient(90deg, #FF5E62, #FF9966);
    color: #FFFFFF;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    transition: background 0.3s ease;
}

#contact-form .cta-button:hover {
    background: linear-gradient(90deg, #FF9966, #FF5E62);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #contact-section {
        padding: 40px 15px;
    }

    #contact-section h1 {
        font-size: 28px;
    }

    #contact-section .subtitle {
        font-size: 16px;
    }

    #contact-form legend {
        font-size: 18px;
    }

    .form-group label,
    .form-group input,
    .form-group textarea,
    .checkbox-group label {
        font-size: 14px;
    }

    #contact-form .cta-button {
        font-size: 14px;
        padding: 10px 25px;
    }
}