/* ZROOFING_VERTICAL_V1 */

:root {
    --zr-dark: #15251c;
    --zr-green: #23653c;
    --zr-green2: #328152;
    --zr-gold: #d7a73f;
    --zr-light: #eef3ef;
    --zr-card: rgba(255,255,255,.94);
    --zr-text: #172019;
}

body {
    margin: 0;
    color: var(--zr-text);
    background:
        linear-gradient(
            135deg,
            #dfe7e1 0%,
            #f7f9f7 50%,
            #d6dfd8 100%
        );
}

.zr-nav {
    background: rgba(17,36,25,.96);
    color: white;
    padding: 14px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.zr-brand {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -.5px;
}

.zr-brand span {
    color: var(--zr-gold);
}

.zr-nav a {
    color: white;
    text-decoration: none;
    margin-left: 18px;
    font-weight: 700;
}

.zr-hero {
    min-height: 520px;
    padding: 70px 6%;
    box-sizing: border-box;
    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(11,35,21,.94),
            rgba(24,78,46,.78)
        );
}

.zr-hero-inner {
    width: min(760px,100%);
    color: white;
}

.zr-kicker {
    color: #f5cf72;
    font-weight: 900;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.zr-hero h1 {
    font-size: clamp(42px,6vw,76px);
    line-height: .98;
    margin: 14px 0 20px;
}

.zr-hero p {
    font-size: 20px;
    line-height: 1.55;
    max-width: 690px;
}

.zr-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.zr-button {
    border: 0;
    border-radius: 10px;
    padding: 14px 21px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.zr-primary {
    background: var(--zr-gold);
    color: #172019;
}

.zr-secondary {
    background: white;
    color: #1c5a36;
}

.zr-section {
    padding: 58px 6%;
}

.zr-section h2 {
    font-size: 36px;
    margin-top: 0;
}

.zr-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit,minmax(220px,1fr));
    gap: 20px;
}

.zr-card {
    background: var(--zr-card);
    border: 1px solid #bdc9c0;
    border-radius: 15px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(15,35,21,.08);
}

.zr-card h3 {
    margin-top: 0;
    color: #245e3a;
}

.zr-form-wrap {
    background: #bcc8bf;
}

.zr-form {
    background: #eef2ef;
    border: 2px solid #84958a;
    border-radius: 16px;
    padding: 26px;
    max-width: 960px;
}

.zr-form-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit,minmax(220px,1fr));
    gap: 15px;
}

.zr-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.zr-field-full {
    grid-column: 1 / -1;
}

.zr-field label {
    font-weight: 800;
}

.zr-field input,
.zr-field select,
.zr-field textarea {
    box-sizing: border-box;
    width: 100%;
    padding: 12px;
    border: 2px solid #748379;
    border-radius: 8px;
    background: white;
    color: #111;
    font-size: 16px;
}

.zr-field textarea {
    min-height: 110px;
}

.zr-footer {
    padding: 32px 6%;
    background: #112319;
    color: #dfe7e1;
}

.zr-notice {
    border-left: 5px solid var(--zr-gold);
    padding: 15px 18px;
    background: #fff8e8;
    margin-bottom: 20px;
}

@media (max-width:700px) {

    .zr-nav {
        align-items: flex-start;
        flex-direction: column;
    }

    .zr-nav a {
        margin: 0 15px 0 0;
    }

    .zr-hero {
        min-height: 450px;
    }
}

/* ================================================================
   ZROOFING BRANDING V2
   ================================================================ */

.zr-brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.zr-brand-logo img {
    display: block;
    width: auto;
    height: 68px;
    max-width: 310px;
    object-fit: contain;
}

.zr-hero {
    position: relative;

    min-height: 590px;

    background-image:
        linear-gradient(
            90deg,
            rgba(8, 24, 15, .88) 0%,
            rgba(8, 24, 15, .68) 37%,
            rgba(8, 24, 15, .18) 67%,
            rgba(8, 24, 15, .04) 100%
        ),
        url("/static/img/zroofwp.png");

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

.zr-hero-inner {
    position: relative;
    z-index: 2;
}

@media (max-width: 800px) {

    .zr-brand-logo img {
        height: 54px;
        max-width: 250px;
    }

    .zr-hero {
        min-height: 540px;

        background-position: 62% center;

        background-image:
            linear-gradient(
                90deg,
                rgba(8, 24, 15, .91) 0%,
                rgba(8, 24, 15, .76) 52%,
                rgba(8, 24, 15, .30) 100%
            ),
            url("/static/img/zroofwp.png");
    }
}

/* ================================================================
   END ZROOFING BRANDING V2
   ================================================================ */


/* ================================================================
   ZROOFING BRANDING V2
   ================================================================ */

.zr-brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.zr-brand-logo img {
    display: block;
    width: auto;
    height: 68px;
    max-width: 310px;
    object-fit: contain;
}

.zr-hero {
    position: relative;

    min-height: 590px;

    background-image:
        linear-gradient(
            90deg,
            rgba(8, 24, 15, .88) 0%,
            rgba(8, 24, 15, .68) 37%,
            rgba(8, 24, 15, .18) 67%,
            rgba(8, 24, 15, .04) 100%
        ),
        url("/static/img/zroofwp.png");

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

.zr-hero-inner {
    position: relative;
    z-index: 2;
}

@media (max-width: 800px) {

    .zr-brand-logo img {
        height: 54px;
        max-width: 250px;
    }

    .zr-hero {
        min-height: 540px;

        background-position: 62% center;

        background-image:
            linear-gradient(
                90deg,
                rgba(8, 24, 15, .91) 0%,
                rgba(8, 24, 15, .76) 52%,
                rgba(8, 24, 15, .30) 100%
            ),
            url("/static/img/zroofwp.png");
    }
}

/* ================================================================
   END ZROOFING BRANDING V2
   ================================================================ */


/* ================================================================
   ZROOFING LOGO SIZE V3
   ================================================================ */

.zr-nav {
    padding-top: 18px;
    padding-bottom: 18px;
}

.zr-brand-logo img {
    height: 220px !important;
    width: auto !important;
    max-width: 760px !important;
    object-fit: contain !important;
}

@media (max-width: 1000px) {

    .zr-brand-logo img {
        height: 170px !important;
        max-width: 600px !important;
    }
}

@media (max-width: 700px) {

    .zr-brand-logo img {
        height: 120px !important;
        max-width: 420px !important;
    }
}

/* ================================================================
   END ZROOFING LOGO SIZE V3
   ================================================================ */


/* ================================================================
   ZROOFING LIGHT HEADER V4
   ================================================================ */

.zr-nav {
    background: #e8f3e8 !important;
    color: #17351f !important;

    border-bottom: 1px solid #c8dcc9;

    box-shadow:
        0 2px 8px rgba(0,0,0,.08);
}

.zr-nav a {
    color: #17351f !important;
}

.zr-nav a:hover {
    color: #8b6a00 !important;
}

.zr-brand-logo img {
    filter: none !important;
}

/* ================================================================
   END ZROOFING LIGHT HEADER V4
   ================================================================ */

