
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&display=swap');


/* =========================
   GENERAL
========================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Barlow Condensed', sans-serif;
    background-color: #ffffff;
    color: #222;
}


/* =========================
   NAVIGATION
========================= */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 5%;

    background-color: #6b5252;
}

.nav-logo a {
    text-decoration: none;
    color: #222;

    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;

    gap: 28px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.nav-links a {
    text-decoration: none;

    color: #222;

    font-size: 18px;
    font-weight: 600;

    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #4d7048;
}

.nav-links a.active {
    color: #4d7048;
}


/* =========================
   FREE QUOTE BUTTON
========================= */

.quote-button {
    display: inline-block;

    padding: 10px 18px;

    background-color: #4d7048;
    color: #ffffff !important;

    border-radius: 2px;

    font-size: 20px !important;
    font-weight: 600 !important;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.quote-button:hover {
    background-color: #3d5b39;

    transform: translateY(-1px);
}



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

.services-header {
    text-align: center;

    padding: 70px 20px 55px;

    background-color: #ffffff;
}

.eyebrow {
    margin: 0 0 8px;

    color: #4d7048;

    font-size: 19px;
    font-weight: 700;

    letter-spacing: 2px;
}

.services-header h1 {
    margin: 0;

    color: #222;

    font-size: clamp(60px, 8vw, 90px);

    font-weight: 700;

    line-height: 0.95;
}

.services-intro {
    margin: 16px auto 0;

    color: #555;

    font-size: 26px;
}



/* =========================
   SERVICES LIST
========================= */

.services-section {
    width: 100%;

    max-width: 1050px;

    margin: 0 auto;

    padding: 95px 30px;
}

.services-list {
    border-top: 2px solid #222;
}


/* Individual Service */

.service-item {
    display: grid;

    grid-template-columns: 0px 1fr;

    align-items: center;

    min-height: 115px;

    border-bottom: 1px solid #c9cdc6;
}


/* Number */

.service-number {
    color: #4d7048;

    font-size: 18px;
    
    font-weight: 700;

    letter-spacing: 1px;
}


/* Service Name */

.service-item h2 {
    margin: 0;

    color: #222;

    font-size: clamp(30px, 4vw, 43px);

    font-weight: 500;

    line-height: 0.8;

    letter-spacing: 0;
}

.services-header h2 span {
    font-size: 0.6em;
}

/* =========================
   CALL TO ACTION
========================= */

.services-cta {
    padding: 95px 20px;

    text-align: center;

    background-color: #3f593a;

    color: #ffffff;
}

.services-cta h2 {
    margin: 0 0 8px;

    font-size: clamp(40px, 5vw, 60px);

    font-weight: 600;

    line-height: 1.5;
}

.services-cta p {
    margin: 0 0 30px;

    color: #e2e7df;

    font-size: 21px;
}

.services-cta .quote-button {
    padding: 12px 24px;

    background-color: #ffffff;

    color: #3f593a !important;

    font-size: 18px !important;
}

.services-cta .quote-button:hover {
    background-color: #f1f1f1;
}


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

@media (max-width: 768px) {

    /* Navigation */

    .navbar {
        flex-direction: column;

        gap: 18px;

        padding: 20px;
    }

    .nav-logo a {
        font-size: 26px;
    }

    .nav-links {
        flex-wrap: wrap;

        justify-content: center;

        gap: 15px;
    }

    .nav-links a {
        font-size: 17px;
    }


    /* Header */

    .services-header {
        padding: 70px 20px 60px;
    }

    .services-header h1 {
        font-size: 58px;
    }

    .services-intro {
        font-size: 19px;
    }


    /* Services */

    .services-section {
        padding: 65px 20px;
    }

    .service-item {
        grid-template-columns: 55px 1fr;

        min-height: 95px;
    }

    .service-number {
        font-size: 16px;
    }

    .service-item h2 {
        font-size: 30px;
    }


    /* CTA */

    .services-cta {
        padding: 70px 20px;
    }

    .services-cta h2 {
        font-size: 44px;
    }

    .services-cta p {
        font-size: 19px;
    }

}

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

header {
    position: relative;

    background-color: #ffffff;

    width: 100%;
}


/* =========================
   LOGO
========================= */

.logo {
    position: absolute;

    left: 5%;
    top: 15px;

    z-index: 10;
}

.logo a {
    display: block;
}

.logo-crop {
    width: 180px;
    height: 150px;

    overflow: hidden;
}

.logo-crop img {
    width: 180px;
    height: auto;

    display: block;
}


/* =========================
   NAVIGATION
========================= */

nav {
    display: flex;

    justify-content: flex-end;
    align-items: center;

    padding: 25px 5% 25px 240px;
}

.nav-links {
    display: flex;

    align-items: center;

    gap: 30px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.nav-links a {
    text-decoration: none;

    color: #222;

    font-family: 'Barlow Condensed', sans-serif;

    font-size: 19px;
    font-weight: 600;

    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #4d7048;
}

.nav-links a.active {
    color: #4d7048;
}


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

.quote-btn {
    display: inline-block;

    padding: 10px 18px;

    background-color: #4d7048;

    color: #ffffff !important;

    text-decoration: none;

    font-weight: 600 !important;

    border-radius: 2px;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.quote-btn:hover {
    background-color: #3d5b39;

    transform: translateY(-1px);
}



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

@media (max-width: 768px) {

    .logo {
        position: relative;

        top: 0;
        left: 0;

        display: flex;

        justify-content: center;

        padding-top: 15px;
    }

    .logo-crop {
        width: 160px;
        height: 65px;
    }

    .logo-crop img {
        width: 160px;
    }

    nav {
        justify-content: center;

        padding: 10px 20px 20px;
    }

    .nav-links {
        flex-wrap: wrap;

        justify-content: center;

        gap: 15px;
    }

    .nav-links a {
        font-size: 17px;
    }

}


