/* Contact Section */
#contact {
    display: flex; /* Enable Flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    min-height: 100vh; /* Make the section full screen height */
    padding: 20px; /* Add padding for smaller screens */
    background-color: #1A3636; /* Dark teal background */
    color: #F5F5F5; /* Light text */
    text-align: center;
}

/* Center the container */
.contact-container {
    max-width: 800px; /* Limit the width of the content */
    width: 100%; /* Ensure responsiveness */
}

/* Contact Header */
.contact-header h2 {
    font-family: 'Roboto Mono', monospace;
    font-size: 2.5rem;
    color: #D6BD98; /* Accent color */
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 1.3rem;
    color: #CCCCCC; /* Subtle text color */
    margin-bottom: 30px;
}

/* Contact Form */
.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    background-color: #161B22; /* Slightly lighter background for inputs */
    color: #F5F5F5; /* Light text */
    border: 1px solid #2D333B; /* Border for inputs */
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
    font-family: 'Roboto Mono', monospace;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #D6BD98; /* Accent color for focus */
}

.contact-form button {
    background-color: #D6BD98;
    color: #0D1117; /* Contrast text color */
    border: none;
    padding: 10px;
    font-size: 1rem;
    font-family: 'Roboto Mono', monospace;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background-color: #B59A7A; /* Slightly darker accent */
    transform: translateY(-2px); /* Lift effect */
}

/* Social Icons */
.contact-social {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.contact-social a {
    font-size: 3rem;
    color: #CCCCCC;
    transition: color 0.3s ease;
}

.contact-social a:hover {
    color: #D6BD98; /* Highlight color */
    transform: scale(1.2); /* Slightly enlarge on hover */
}

@media (max-width: 768px) {
    .contact-form {
        max-width: 100%; /* Full width for smaller screens */
    }

    .contact-social a {
        font-size: 1.2rem; /* Adjust icon size */
    }
}
