/* ========================================
   CONTACT PAGE
======================================== */


/* HERO */

.contact-hero {

    position: relative;

    min-height: 380px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            rgba(30, 18, 10, 0.68),
            rgba(30, 18, 10, 0.75)
        ),
        url("images/cb.png");

    background-size: cover;

    background-position: center;

}


.contact-hero-content {

    position: relative;

    z-index: 2;

    max-width: 750px;

    padding: 40px 20px;

    color: white;

}


.section-tag {

    color: #b58a3b;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 5px;

    margin-bottom: 15px;

}


.contact-hero h1 {

    font-family: Georgia, serif;

    font-size: 62px;

    letter-spacing: 3px;

    margin-bottom: 20px;

}


.contact-hero p {

    font-size: 18px;

    line-height: 1.7;

}



/* ========================================
   CONTACT SECTION
======================================== */

.contact-section {

    padding: 75px 8%;

    background: #f4f0e7;

}


.contact-heading {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

}


.contact-heading h2 {

    font-family: Georgia, serif;

    font-size: 30px;

    letter-spacing: 1px;

    color: #2d2924;

    white-space: nowrap;

}


.line {

    width: 230px;

    height: 1px;

    background: #c9b37d;

}


.contact-intro {

    max-width: 750px;

    margin: 25px auto 55px;

    text-align: center;

    line-height: 1.8;

    font-size: 17px;

    color: #3d3730;

}



/* ========================================
   SOCIAL GRID
======================================== */

.social-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

    max-width: 1050px;

    margin: auto;

}


.social-card {

    display: flex;

    align-items: center;

    gap: 25px;

    padding: 30px;

    text-decoration: none;

    background: #f8f5ed;

    border: 1px solid #d4c49e;

    transition: 0.3s ease;

    color: #292521;

}


.social-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);

    border-color: #a77a2b;

}



/* SOCIAL ICON */

.social-icon {

    min-width: 70px;

    width: 70px;

    height: 70px;

    border-radius: 50%;

    border: 1px solid #a77a2b;

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: Georgia, serif;

    font-size: 32px;

    color: #9a7027;

    transition: 0.3s;

}


.social-card:hover .social-icon {

    background: #9a7027;

    color: white;

}



/* SOCIAL TEXT */

.social-text h3 {

    font-family: Georgia, serif;

    letter-spacing: 1px;

    font-size: 20px;

    margin-bottom: 10px;

}


.social-text p {

    font-size: 15px;

    line-height: 1.6;

    margin-bottom: 15px;

    color: #5a5148;

}


.social-text span {

    font-size: 12px;

    letter-spacing: 1.5px;

    font-weight: bold;

    color: #9a7027;

}



/* ========================================
   CONTACT DETAILS
======================================== */

.contact-details-section {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    padding: 80px 10%;

    background: #eee9de;

    border-top: 1px solid #d1c29d;

}


.contact-info {

    padding-right: 60px;

    border-right: 1px solid #cfc09b;

}


.contact-info h2 {

    font-family: Georgia, serif;

    font-size: 36px;

    margin-bottom: 45px;

    color: #2d2924;

}



/* INFO ITEM */

.info-item {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 28px;

}


.info-icon {

    width: 45px;

    height: 45px;

    border: 1px solid #b38a3f;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #9a7027;

    font-size: 18px;

}


.info-item h4 {

    font-family: Georgia, serif;

    margin-bottom: 6px;

    letter-spacing: 1px;

}


.info-item p {

    color: #4d463e;

}



/* ========================================
   CONTACT FORM
======================================== */

.contact-form-container h3 {

    font-family: Georgia, serif;

    font-size: 25px;

    letter-spacing: 1px;

    margin-bottom: 30px;

}


.contact-form-container form {

    display: flex;

    flex-direction: column;

    gap: 15px;

}


.contact-form-container input,

.contact-form-container textarea {

    padding: 15px;

    border: 1px solid #cdbd96;

    background: #f8f5ed;

    font-family: inherit;

    font-size: 15px;

    outline: none;

}


.contact-form-container input:focus,

.contact-form-container textarea:focus {

    border-color: #9a7027;

}


.contact-form-container button {

    width: fit-content;

    padding: 15px 35px;

    border: none;

    background: #9a7027;

    color: white;

    font-family: Georgia, serif;

    letter-spacing: 1.5px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;

}


.contact-form-container button:hover {

    background: #755018;

}



/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 850px) {


    .social-grid {

        grid-template-columns: 1fr;

    }


    .contact-details-section {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .contact-info {

        padding-right: 0;

        border-right: none;

        border-bottom: 1px solid #cfc09b;

        padding-bottom: 40px;

    }


    .contact-hero h1 {

        font-size: 45px;

    }


}


@media (max-width: 600px) {


    .contact-heading h2 {

        font-size: 23px;

    }


    .line {

        width: 60px;

    }


    .social-card {

        padding: 22px;

        gap: 15px;

    }


    .social-icon {

        min-width: 55px;

        width: 55px;

        height: 55px;

        font-size: 25px;

    }


    .contact-details-section {

        padding: 60px 7%;

    }


}

