/* ==========================
   Rugged Terrain Website CSS
========================== */

/* ---------- BRAND VARIABLES ---------- */

:root {
    --gold: #F2B01E;
    --orange: #D48806;
    --steel: #6D6E71;
    --black: #0D0D0D;
    --dark-card: #1B1B1B;
    --light: #F3F3F3;
    --white: #FFFFFF;
}

/* ---------- RESET / BASE ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--light);
    color: var(--black);
}

h2,
h3 {
    font-family: "Freckle Face", cursive;
    letter-spacing: 1px;
}

h3 {
    font-size: 2rem;
    color: var(--gold);
    margin: 15px 0;
}

/* ---------- BUTTONS ---------- */

/* ---------- BUTTONS ---------- */

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    min-width: 260px;
    height: 58px;
    padding: 12px 28px;

    background: linear-gradient(to bottom, #f7c53b 0%, #f2b01e 55%, #d48806 100%);
    color: var(--black);

    border: 2px solid var(--black);
    border-radius: 8px;

    font-family: "Freckle Face", cursive;
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: .5px;
    line-height: 1;
    white-space: nowrap;

    text-decoration: none;
    cursor: pointer;

    transition: transform .15s ease, box-shadow .25s ease, filter .25s ease;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .45),
        0 4px 10px rgba(0, 0, 0, .20);
}

.btn:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .45),
        0 8px 18px rgba(0, 0, 0, .30);
}

.btn:active {
    transform: translateY(1px);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, .25);
}

.btn,
button {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* ---------- NAVIGATION ---------- */

.navbar {
    background: var(--black);
    color: var(--white);
    padding: 14px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-logo {
    height: 55px;
    width: auto;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 25px;
    font-weight: bold;
}

.nav-links a:hover {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

/* ---------- HERO ---------- */

.hero {
    text-align: center;
    padding: 70px 20px;
    background: linear-gradient(var(--white), var(--light));
}

.logo {
    max-width: 450px;
    width: 90%;
}

.hero h1 {
    font-family: "Freckle Face", cursive;
    font-size: 3.8rem;
    color: var(--black);
    line-height: 1.1;
    margin-top: 30px;
}

.hero p {
    margin: 22px auto 38px;
    max-width: 760px;
    font-family: "Oswald", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: .3px;
    color: #555;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ---------- SERVICES ---------- */

.services {
    background: var(--black);
    color: var(--white);
    padding: 70px 20px;
    text-align: center;
    overflow: hidden;
}

.services h2 {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 35px;
}

.service-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.service-card {
    background: var(--dark-card);
    border: 1px solid var(--steel);
    padding: 26px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 25px;
    text-align: left;
}

.service-card img {
    width: 320px;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    flex-shrink: 0;
    border: 2px solid var(--steel);
}

.service-card p {
    color: #ddd;
    line-height: 1.5;
}

.service-card .btn {
    margin-top: 18px;
    min-width: 240px;
}

/* ---------- ABOUT SECTION ---------- */

.about {
    background: var(--white);
    padding: 80px 20px;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--black);
}

.about p {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 45px;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.feature-row div {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    background: var(--light);
    border-left: 6px solid var(--gold);
    border-radius: 8px;
    padding: 18px 20px;

    box-shadow: 0 3px 8px rgba(0,0,0,.08);

    font-weight: 600;
    line-height: 1.35;
}
.feature-check {
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 1px;
}
/* ---------- CONTACT SECTION ---------- */

.contact {
    background: var(--light);
    padding: 70px 20px;
}

.contact-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 14px;
    border-top: 8px solid var(--gold);
}

.contact-card h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.contact-card > p {
    text-align: center;
    margin-bottom: 25px;
}

.contact-card label {
    display: block;
    margin-top: 18px;
    margin-bottom: 6px;
    font-weight: 700;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--steel);
    border-radius: 6px;
    font-size: 1rem;
}

/* Preferred Contact Method */

/* ======================================
   Preferred Contact Method
====================================== */

.contact-method {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 10px 0 22px;
}

.contact-method label {
    height: 44px;
    padding: 0 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--steel);
    border-radius: 8px;
    background: var(--light);

    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
}

.contact-method input[type="radio"] {
    width: auto;
    margin: 0 6px 0 0;
    padding: 0;
    accent-color: var(--gold);
}

.contact-method label:hover {
    border-color: var(--gold);
    background: #faf7ed;
}



.contact textarea {
    margin-bottom: 10px;
}

.form-note {
    text-align: center;
    color: #666;
    font-size: .9rem;
    margin-top: 8px;
    margin-bottom: 18px;
    font-style: italic;
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

/* ---------- FOOTER ---------- */

.footer {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 35px 20px;
    font-size: 1rem;
}

.footer h3 {
    color: var(--gold);
    margin-bottom: 12px;
}

.footer p {
    margin: 6px 0;
}

.footer a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
}

.footer a:hover {
    color: var(--orange);
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 25px 0;
}

.footer-icons a {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    transition: .25s;
}

.footer-icons a:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
}

/* ---------- MOBILE ---------- */

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        right: 20px;
        min-width: 160px;
        background: var(--dark-card);
        border: 2px solid var(--gold);
        border-radius: 8px;
        padding: 12px;
        flex-direction: column;
        gap: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, .4);
        z-index: 10;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-left: 0;
        padding: 8px 6px;
        font-size: 1rem;
    }

    .nav-links a i {
        color: var(--gold);
        width: 18px;
        text-align: center;
    }

    .hero {
        padding: 50px 16px;
    }

    .logo {
        max-width: 320px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .services {
        padding: 50px 16px;
    }

    .services h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 24px;
    }

    .service-card {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        gap: 18px;
    }

    .service-card img {
        width: 100%;
        height: 220px;
    }

    .service-card h3 {
        font-size: 1.55rem;
        line-height: 1.15;
        margin: 0 0 12px;
    }

    .service-card p {
        font-size: .95rem;
        line-height: 1.5;
    }

    .service-card .btn {
        width: 100%;
        min-width: 0;
        text-align: center;
        margin-top: 14px;
    }

    .about {
        padding: 55px 16px;
    }

    .about h2 {
        font-size: 2rem;
    }

    .contact {
        padding: 55px 16px;
    }

    .contact-card {
        padding: 28px 22px;
    }

    .contact-method {
        grid-template-columns: 1fr;
    }

    .contact-method label {
        height: 58px;
        flex-direction: row;
        gap: 8px;
    }

    .contact-method input[type="radio"] {
        margin: 0;
    }

    .form-submit .btn {
        width: 100%;
        min-width: 0;
    }
}
/* ---------- FINAL MOBILE NAV OVERRIDE ---------- */

@media screen and (max-width: 1024px) {
    .menu-toggle {
        display: block !important;
    }

    .nav-links {
        display: none !important;
    }

    .nav-links.show {
        display: flex !important;
    }
}