
/* =========================
   RESET
========================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


/* =========================
   BODY
========================= */

body {

    font-family: Arial, Helvetica, sans-serif;

    background: #fff8e8;

    color: #5f3323;

}


/* =========================
   HEADER
========================= */

.site-header {

    height: 90px;

    background: #fff8e8;

    display: flex;

    justify-content: flex-end;

    align-items: center;

    padding: 0 7%;

    position: relative;

    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.10);

    z-index: 10;

}


.site-logo {

    position: absolute;

    left: 2%;

    top: 20px;

    width: 225px;

    height: 225px;

    object-fit: contain;

    z-index: 20;

}


.site-header nav {

    display: flex;

    align-items: center;

    gap: 35px;

}


.site-header nav a {

    text-decoration: none;

    color: #522813;

    font-size: 17px;

    font-weight: bold;

}


.site-header nav a:hover {

    color: #c59d5f;

}


/* =========================
   PAGE INTRO
========================= */

.contact-intro {

    background: #522813;

    text-align: center;

    padding: 80px 20px 70px;

}


.contact-intro h1 {

    font-family: Georgia, serif;

    font-size: 48px;

    color: #f4c861;

    margin-bottom: 18px;

}


.contact-intro h1::after {

    content: "";

    display: block;

    width: 90px;

    height: 2px;

    background: #d6a532;

    margin: 18px auto 0;

}


.contact-intro p {

    font-size: 18px;

    line-height: 1.7;

    color: #e6ca8a;

    max-width: 700px;

    margin: 20px auto 0;

}


/* =========================
   INTRODUCTION
========================= */

.contact-about {

    text-align: center;

    padding: 75px 8% 60px;

    background: #ffdda1;

}


.contact-about h2 {

    font-family: Georgia, serif;

    font-size: 42px;

    color: #522813;

}


.heading-line {

    width: 90px;

    height: 2px;

    background: #d6a532;

    margin: 18px auto 25px;

}


.contact-about p {

    max-width: 850px;

    margin: 0 auto 15px;

    font-size: 18px;

    line-height: 1.8;

}


/* =========================
   CONTACT SECTION
========================= */

.contact-section {

    padding: 90px 7%;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    background: linear-gradient(
        to bottom,
        #fff8e8 0%,
        #dfe0bd 45%,
        #d8c47d 75%,
        #fff8e8 100%
    );

}


/* =========================
   CONTACT CARD
========================= */

.contact-card {

    background: #fff8e8;

    padding: 45px 30px;

    border-radius: 20px;

    text-align: center;

    box-shadow:
        0 8px 25px rgba(70, 45, 25, 0.13);

    display: flex;

    flex-direction: column;

    align-items: center;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.contact-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(70, 45, 25, 0.18);

}


/* =========================
   CONTACT ICON
========================= */

.contact-icon {

    width: 65px;

    height: 65px;

    border-radius: 50%;

    background: #f4c861;

    color: #522813;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;

    font-weight: bold;

    margin-bottom: 22px;

}


.contact-card h2 {

    font-family: Georgia, serif;

    font-size: 30px;

    color: #522813;

    margin-bottom: 18px;

}


.contact-card p {

    font-size: 16px;

    line-height: 1.7;

    max-width: 320px;

    margin-bottom: 28px;

    flex-grow: 1;

}


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

.contact-button {

    display: inline-block;

    padding: 13px 24px;

    background: #c99a35;

    color: white;

    text-decoration: none;

    border-radius: 25px;

    font-weight: bold;

    transition:
        background 0.3s ease,
        transform 0.2s ease;

}


.contact-button:hover {

    background: #a97922;

    transform: translateY(-2px);

}


/* =========================
   CONTACT NOTE
========================= */

.contact-note {

    text-align: center;

    padding: 80px 8%;

    background: #fff8e8;

}


.contact-note h2 {

    font-family: Georgia, serif;

    font-size: 40px;

    color: #522813;

}


.contact-note > p {

    max-width: 800px;

    margin: 0 auto 25px;

    font-size: 17px;

    line-height: 1.8;

}


.contact-note ul {

    max-width: 650px;

    margin: 0 auto 25px;

    text-align: left;

    padding-left: 25px;

}


.contact-note li {

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 8px;

}


.contact-note li::marker {

    color: #c99a35;

}


.contact-note-bottom {

    margin-top: 25px !important;

}


/* =========================
   FOOTER
========================= */

.contact-footer {

    text-align: center;

    padding: 70px 20px;

    background: #f4c861;

}


.contact-footer p {

    font-family: Georgia, serif;

    font-size: 25px;

    color: #522813;

    margin-bottom: 20px;

}


.cat-button {

    display: inline-block;

    padding: 13px 28px;

    background: #c99a35;

    color: white;

    text-decoration: none;

    border-radius: 25px;

    font-weight: bold;

    transition:
        background 0.3s ease,
        transform 0.2s ease;

}


.cat-button:hover {

    background: #a97922;

    transform: translateY(-2px);

}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .site-logo {

        width: 180px;

        height: 180px;

    }


    .contact-section {

        grid-template-columns: 1fr;

        padding: 70px 10%;

    }


    .contact-card {

        max-width: 550px;

        width: 100%;

        margin: 0 auto;

    }

}


/* =========================
   PHONE
========================= */

@media (max-width: 650px) {

    .site-header {

        height: 75px;

        padding-right: 5%;

    }


    .site-logo {

        width: 130px;

        height: 130px;

        top: 15px;

        left: 2%;

    }


    .site-header nav {

        gap: 15px;

    }


    .site-header nav a {

        font-size: 14px;

    }


    .contact-intro {

        padding: 60px 20px;

    }


    .contact-intro h1 {

        font-size: 38px;

    }


    .contact-intro p {

        font-size: 16px;

    }


    .contact-about {

        padding: 60px 7% 45px;

    }


    .contact-about h2 {

        font-size: 36px;

    }


    .contact-about p {

        font-size: 16px;

    }


    .contact-section {

        padding: 60px 7%;

    }


    .contact-card {

        padding: 35px 25px;

    }


    .contact-note {

        padding: 60px 7%;

    }


    .contact-note h2 {

        font-size: 34px;

    }


    .contact-note li {

        font-size: 16px;

    }


    .contact-footer {

        padding: 60px 20px;

    }

}

