/* ---- Global ---- */
:root {
    --brand-green: #1ec6a3;
    --ink: #0c0c0c;
    --card: #ffffff;
    --border: #d7ebe7;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    background: #ffffff;
    /* dark background so area under hero isn't white */
    color: #222;
    font-family: "Open Sans", Arial, sans-serif;
}

/* ---- Hero ---- */
.hero {
    /* Full-bleed hero image */
    min-height: 300px;
    /* desktop */
    background: #0b0b0b url("../images/Background.png");
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;

    padding: 6rem 1.25rem;
    /* controls top/bottom spacing for logos */
}

.hero::after {
    /* dark overlay like your design */
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .50) 0%, rgba(0, 0, 0, .55) 50%, rgba(0, 0, 0, .60) 100%);
}

.brand-strip {
    position: relative;
    /* above overlay */
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.25rem;
    flex-wrap: wrap;
}

.brand-strip img {
    display: block;
    object-fit: contain;
}

.brand-strip .logo-srch {
    height: 222px;
}

.brand-strip .logo-arrow {
    height: 200px;
}

.brand-strip .logo-zensho {
    height: 230px;
}

/* Responsive hero heights */
@media (max-width: 991px) {
    .hero {
        min-height: 70vh;
    }
}

@media (max-width: 500px) {
    .hero {
        min-height: 56vh;
    }
}

/* ---- Main container (boxed) ---- */
.wrap {

    max-width: 1280px;
    /* your requested box width */
    margin: 0 auto;
    padding: 2rem 1.25rem 4rem;
}

/* ---- Headings / Subtitles ---- */


.title {
    color: #06CC9B;
    font-family: "Open Sans";
    font-weight: 700;
    font-size: 36px;
    line-height: 1.25;
    text-align: center;
    margin: 0 0 .5rem;
}

.subtitle {
    color: #1A1A1A;
    text-align: center;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.6;
    margin: 0 0 2rem;
}

.Content-box {
    margin-bottom: 80px;
    padding: 20px 50px;
    border-radius: 20px;
    border: 1px solid #06CC9B;
}

p {

    color: #464646;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
    /* 175% */
}

/* ---- Cards ---- */
.card1 {

    padding-bottom: 70px;
}

.card h2 {
    color: #06CC9B;
    font-family: "Open Sans";
    font-size: 36.555px;
    font-style: normal;
    font-weight: 700;
    line-height: 48.435px;
}


.quote {
    font-style: italic;
    border-left: 3px solid var(--brand-green);
    padding-left: .75rem;
    color: #1d2d2a;
}

/* ---- Two-column section ---- */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.qr {
    justify-self: center;
    /* center QR horizontally */
    align-self: center;
    /* ✅ center QR vertically with text */
}

.qr img {
    width: 220px;
    height: auto;
    display: block;
}

@media (min-width: 768px) {
    .two-col {
        grid-template-columns: 2fr 1fr;
        align-items: center;
    }
}


/* ---- Lists ---- */
.bullets {
    margin: 0;
    padding-left: 1.1rem;
}

hr {
    margin-top: 50px;
    margin-bottom: 50px;
    border: none;

    height: 2px;

    background-color: #06CC9B;

}

.bullets li {
    padding: 10px;
    margin: .5rem 0;
    color: #2b3a38;
}

/* ---- Footer ---- */
.footer {
    text-align: center;

}

.footer .lockup h3 {
    color: #333;
    text-align: center;
    font-family: Raleway;
    font-size: 26px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    letter-spacing: 3px;
}

h4 {
    color: #333;
    text-align: center;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
}

.tagline {
    color: #06CC9B;
    text-align: center;
    font-family: Roboto;
    font-size: 21.6px;
    font-style: normal;
    font-weight: 900;
    line-height: 30.24px;
    text-transform: uppercase;
}

.social {
    padding-top: 40px;
    display: flex;
    justify-content: center;
    gap: 24px;
}

/* Mobile tweaks */
@media (max-width: 767px) {

    /* outer page padding */
    .wrap {
        padding: 2rem 10px;
        /* keep vertical rhythm, 10px sides */
    }

    /* content box padding */
    .Content-box {
        padding: 15px;
        margin-bottom: 40px;
        /* optional: tighten spacing */
    }

    .card1 {

        padding-bottom: 40px;
    }

    /* headings: 36 -> 24 */
    .title {
        font-size: 20px;
        line-height: 1.1;
    }

    .card h2 {
        font-size: 20px;
        line-height: 1.1;
    }

    /* optional: slightly reduce subtitle for balance */
    .subtitle {
        font-size: 16px;
        line-height: 1.5;
    }

    /* paragraph text: 20 -> 16 */
    p {
        font-size: 16px;
        line-height: 1.6;
    }

    /* two-column stack (you already default to 1fr) + center QR */
    .two-col {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .qr {
        justify-self: center;
        align-self: center;
    }

    .qr img {
        width: 180px;
        /* scale QR a bit on mobile */
    }

    /* hero/logo scaling so they fit nicely */
    .brand-strip {
        flex-direction: column;
        gap: 1.25rem;
    }

    .brand-strip .logo-srch {
        height: 140px;
    }

    .brand-strip .logo-arrow {
        transform: rotate(90deg);
        height: 120px;
    }

    .brand-strip .logo-zensho {
        height: 150px;
    }

    /* footer spacing + icons */
    .social {
        padding-top: 24px;
        gap: 16px;
    }
}