
/* =========================================
   CONTACT PAGE
========================================= */


/* =========================================
   HERO
========================================= */

.contact-hero {
    width: 100%;
    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 100px 20px 70px;
}


.contact-hero > div {
    max-width: 800px;
}


.contact-hero span {
    display: block;

    margin-bottom: 15px;

    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;

    /* color: #ffffff; */
}


.contact-hero h1 {
    margin: 0 0 20px;

    font-size: 48px;
    line-height: 1.15;

    font-weight: 500;

    /* color: #ffffff; */
}


.contact-hero p {
    max-width: 650px;

    margin: 0 auto;

    font-size: 17px;
    line-height: 1.8;

    /* color: #ffffff; */
}


/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
    width: 100%;

    padding: 100px 20px;

    background: #ffffff;
}


.contact-container {
    width: 90%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: start;
}


/* =========================================
   CONTACT INFORMATION
========================================= */

.contact-info h2,
.contact-form h2 {
    margin: 0 0 20px;

    font-size: 32px;
    font-weight: 500;
}


.contact-info > p {
    max-width: 500px;

    margin: 0 0 40px;

    font-size: 16px;
    line-height: 1.8;

    color: #666666;
}


.contact-item {
    margin-bottom: 28px;
}


.contact-item h3 {
    margin: 0 0 6px;

    font-size: 15px;

    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 1px;

    color: #333333;
}


.contact-item p {
    margin: 0;

    font-size: 16px;

    color: #666666;
}


/* =========================================
   WHATSAPP BUTTON
========================================= */
/* =========================================
   SOCIAL CONTACT BUTTONS
========================================= */
/* =========================================
   SOCIAL CONTACT ICONS
========================================= */

.social-contact-icons {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 30px;
}


.social-contact-icons a {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    text-decoration: none;

    color: #2f2f2f;

    background: #f8f6f3;

    border: 1px solid #e3e0dc;

    border-radius: 50%;

    font-size: 17px;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.social-contact-icons a:hover {
    color: #ffffff;

    background: var(--bridal-purple);

    border-color: #b89b72;

    transform: translateY(-3px);
}

/* =========================================
   CONTACT FORM
========================================= */

.contact-form {
    width: 100%;
}


.contact-form form {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 18px;
}


.contact-form input,
.contact-form textarea {
    width: 100%;

    padding: 15px 16px;

    font-family: inherit;
    font-size: 15px;

    color: #333333;

    background: #fafafa;

    border: 1px solid #dddddd;
    border-radius: 2px;

    outline: none;

    box-sizing: border-box;

    transition:
        border-color 0.3s ease,
        background 0.3s ease;
}


.contact-form input {
    height: 52px;
}


.contact-form textarea {
    min-height: 150px;

    resize: vertical;
}


.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #b89b72;

    background: #ffffff;
}


.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999999;
}


/* =========================================
   SEND MESSAGE BUTTON
========================================= */

.contact-form button {
    width: fit-content;

    padding: 15px 32px;

    border: none;
    border-radius: 2px;

    background: #2f2f2f;
    color: #ffffff;

    font-family: inherit;
    font-size: 14px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.contact-form button:hover {
    background: #b89b72;

    transform: translateY(-2px);
}


/* =========================================
   LOCATION SECTION
========================================= */

.contact-location {
    width: 100%;

    padding: 100px 20px;

    background: #f8f6f3;
}


.contact-location-container {
    width: 90%;
    max-width: 1200px;

    margin: 0 auto;
}


/* =========================================
   LOCATION HEADING
========================================= */

.contact-location-heading {
    max-width: 700px;

    margin: 0 auto 45px;

    text-align: center;
}


.contact-location-heading span {
    display: block;

    margin-bottom: 12px;

    font-size: 13px;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #b89b72;
}


.contact-location-heading h2 {
    margin: 0 0 18px;

    font-size: 36px;

    font-weight: 500;
}


.contact-location-heading p {
    margin: 0;

    font-size: 16px;

    line-height: 1.8;

    color: #666666;
}


/* =========================================
   GOOGLE MAP
========================================= */

.contact-map {
    width: 100%;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e3e0dc;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}


.contact-map iframe {
    display: block;

    width: 100%;

    min-height: 450px;

    border: 0;
}


/* =========================================
   GET DIRECTIONS
========================================= */

.contact-directions {
    display: flex;

    justify-content: center;

    margin-top: 35px;
}


.directions-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 15px 34px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 0.5px;

    color: #ffffff;

    background: #2f2f2f;

    border-radius: 2px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.directions-button:hover {
    background: #b89b72;

    transform: translateY(-2px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .contact-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .contact-info {
        max-width: 700px;
    }


    .contact-form {
        max-width: 700px;
    }


    .contact-hero h1 {
        font-size: 40px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .contact-hero {
        min-height: 380px;

        padding: 90px 20px 60px;
    }


    .contact-hero h1 {
        font-size: 32px;
    }


    .contact-hero p {
        font-size: 15px;
    }


    .contact-section {
        padding: 70px 20px;
    }


    .contact-container {
        width: 100%;

        gap: 50px;
    }


    .contact-info h2,
    .contact-form h2 {
        font-size: 27px;
    }


    .contact-location {
        padding: 70px 20px;
    }


    .contact-location-container {
        width: 100%;
    }


    .contact-location-heading h2 {
        font-size: 30px;
    }


    .contact-location-heading p {
        font-size: 15px;
    }


    .contact-map iframe {
        min-height: 350px;
    }


    .directions-button {
        width: 100%;

        padding: 15px 20px;

        box-sizing: border-box;
    }

}
