/* ==========================
   GMC PLASTERING
   ABOUT.CSS
   WARM / PREMIUM THEME
========================== */

:root {
    --charcoal: #171717;
    --dark-grey: #242424;
    --stone: #E7E5E0;
    --warm-grey: #F1F0ED;
    --card: #FAF9F6;
    --text: #222222;
    --muted-text: #5F5F5F;
    --gold: #F5C242;
    --gold-dark: #9C7200;
}


/* ==========================
   RESET
========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--warm-grey);
    color: var(--text);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}


/* ==========================
   HEADER
========================== */

header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 96px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px 6%;

    background: rgba(23, 23, 23, 0.96);

    z-index: 1000;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    height: 68px;
    width: auto;
}


/* ==========================
   NAVIGATION
========================== */

nav {
    display: flex;
    align-items: center;
    gap: 38px;
}

nav a {
    position: relative;

    color: white;

    font-size: 17px;
    font-weight: 600;

    transition: 0.3s ease;
}

nav a:hover {
    color: var(--gold);
}

nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 3px;

    background: var(--gold);

    transition: 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}


/* ==========================
   PAGE HERO
========================== */

.page-hero {
    min-height: 520px;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    color: white;

    padding: 140px 20px 80px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.68),
            rgba(0, 0, 0, 0.68)
        ),
        url("images/AcrylicRender2.jpg");

    background-size: cover;
    background-position: center;
}

.page-hero-content {
    max-width: 850px;
}

.label {
    color: var(--gold);

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 5px;

    margin-bottom: 18px;
}

.page-hero h1 {
    color: white;

    font-size: 62px;

    line-height: 1.15;

    margin-bottom: 20px;
}

.page-hero p:last-child {
    color: #ddd;

    font-size: 20px;

    line-height: 1.7;
}


/* ==========================
   ABOUT INTRO
========================== */

.about-intro {
    padding: 110px 7%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

    background: var(--stone);
}

.about-text {
    max-width: 650px;

    margin-left: auto;
}

.section-label {
    color: var(--gold-dark);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 15px;
}

.about-text h2 {
    color: var(--charcoal);

    font-size: 48px;

    line-height: 1.2;

    margin-bottom: 30px;
}

.about-text p:not(.section-label) {
    color: var(--muted-text);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 20px;
}

.about-image {
    max-width: 600px;
}

.about-image img {
    width: 100%;

    height: 560px;

    object-fit: cover;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}


/* ==========================
   OUR APPROACH
========================== */

.approach {
    padding: 110px 7%;

    background: var(--charcoal);

    color: white;
}

.approach-heading {
    max-width: 750px;

    margin: 0 auto 60px;

    text-align: center;
}

.approach-heading .section-label {
    color: var(--gold);
}

.approach-heading h2 {
    color: white;

    font-size: 48px;

    line-height: 1.2;

    margin-bottom: 20px;
}

.approach-heading p:last-child {
    color: #bdbdbd;

    font-size: 18px;

    line-height: 1.7;
}

.approach-grid {
    max-width: 1150px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.approach-card {
    background: var(--dark-grey);

    padding: 40px 32px;

    border-top: 4px solid var(--gold);

    transition: 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);

    background: #2b2b2b;
}

.number {
    color: var(--gold);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 25px;
}

.approach-card h3 {
    color: white;

    font-size: 23px;

    margin-bottom: 15px;
}

.approach-card p {
    color: #aaa;

    font-size: 15px;

    line-height: 1.7;
}


/* ==========================
   IMAGE SECTION
========================== */

.image-section {
    padding: 110px 7%;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 75px;

    align-items: center;

    background: var(--warm-grey);
}

.image-section-image {
    max-width: 700px;
}

.image-section-image img {
    width: 100%;

    height: 500px;

    object-fit: cover;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.image-section-text {
    max-width: 550px;
}

.image-section-text h2 {
    color: var(--charcoal);

    font-size: 46px;

    line-height: 1.2;

    margin-bottom: 25px;
}

.image-section-text p:not(.section-label) {
    color: var(--muted-text);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 30px;
}

.dark-button {
    display: inline-block;

    background: var(--charcoal);

    color: white;

    padding: 16px 35px;

    border-radius: 4px;

    font-size: 16px;

    font-weight: 600;

    transition: 0.3s ease;
}

.dark-button:hover {
    background: var(--gold);

    color: var(--charcoal);
}


/* ==========================
   CTA
========================== */

.cta {
    min-height: 430px;

    display: flex;

    justify-content: center;
    align-items: center;

    text-align: center;

    color: white;

    padding: 80px 20px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.74),
            rgba(0, 0, 0, 0.74)
        ),
        url("images/citycounsil3.jpg");

    background-size: cover;

    background-position: center;
}

.cta-content {
    max-width: 750px;
}

.cta h2 {
    color: white;

    font-size: 48px;

    line-height: 1.2;

    margin-bottom: 20px;
}

.cta p:not(.label) {
    color: #ddd;

    font-size: 18px;

    line-height: 1.7;

    margin-bottom: 30px;
}

.button {
    display: inline-block;

    background: var(--gold);

    color: var(--charcoal);

    padding: 17px 38px;

    border: 2px solid var(--gold);

    border-radius: 4px;

    font-size: 17px;

    font-weight: 600;

    transition: 0.3s ease;
}

.button:hover {
    background: transparent;

    color: var(--gold);

    transform: translateY(-3px);
}


/* ==========================
   FOOTER
========================== */

footer {
    background: var(--charcoal);

    color: white;

    text-align: center;

    padding: 30px 20px;
}

footer h3 {
    font-size: 20px;

    margin-bottom: 5px;
}

footer p {
    color: #999;

    font-size: 13px;
}

footer .copyright {
    margin-top: 15px;

    padding-top: 15px;

    border-top: 1px solid #333;
}


/* ==========================
   TABLET
========================== */

@media (max-width: 900px) {

    nav {
        gap: 20px;
    }

    nav a {
        font-size: 15px;
    }

    .about-intro {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-text {
        max-width: none;

        margin-left: 0;
    }

    .about-image {
        max-width: none;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .image-section {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .image-section-image,
    .image-section-text {
        max-width: none;
    }
}


/* ==========================
   MOBILE
========================== */

@media (max-width: 650px) {

    header {
        height: auto;

        min-height: 80px;

        padding: 10px 20px;
    }

    .logo {
        height: 52px;
    }

    nav {
        gap: 12px;
    }

    nav a {
        font-size: 12px;
    }

    nav a::after {
        display: none;
    }

    .page-hero {
        min-height: 430px;

        padding: 120px 20px 70px;
    }

    .page-hero h1 {
        font-size: 42px;
    }

    .page-hero p:last-child {
        font-size: 17px;
    }

    .about-intro {
        padding: 80px 20px;
    }

    .about-text h2 {
        font-size: 36px;
    }

    .about-image img {
        height: 400px;
    }

    .approach {
        padding: 80px 20px;
    }

    .approach-heading h2 {
        font-size: 36px;
    }

    .image-section {
        padding: 80px 20px;
    }

    .image-section-image img {
        height: 380px;
    }

    .image-section-text h2 {
        font-size: 36px;
    }

    .cta h2 {
        font-size: 36px;
    }

    footer {
        padding: 25px 15px;
    }
}