/* =========================================================
   MOLT82 APPS
   Main Website Styles
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    background: #050505;
    color: #ffffff;

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


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

.site-header {
    width: 100%;

    background:
        linear-gradient(
            180deg,
            #111111 0%,
            #050505 100%
        );

    border-bottom: 4px solid #ed1c24;
}

.header-inner {
    max-width: 1500px;
    margin: 0 auto;

    min-height: 150px;

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

    padding: 25px 50px;
}


/* BRAND */

.brand {
    display: flex;
    flex-direction: column;

    text-decoration: none;
}

.brand-name {
    color: #ffffff;

    font-size: 48px;
    font-weight: 900;

    letter-spacing: 3px;

    line-height: 1;
}

.brand-name span {
    color: #ed1c24;
}

.brand-tagline {
    margin-top: 10px;

    color: #aaaaaa;

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

    letter-spacing: 4px;
}


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

.main-nav {
    display: flex;
    align-items: stretch;

    height: 80px;

    border-top: 1px solid #282828;
}

.nav-link {
    flex: 1;

    min-width: 0;

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

    gap: 14px;

    padding: 0 25px;

    color: #ffffff;

    text-decoration: none;

    border-right: 1px solid #333333;

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

.nav-link:first-child {
    border-left: 1px solid #333333;
}

.nav-icon {
    color: #ed1c24;

    font-size: 30px;

    line-height: 1;
}

.nav-label {
    color: #ffffff;

    font-size: 16px;
    font-weight: 900;

    letter-spacing: 1.5px;

    white-space: nowrap;
}

.nav-link:hover {
    background: #181818;
}

.nav-link:hover .nav-label {
    color: #ed1c24;
}


/* CURRENT PAGE */

.nav-link.active {
    background: #151515;
}

.nav-link.active .nav-label {
    color: #ed1c24;
}


/* =========================================================
   MAIN CONTENT
   ========================================================= */

main {
    width: 100%;
}

.content {
    width: min(1400px, 92%);
    margin: 0 auto;

    padding: 70px 0;
}


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

.hero {
    width: 100%;

    min-height: 560px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(237, 28, 36, 0.13),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #101010,
            #050505 65%
        );

    border-bottom: 1px solid #222222;
}

.hero-inner {
    width: min(1400px, 92%);

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 70px;

    align-items: center;

    padding: 70px 0;
}

.hero-eyebrow {
    color: #ed1c24;

    font-size: 14px;
    font-weight: 900;

    letter-spacing: 4px;

    text-transform: uppercase;
}

.hero h1 {
    margin: 15px 0 20px;

    font-size: clamp(50px, 6vw, 90px);

    line-height: 0.95;

    letter-spacing: -2px;
}

.hero h1 span {
    color: #ed1c24;
}

.hero p {
    max-width: 700px;

    color: #c6c6c6;

    font-size: 20px;

    line-height: 1.7;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.button-row {
    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 30px;
}

.button {
    display: inline-flex;

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

    min-height: 52px;

    padding: 0 28px;

    border-radius: 6px;

    font-size: 14px;
    font-weight: 900;

    letter-spacing: 1px;

    text-decoration: none;

    transition:
        transform 0.15s ease,
        background 0.15s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-red {
    background: #ed1c24;
    color: #ffffff;
}

.button-red:hover {
    background: #ff3038;
}

.button-dark {
    background: #161616;
    color: #ffffff;

    border: 1px solid #3a3a3a;
}

.button-dark:hover {
    background: #222222;
}


/* =========================================================
   CARDS
   ========================================================= */

.cards {
    display: grid;

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

    gap: 24px;
}

.card {
    padding: 30px;

    background:
        linear-gradient(
            145deg,
            #151515,
            #0b0b0b
        );

    border: 1px solid #292929;

    border-radius: 10px;
}

.card h3 {
    margin-top: 0;

    color: #ffffff;

    font-size: 22px;
}

.card p {
    color: #aaaaaa;

    line-height: 1.7;
}


/* RED TOP ACCENT */

.card-accent {
    border-top: 4px solid #ed1c24;
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.section-heading {
    margin-bottom: 35px;
}

.section-heading .eyebrow {
    color: #ed1c24;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 3px;
}

.section-heading h2 {
    margin: 8px 0;

    font-size: clamp(32px, 4vw, 52px);
}

.section-heading p {
    max-width: 800px;

    color: #aaaaaa;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   IMAGES
   ========================================================= */

.responsive-image {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 10px;

    border: 1px solid #333333;
}


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

.site-footer {
    margin-top: 70px;

    background: #030303;

    border-top: 3px solid #ed1c24;
}

.footer-inner {
    width: min(1400px, 92%);

    margin: 0 auto;

    padding: 40px 0;

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

    gap: 30px;
}

.footer-brand {
    font-size: 22px;
    font-weight: 900;

    letter-spacing: 2px;
}

.footer-brand span {
    color: #ed1c24;
}

.footer-links {
    display: flex;

    flex-wrap: wrap;

    gap: 25px;
}

.footer-links a {
    color: #aaaaaa;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;
}

.footer-links a:hover {
    color: #ed1c24;
}


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

@media (max-width: 900px) {

    .header-inner {
        min-height: 120px;

        padding: 20px 30px;
    }

    .brand-name {
        font-size: 38px;
    }

    .hero-inner {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .cards {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .nav-link {
        padding: 0 12px;

        gap: 8px;
    }

    .nav-icon {
        font-size: 24px;
    }

    .nav-label {
        font-size: 12px;
    }
}


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

@media (max-width: 600px) {

    .header-inner {
        min-height: 100px;

        padding: 18px 20px;
    }

    .brand-name {
        font-size: 30px;
    }

    .brand-tagline {
        font-size: 10px;

        letter-spacing: 2px;
    }

    .main-nav {
        height: 65px;
    }

    .nav-link {
        flex-direction: column;

        gap: 3px;

        padding: 5px;
    }

    .nav-icon {
        font-size: 20px;
    }

    .nav-label {
        font-size: 8px;

        letter-spacing: 0.3px;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 17px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;

        align-items: flex-start;
    }
}