/* Start custom CSS *//* =========================================
   WEDDING CONTACT FORM
   ========================================= */

.wedding-contact-form {
    width: 100%;
    max-width: 100%;
    font-family: "League Spartan", sans-serif;
}


/* ---------- ROW ---------- */

.wedding-contact-form .wcf-row {
    display: flex;
    width: 100%;
    gap: 20px;
}

.wedding-contact-form .wcf-two-col > .wcf-field {
    width: 50%;
}


/* ---------- FIELD ---------- */

.wedding-contact-form .wcf-field {
    margin-bottom: 22px;
}

.wedding-contact-form .wcf-full {
    width: 100%;
}

.wedding-contact-form label {
    display: block;
    margin-bottom: 9px;

    font-family: "League Spartan", sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    color: #333333;
}

.wedding-contact-form label span {
    color: #b88a3b;
}


/* ---------- INPUTS ---------- */

.wedding-contact-form input[type="text"],
.wedding-contact-form input[type="email"],
.wedding-contact-form input[type="tel"],
.wedding-contact-form input[type="date"],
.wedding-contact-form select,
.wedding-contact-form textarea {

    width: 100%;
    box-sizing: border-box;

    border: 1px solid #d7d7d7;
    border-radius: 0;

    background: #ffffff;

    color: #333333;

    font-family: "League Spartan", sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2px;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


/* ---------- INPUT HEIGHT ---------- */

.wedding-contact-form input[type="text"],
.wedding-contact-form input[type="email"],
.wedding-contact-form input[type="tel"],
.wedding-contact-form input[type="date"],
.wedding-contact-form select {

    height: 52px;
    padding: 0 14px;
}


/* ---------- TEXTAREA ---------- */

.wedding-contact-form textarea {
    min-height: 96px;
    height: 96px;

    padding: 14px;

    resize: vertical;
}


/* ---------- PLACEHOLDER ---------- */

.wedding-contact-form input::placeholder,
.wedding-contact-form textarea::placeholder {
    color: #a5a5a5;
    opacity: 1;
}


/* ---------- SELECT ---------- */

.wedding-contact-form select {
    appearance: auto;
    cursor: pointer;
    color: #555555;
}


/* ---------- DATE ---------- */

.wedding-contact-form input[type="date"] {
    color: #888888;
    cursor: pointer;
}


/* ---------- FOCUS ---------- */

.wedding-contact-form input:focus,
.wedding-contact-form select:focus,
.wedding-contact-form textarea:focus {

    border-color: #b4985d;

    box-shadow: 0 0 0 1px rgba(180, 152, 93, 0.08);
}


/* ---------- SUBMIT ---------- */

.wedding-contact-form .wcf-submit {
    margin-top: 2px;
}

.wedding-contact-form input[type="submit"] {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 138px;
    height: 46px;

    padding: 0 18px;

    border: 1px solid #b98528;
    border-radius: 0;

    background: #b98528;
    color: #ffffff;

    font-family: "League Spartan", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.wedding-contact-form input[type="submit"]:hover {
    background: #9f7221;
    border-color: #9f7221;
    transform: translateY(-1px);
}


/* =========================================
   CF7 VALIDATION
   ========================================= */

.wedding-contact-form .wpcf7-not-valid {
    border-color: #c96c5b !important;
}

.wedding-contact-form .wpcf7-not-valid-tip {
    display: none;
}

.wedding-contact-form .wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 12px 15px !important;

    border: 1px solid #b4985d !important;

    font-family: "League Spartan", sans-serif;
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .wedding-contact-form .wcf-row {
        flex-direction: column;
        gap: 0;
    }

    .wedding-contact-form .wcf-two-col > .wcf-field {
        width: 100%;
    }

    .wedding-contact-form .wcf-field {
        margin-bottom: 20px;
    }

    .wedding-contact-form label {
        font-size: 10px;
        letter-spacing: 1.1px;
    }

    .wedding-contact-form input[type="text"],
    .wedding-contact-form input[type="email"],
    .wedding-contact-form input[type="tel"],
    .wedding-contact-form input[type="date"],
    .wedding-contact-form select {
        height: 50px;
    }

    .wedding-contact-form textarea {
        min-height: 120px;
        height: 120px;
    }

    .wedding-contact-form input[type="submit"] {
        width: 100%;
        height: 48px;
    }
}/* End custom CSS */