/* ====================================
   GLOBAL VARIABLES
==================================== */

:root {

    --primary: #508991;

    --dark: #172a3a;

    --teal:#75dddd;

    --light: #ffffff;

    --muted-background: #f1f1ef;

    --muted-text: #606060;

    --border: #d9d9d9;
}


/* ====================================
   GENERAL
==================================== */

html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    background-color: var(--dark);

    color: var(--light);

    font-family: "Source Sans 3",
                 Arial,
                 sans-serif;
}



/* ====================================
   NAVIGATION
==================================== */

.site-header {

    background-color: #ffffff;

    border-bottom: 3px solid var(--primary);
}


.navbar {

    padding-top: 1rem;

    padding-bottom: 1rem;
}


.navbar-brand {

    font-family: "Barlow Condensed",
                 sans-serif;

    font-size: 1.4rem;

    font-weight: 900;

    letter-spacing: .05em;

    color: var(--dark);

    text-transform: uppercase;
}


.navbar-brand span {

    color: var(--primary);
}


.navbar-brand:hover {

    color: var(--dark);
}


.nav-link {

    font-family: "Barlow Condensed",
                 sans-serif;

    font-weight: 700;

    font-size: .9rem;

    letter-spacing: .1em;

    color: #666666;

    text-transform: uppercase;
}


.nav-link:hover {

    color: var(--primary);
}


.report-label {

    font-size: .75rem;

    letter-spacing: .1em;

    color: #777;

    text-transform: uppercase;
}



/* ====================================
   HERO
==================================== */

.hero-section {

    padding: 6rem 0;
}


.hero-content {

    max-width: 960px;
}


.accent-rule {

    width: 100%;

    height: 4px;

    background-color: var(--primary);

    margin-bottom: 2rem;
}


.accent-rule.thin {

    height: 2px;

    margin-top: 2.5rem;

    margin-bottom: 0;
}


.hero-section h1 {

    margin: 0;

    font-family: "Barlow Condensed",
                 sans-serif;

    font-weight: 900;

    font-size: clamp(4rem, 10vw, 7rem);

    line-height: .9;

    letter-spacing: -.01em;

    text-transform: uppercase;
}


.hero-section h1 span {

    color: var(--primary);
}


.hero-description {

    max-width: 680px;

    margin-top: 2rem;

    margin-bottom: 0;

    font-size: 1.25rem;

    line-height: 1.65;
}


.source-text {

    margin-top: 2rem;

    margin-bottom: 0;

    font-size: .8rem;

    letter-spacing: .12em;

    color: var(--muted-text);

    text-transform: uppercase;
}



/* ====================================
   FINDINGS
==================================== */

.findings-section {

    background-color: var(--dark);

    padding: 6rem 0;
}


.section-heading h2 {

    font-family: "Barlow Condensed",
                 sans-serif;

    font-size: clamp(2rem, 5vw, 3rem);

    font-weight: 900;

    letter-spacing: .05em;

    text-transform: uppercase;
}
.section-heading h2 .accent1{
    color:var(--primary);
}

.section-heading h2 .accent{
    color:var(--teal);
}
.section-heading p {

    color: var(--muted-text);

    font-size: 1.05rem;
}


.finding-card {

    background-color: #ffffff;

    border-left: 5px solid var(--primary);

    padding: 1.75rem;

    margin-bottom: 1.25rem;

    box-shadow: 0 2px 8px
                rgba(0, 0, 0, .04);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.finding-card:hover {

    transform: translateY(-3px);

    box-shadow: 0 8px 18px
                rgba(0, 0, 0, .08);
}


.finding-number {

    display: block;

    min-width: 3rem;

    font-family: "Barlow Condensed",
                 sans-serif;

    font-size: 2.75rem;

    font-weight: 900;

    line-height: 1;

    color: var(--primary);

    opacity: .65;
}


.finding-card h3 {

    margin-bottom: .75rem;

    font-family: "Barlow Condensed",
                 sans-serif;

    font-size: 1.6rem;

    font-weight: 900;

    letter-spacing: .04em;

    text-transform: uppercase;
    color: var(--teal);
}


.finding-card p {

    margin-bottom: 0;

    color: #555;

    font-size: 1rem;

    font-weight: 600;

    font-style: italic;

    line-height: 1.7;
}



/* ====================================
   QUESTION SECTION
==================================== */

.question-section {

    background-color: var(--primary);

    color: #ffffff;

    padding: 6rem 0;
}


.question-content {

    max-width: 950px;

    margin: auto;

    text-align: center;
}


.question-label {

    font-family: "Barlow Condensed",
                 sans-serif;

    font-size: 1rem;

    font-weight: 700;

    letter-spacing: .2em;

    opacity: .85;

    text-transform: uppercase;
}


.question-section blockquote {

    margin-top: 1.5rem;

    font-family: "Barlow Condensed",
                 sans-serif;

    font-size: clamp(2rem, 5vw, 3.5rem);

    font-weight: 900;

    line-height: 1.1;

    text-transform: uppercase;
}


.small-divider {

    width: 60px;

    height: 1px;

    background-color: rgba(255,255,255,.5);

    margin: 2rem auto;
}


.question-description {

    margin-bottom: 2rem;

    font-size: 1.1rem;

    line-height: 1.6;
}


.question-section .btn {

    border-radius: 0;

    padding: .85rem 1.75rem;

    font-family: "Barlow Condensed",
                 sans-serif;

    font-size: 1rem;

    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;
}



/* ====================================
   MONITOR SECTION
==================================== */

.monitor-section {

    padding: 4rem 0;
}


.monitor-box {

    display: flex;

    align-items: stretch;

    gap: 1.5rem;

    max-width: 1000px;
}


.monitor-line {

    width: 5px;

    flex-shrink: 0;

    background-color: var(--primary);
}


.monitor-box p {

    margin: 0;

    color: #666;

    font-size: 1.05rem;

    line-height: 1.7;
}


.monitor-box strong {

    color: var(--dark);
}



/* ====================================
   FOOTER
==================================== */

footer {

    border-top: 3px solid var(--primary);

    padding: 3rem 0;

    background-color: #ffffff;
}


footer h4 {

    color: var(--primary);

    font-family: "Barlow Condensed",
                 sans-serif;

    font-size: 1.25rem;

    font-weight: 700;

    letter-spacing: .1em;

    text-transform: uppercase;
}


footer p {

    max-width: 650px;

    color: #666;

    font-size: .9rem;

    line-height: 1.7;
}


footer hr {

    margin-top: 1.5rem;

    border-color: var(--border);
}


footer small {

    color: #666;

    font-weight: 700;
}



/* ====================================
   MOBILE
==================================== */

@media (max-width: 767px) {

    .hero-section {

        padding: 4rem 0;
    }


    .findings-section {

        padding: 4rem 0;
    }


    .question-section {

        padding: 4rem 0;
    }


    .hero-section h1 {

        font-size: clamp(3.5rem, 18vw, 5rem);
    }


    .hero-description {

        font-size: 1.05rem;
    }


    .finding-card {

        padding: 1.25rem;
    }


    .finding-number {

        font-size: 2rem;

        min-width: 2rem;
    }


    .finding-card h3 {

        font-size: 1.3rem;
    }


    .monitor-box {

        gap: 1rem;
    }

}