/* Contact Page Specific Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    margin-top: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    color: rgb(207, 159, 36);
    font-size: 18px;
    margin-bottom: 8px;
    text-align: left;
}

.form-group input,
.form-group textarea {
    background-color: #2a2a2e;
    border: 2px solid #c3073f;
    border-radius: 5px;
    color: #f0f0f0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    padding: 12px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ffd369;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: #c3073f;
    color: #f0f0f0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    padding: 15px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #a30634;
    transform: scale(1.03);
}

.honeypot {
    display: none;
}

.contact-info {
    margin-top: 40px;
    text-align: left;
    width: 100%;
    max-width: 600px;
}

.contact-info h3 {
    color: rgb(207, 159, 36);
    font-size: 22px;
    margin-bottom: 15px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    color: #f0f0f0;
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-info a {
    color: #c3073f;
    text-decoration: none;
    font-weight: normal;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    gap: 40px;
    margin-top: 20px;
}

.contact-info, .contact-form {
    flex: 1;
    max-width: 45%;
    margin-top: 0;
}

.separator {
    font-size: 24px;
    font-weight: bold;
    color: rgb(207, 159, 36);
    align-self: center;
    margin: 0 20px;
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }
    .contact-info, .contact-form {
        max-width: 100%;
    }
    .separator {
        margin: 20px 0;
    }
}
