/* contact.css - Custom styles for contact.html */

.contact {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-container {
    background: #161616;
    padding: 4rem 3rem;
    border-radius: 2rem;
    border: 0.2rem solid #b74b4b;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 0 25px #b74b4b;
}

.contact .heading {
    font-size: 4rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.contact-form label {
    font-size: 1.4rem;
    color: #b74b4b;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    border: none;
    outline: none;
    background: #222;
    color: #fff;
    margin-bottom: 0.2rem;
}

.contact-form textarea {
    resize: vertical;
}

.contact .btn {
    width: 100%;
}

.contact .social-icons {
    margin-top: 2rem;
    text-align: center;
}

.contact-form .contact-alt {
    margin-top: 2.5rem;
    padding: 1.5rem 1rem 0.5rem 1rem;
    border-top: 1px solid #b74b4b44;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
}

.contact-form .contact-alt p {
    color: #b74b4b;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 0 1rem 0;
    text-align: center;
}

.contact-form .contact-alt .social-icons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin: 0;
}

.contact-form .contact-alt .social-icons a {
    color: #b74b4b;
    font-size: 2.2rem;
    border: 2px solid #b74b4b;
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #181818;
    transition: 0.3s;
}

.contact-form .contact-alt .social-icons a:hover {
    background: #b74b4b;
    color: #fff;
    border-color: #fff;
}

#custom-subject {
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    border: none;
    outline: none;
    background: #222;
    color: #fff;
    margin-bottom: 0.2rem;
    margin-top: 0.7rem;
    transition: border 0.3s;
}

#custom-subject:focus {
    border: 1.5px solid #b74b4b;
}

@media (max-width: 600px) {
    .contact-form-container {
        padding: 2rem 1rem;
    }
    .contact .heading {
        font-size: 2.5rem;
    }
    .contact-form .contact-alt {
        padding: 1rem 0.2rem 0.5rem 0.2rem;
    }
}
