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

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", sans-serif;
    color: #ffffff;
    background: #285a22;
}



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

header {

    position: relative;
    background: #050505;
    padding: 20px 0 45px;
    border-bottom: 1px solid rgba(124, 255, 0, 0.35);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}


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

.logo {
    display: flex;
    justify-content:  center;
    margin-bottom: 24px;
}

.logo-crop {
    width: 500px;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.logo img {
    width: 500px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.02);
}


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

nav {
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    list-style: none;
}

.nav-links a {
    position: relative;

    text-decoration: none;
    color: #eeeeee;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.5px;

    transition: color 0.25s ease;
}


/* Green underline */

.nav-links li:not(:last-child) a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: #7cff00;

    transition: width 0.25s ease;
}


/* Navigation hover */

.nav-links li:not(:last-child) a:hover {
    color: #7cff00;
}

.nav-links li:not(:last-child) a:hover::after {
    width: 100%;
}


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

.quote-btn {
    font-family: "Barlow Condensed", sans-serif;

    display: inline-block;
    background: #285A22;
    color: #ffffff;

    padding: 13px 28px;
    border-radius: 10px;

    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;

    box-shadow:
        0 6px 16px rgba(40, 90, 34, 0.25);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.quote-btn:hover {
    background: #34752D;
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(40, 90, 34, 0.35);
}

/* =========================
   CONTACT BOX
========================= */

.contact-box {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-left: 28px;

    border-left: 1px solid rgba(124, 255, 0, 0.45);

    text-align: left;
}

.contact-title {
    font-family: "Barlow Condensed", sans-serif;

    color: #7cff00;

    font-size: 1rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.5px;

    margin-bottom: 3px;
}

.contact-phone,
.contact-email {
    font-family: "Barlow Condensed", sans-serif;

    color: #eeeeee !important;

    text-decoration: none !important;

    letter-spacing: 0.3px;

    transition: color 0.25s ease;
}

.contact-phone {
    font-size: 1.05rem;
    font-weight: 600;
}

.contact-email {
    font-family: "Inter", sans-serif;
    font-size: 0.68rem;

    color: rgba(255, 255, 255, 0.55) !important;

    margin-top: 2px;

    white-space: nowrap;
}

.contact-phone:hover,
.contact-email:hover {
    color: #7cff00 !important;
}


/* =========================
   HERO SECTION
========================= */

.hero {
    min-height: 72vh;

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

    text-align: center;

    position: relative;
    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72),
            rgba(15, 65, 18, 0.58),
            rgba(0, 0, 0, 0.68)
        ),
        url("../images/hero.jpg");

    background-size: cover;
    background-position: center;
}


/* Dark overlay */

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(124, 255, 0, 0.12),
            transparent 55%
        );

    pointer-events: none;
}


/* Hero content */

.hero-content {
    position: relative;
    z-index: 1;

    max-width: 950px;

    padding: 70px 25px;
}

/* Main heading */

.hero-content h1 {
    font-family: "Barlow Condensed", sans-serif;

    color: #e4d72b;

    font-size: clamp(3.1rem, 6vw, 5.4rem);

    line-height: 0.9;

    font-weight: 650;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 30px;

    text-shadow:
        0 5px 25px rgba(0, 0, 0, 0.45);
}


/* Hero paragraph */

.hero-content p {

    display: block;

    margin-bottom: 30px;

    color: #ffffff;

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

    font-size: 1.5rem;

    font-weight: 600;

    letter-spacing: 1px;
 
}


/* =========================
   HERO ACCENT LINE
========================= */

.hero-content h1::after {
    content: "";

    display: block;

    width: 80px;
    height: 4px;

    margin: 30px auto 0;

    background: #7cff00;

    border-radius: 10px;
}


/* =========================
   SERVICE AREA
========================= */

.service-area {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 40px 0;
}

.service-area img {
    width: 400px;
    max-width: 90%;

    height: auto;

    margin-bottom: 2px;
}

.service-area span {
    color: #ffffff;

    font-size: 0.95rem;

    font-weight: 600;

    letter-spacing: 1px;
}

/* =========================
   GRASS DIVIDER
========================= */

.grass-divider {
    position: absolute;

    left: 0;
    bottom: -1px;

    width: 100%;
    height: 32px;

    overflow: hidden;
    pointer-events: none;
}

.grass-divider svg {
    display: block;

    width: 100%;
    height: 32px;

    position: absolute;
    bottom: 0;
    left: 0;
}

.grass-divider path {
    fill: #285A22;
}

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

.site-footer {
    background: #050505;

    text-align: left;

    padding: 70px 20px 30px;

    border-top: 1px solid rgba(124, 255, 0, 0.25);
}

.footer-brand {
    font-family: "Barlow Condensed", sans-serif;

    font-size: 2.2rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 2px;

    color: #ffffff;

    margin-bottom: 12px;
}

.footer-brand span {
    color: #7cff00;

    font-size: 1.4rem;
    letter-spacing: 3px;
}

.site-footer p {
    font-family: "Inter", sans-serif;

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.8rem;

    letter-spacing: 0.5px;
}
body::before {
    content: "";
    position: fixed;
    border-radius: 30px;
    inset: 0;
    border: 6px solid hsl(0, 0%, 100%);
    pointer-events: none;
    z-index: 9999;
    box-sizing: border-box;

}

.logo-tagline {
    margin: 5px 0 40px;
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}



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

@media (max-width: 700px) {

    header {
        padding: 18px 15px 22px;
    }

    .logo img {
        width: 380px;
    }

    .nav-links {
        gap: 18px;
        flex-wrap: wrap;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .quote-btn {
        padding: 12px 20px;
        font-size: 0.9rem !important;
    }

    .hero {
        min-height: 75vh;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .hero-content::before {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }
}
