body,
html {
    font-family: AeonMono;
}

:root {
    --hero-marquee-height: 4rem;
}

.pagecontainer {
    overflow-x: hidden;
}

.sectionheading {
    font-family: AeonMono;
}

.sectionbody {
    font-family: FKGroteskMono;
    color: white;
}

.subtitle {
    font-family: AeonMonoSemiBold;
}

a:hover {
    cursor: pointer;
}

a.active {
    background-color: black;
}

.page {
    min-height: 100vh;
    min-height: 100dvh;
}

.toppage {
    height: 125vh;
}

.hero {
    background-image: url(../img/BGTOP.png);
    background-position: left bottom;
    background-size: cover;
    background-attachment: scroll;
    background-repeat: no-repeat;
    min-height: calc(100vh + var(--hero-marquee-height));
    min-height: calc(100dvh + var(--hero-marquee-height));
    padding-bottom: var(--hero-marquee-height);
    position: relative;
    overflow: visible;
    --hero-header-depth: clamp(5rem, 16vw, 7rem);
}

.hero > div:first-child {
    position: relative;
    z-index: 3;
}

.about {
    background-image: url(../img/BGMIDDLE.png);
    background-position: bottom right;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.background-panel {
    min-height: 50vh;
    align-self: stretch;
}

@supports (height: 100dvh) {
    .background-panel {
        min-height: 50dvh;
    }
}

.graham {
    background-image: url(../img/GRAHAM.jpeg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.maria {
    background-image: url(../img/MARIA.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.heart {
    background-image: url(../img/HEART.png);
    background-position: center center;
    background-size: 40cqw;
    background-repeat: no-repeat;
}

.heroblurb {
    font-family: FKGroteskMono;
    letter-spacing: 2px;
}

.picnic {
    background-image: url(../img/computer.webp);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.title {
    font-family: AeonMonoSemiBold;
}

body {
    background: #5c91b4;
    font-family: 'Courier New', Courier, monospace;
    color: #cbfe19;
}

.yellow {
    color: #cbfe19;
}

.bg-yellow {
    background-color: #cbfe19;
    color: black;
    border-color: #cbfe19;
}

.bg-yellow .sectionbody {
    color: black;
}
.bg-yellow .sectionheading {
    color: black;
}

.bg-yellow .subtitle {
    color: black;
}

.border {
    position: relative;
}

.border::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    left: 0;
    bottom: 3px;
    border-bottom: 1px solid #cbfe19;
}

.header {
    background-image: url(../img/title.png);
    background-position: left bottom;
    background-size: contain;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.links {
    font-family: AeonMono;
    margin-left: auto;
}

.links a:hover {
    background-color: black;
}

.links a {
    color:#cbfe19 !important;
    text-decoration: none;
}

.yellow a {
    color:#cbfe19 !important;
    text-decoration: none;
}

.yellow a:hover {
    background-color: black;
}

.heroimagewrap {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    pointer-events: none;
    padding: 1.5rem 0 0 clamp(2.5rem, 12vw, 4.5rem);
    gap: 1rem;
    position: absolute;
    inset-inline-end: 0;
    bottom: var(--hero-marquee-height);
    width: 100%;
    z-index: 1;
}

.heroimage {
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: bottom right;
}

.heroimage--mobile {
    margin-left: auto;
    max-width: clamp(14rem, 64vw, 20rem);
    height: clamp(
        20rem,
        calc(100vh - var(--hero-header-depth) - 0.5rem),
        calc(100vh - var(--hero-header-depth) + 0.75rem)
    );
    display: block;
}

.heroimage--desktop {
    max-width: none;
    height: auto;
    max-height: clamp(
        36rem,
        calc(100vh - var(--hero-header-depth) + 0.5rem),
        calc(100vh - var(--hero-header-depth) + 1.5rem)
    );
    display: none;
}

.split-row {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
    width: 100%;
    min-height: inherit;
    height: 100%;
    flex: 1 1 auto;
}

.split-column {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    align-self: stretch;
    flex: 1 1 100%;
    min-height: 100%;
    height: 100%;
}

.split-row > .background-panel,
.split-row > .split-column {
    width: 100%;
}

.split-column__inner {
    width: 100%;
    max-width: 32rem;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    height: 100%;
    flex: 1 1 auto;
}

.program-divider {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #cbfe19;
}

.module-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 auto;
    gap: 2.5rem;
}

.module-column .module {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.module-column--tight {
    gap: 1.5rem;
}

.split-column__inner > .sectionheading,
.split-column__inner > .subtitle {
    display: block;
}

.split-column__inner.bio {
    max-width: 34rem;
}

@media screen and (max-width: 30em) {
    .desktop-bumper {
        display: none !important;
    }

    .mobile-order-first {
        order: -1;
    }
}

@media screen and (min-width: 30em) {
    .split-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mobile-order-first {
        order: 0;
    }

    .hero .maincontent {
        --hero-content-offset: 4rem;
    }

    .hero .heroblurb {
        padding-left: var(--hero-content-offset);
    }

    .heroimagewrap {
        padding: 0 0 0 2rem;
    }

    .heroimage--desktop {
        max-height: clamp(
            38rem,
            calc(100vh - var(--hero-header-depth) + 0.5rem),
            calc(100vh - var(--hero-header-depth) + 1.5rem)
        );
    }

    .hero .hero-social {
        position: absolute;
        left: 0;
        bottom: calc(var(--hero-marquee-height) + 1.25rem);
        margin-top: 0;
        transform: none;
        padding-left: var(--hero-content-offset);
        padding-right: 0;
        width: max-content;
    }

    .split-column {
        padding: 3rem 2.5rem;
        height: 100%;
    }

    .split-column__inner {
        max-width: 34rem;
    }

    .split-column__inner.bio {
        max-width: 36rem;
    }
}

@media screen and (min-width: 60em) {
    .hero {
        --hero-header-depth: clamp(6rem, 12vw, 8rem);
    }

    .hero .maincontent {
        --hero-content-offset: 4rem;
    }

    .hero .heroblurb {
        padding-left: var(--hero-content-offset);
    }

    .heroimagewrap {
        padding: 0 0 0 3rem;
    }

    .heroimage--desktop {
        display: block;
        max-height: clamp(
            40rem,
            calc(100vh - var(--hero-header-depth) + 0.5rem),
            calc(100vh - var(--hero-header-depth) + 1.5rem)
        );
    }

    .heroimage--mobile {
        display: none;
    }

    .split-column {
        padding: 4rem 3.5rem;
        height: 100%;
    }

    .split-column__inner {
        max-width: 38rem;
    }

    .split-column__inner.bio {
        max-width: 40rem;
    }
}

.maincontent {
    flex-grow: 1;
    z-index: 999;
}

.hero .maincontent {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: clamp(22rem, 55vh, 38rem);
    position: relative;
    z-index: 2;
}

.hero-social {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 13rem;
    align-self: flex-start;
    transform: none;
}

.hero-social a {
    display: block;
}

.footer {
    z-index: 999;
}

.social {
    background-image: url(../img/socialicons.png);
    background-size: cover;
}

.podcast {
    background-position-x: 50%;
    display: none;
}

.spotify {
    background-position-x: 0%;
}

.insta {
    background-position-x: 100%;
}

.bio {
    color: white;
}

.learnmore {
    background-image: url("../img/LEARNMOREBUTTON2.png");
    background-repeat: no-repeat;
    background-attachment: contain;
    background-size: contain;
    height: 2.5rem;
}

.buynow {
    background-color: #cbfe19;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    color: black;
    padding: 1rem;
    border: 3px;
    border-style: solid;
    border-color: #5c91b4;
}

a:visited {
    color: black;
}



@media screen and (max-width: 30em) {
    .humantexttitle {
        margin-bottom: -0.5rem;
    }

    .heart {
        background-image: url(../img/HEART.png);
        background-position: center center;
        background-size: 90cqw;
        background-repeat: no-repeat;
    }

    .hero {
        background-image: url(../img/BGTOPMOBILE.png);
        background-position: center bottom;
        background-size: cover;
        background-attachment: scroll;
        background-repeat: no-repeat;
        min-height: calc(100vh + var(--hero-marquee-height));
        min-height: calc(100dvh + var(--hero-marquee-height));
        padding-bottom: var(--hero-marquee-height);
    }

}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .humantexttitle {
        margin-bottom: -1.1rem;
    }

    .page {
        min-width: 640px;
        min-height: 480px;
    }
}

@media screen and (min-width: 60em) {
    .humantexttitle {
        margin-bottom: -1.1rem;
    }
}