/* contact.css */

/* ===================== */
/* CONTACT PAGE */
/* ===================== */

.contact-background {
    margin-top: 0;
    padding-top: var(--navbar-height);

    background:
        linear-gradient(
            rgba(0,0,0,.35),
            rgba(0,0,0,.55)
        ),
        url("/images/elements/bkgd_black.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-title {
    text-align: center;
    margin-bottom: 0px;
}

.contact-title h1 {
    font-family: "Cinzel", serif;
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    margin: 0;

}

.contact-page {

    text-align: center;
}

.contact-page h1 {
    font-family: "Cinzel", serif;
    color: var(--gold);
    font-size: 2.8rem;
    margin-bottom: 0px;
}

.contact-intro {
    max-width: 700px;
    margin: 0 auto 20px;
    font-family: "Lora", serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}


/* ===================== */
/* FORM */
/* ===================== */

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;

    background: #262626;
    border-radius: 2px;

    box-shadow: 0 10px 30px rgba(0,0,0,.45);
}


/* ===================== */
/* FORM GROUPS */
/* ===================== */

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 18px;
}

.form-group label {
    font-family: "Cinzel", serif;
    color: var(--text-gold);
    font-size: .95rem;
    margin-bottom: 5px;
    letter-spacing: .08em;
}


/* ===================== */
/* INPUTS */
/* ===================== */

.contact-form input,
.contact-form textarea {

    width: 100%;
    box-sizing: border-box;

    padding: 14px 16px;

    font-family: "Cinzel", serif;
    font-size: 1rem;
    color: var(--text-light);

    background: #1b1b1b;

    border: 1px solid #7d1d1d;
    border-radius: 6px;

    outline: none;

    
}

.contact-form textarea {
    resize: vertical;
    min-height: 220px;
}


/* ===================== */
/* PLACEHOLDER */
/* ===================== */

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #8b8b8b;
    font-family: "Cinzel", serif;
}


/* ===================== */
/* FOCUS */
/* ===================== */

.contact-form input:focus,
.contact-form textarea:focus {

    border-color: var(--gold);

    box-shadow:
        0 0 0 3px rgba(212,175,55,.18);

    background: #202020;
}


/* ===================== */
/* BUTTON */
/* ===================== */

.contact-form .gold-button {
    display: block;
    margin: 35px auto 0;
}


/* ===================== */
/* MOBILE */
/* ===================== */

@media (max-width:768px) {

    .contact-page {
        padding: 60px 20px;
    }

    .contact-form {
        padding: 28px;
    }

}