/* Contact Page Specific Styles */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    align-items: stretch;
    justify-items: stretch;
    gap: 16px;
    padding: 0px;
    margin: 60px 0px 0px 0px;
}

.contact-wrapper {
    display: block;
}

.contact-wrapper .heading {
    padding: 0px;
    margin: 0px;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 80px;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
}

.contact-wrapper p {
    padding: 0px;
    margin: 0px 0px 10px 0px;
    font-family: 'PT Sans', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.3;
    color: #ffffff;
}

.form-block {
    display: block;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}

.text-field {
    padding: 8px 12px 8px 20px;
    margin: 0px 0px 20px 0px;
    min-height: 60px;
    background-color: transparent;
    border: 1px solid #c6c6c6;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
}

.text-field::placeholder {
    color: #ffffff;
    opacity: 0.7;
}

.text-area {
    padding: 20px;
    margin: 0px 0px 10px 0px;
    min-height: 250px;
    background-color: transparent;
    border: 1px solid #c6c6c6;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
    resize: vertical;
}

.text-area::placeholder {
    color: #ffffff;
    opacity: 0.7;
}

.contact-submit-button {
    display: block;
    padding: 15px;
    margin: 10px 0px 0px 0px;
    background-color: #E4E1DB;
    border: 1px solid #c6c6c6;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    color: #000000;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 500ms ease, color 500ms ease;
}

.contact-submit-button:hover {
    background-color: #000000;
    color: #ffffff;
}

.success-message {
    padding: 15px 20px;
    margin: 15px 0px 0px 0px;
    background-color: #4caf50;
    color: #ffffff;
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    border-radius: 4px;
    display: none;
}

.error-message {
    padding: 15px 20px;
    margin: 15px 0px 0px 0px;
    background-color: #f44336;
    color: #ffffff;
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    border-radius: 4px;
    display: none;
}

.contact-submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
