/* Built by 8Miles8 for btcRE LLC.*/

/*
Table of Contents:
    General & Reusable Styles
        Animations
    Navbar
    Hero
    About
    Events
    Footer
*/

/* General & Reusable Styles */

.zen-kaku gothic new-regular {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.marhey {
    font-family: "Marhey", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

* {
    text-rendering: optimizeLegibility;
    line-height: 1;
}

html {
    font-family: "Zen Kaku Gothic New", sans-serif;
    overflow-x: hidden;
    width: 100vw;
    height: 100vh;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100vw;
    height: 100vh;
}

h1 {
    font-family: "Marhey", sans-serif;
    display: block;
    margin: 0;
    padding: 0;
    font-size: 3.3rem;
    line-height: 1.1;
    color: inherit;
}

@media (min-width: 1200px) {
    h1 {
        font-size: 5.3rem;
    }
}

h2 {
    display: block;
    margin: 0 0 2rem;
    padding: 0;
    font-size: 4rem;
    font-weight: lighter;
    text-decoration: none;
    color: inherit;
}

h3 {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 1.8rem;
    font-weight: normal;
    text-decoration: none;
    color: inherit;
}

h4 {
    display: flex;
    margin: 1rem 0;
    padding: 0;
    font-size: 1.25rem;
    font-weight: lighter;
    text-decoration: none;
    color: inherit;
    align-items: center;
}

p {
    display: block;
    margin: 2rem 0 0;
    padding: 0;
    line-height: 1.4;
    font-size: 1.1rem;
    color: inherit;
}

p span {
    color: var(--accent-color);
}

strong {
    display: inline-block;
    font-weight: bolder;
}

span {
    display: inline-block;
}

u {
    text-decoration-color: var(--text-color);
    text-decoration-thickness: 0.5rem;
}

a {
    color: inherit;
    text-decoration: none;
}

.recap-link {
    display: block;
    margin-top: 1rem;
}

p a {
    color: var(--accent-color);
    transition: 0.3s ease-out;
    text-decoration: underline;
}

p a:hover,
p a:focus,
p a:active,
h4 a:hover,
h4 a:focus,
h4 a:active {
    color: inherit;
}

p a .fa-chevron-right,
h4 a .fa-chevron-right {
    transition: 0.5s;
}

p a:hover .fa-chevron-right,
p a:focus .fa-chevron-right,
p a:active .fa-chevron-right,
h4 a:hover .fa-chevron-right,
h4 a:focus .fa-chevron-right,
h4 a:active .fa-chevron-right {
    transform: translatex(3rem);
}

h4 .fa-instagram,
h4 .fa-youtube {
    font-size: 2rem;
    padding: 0.5rem;
}

h4 .fa-arrow-up-right-from-square {
    font-size: 0.8rem;
}

.page-section {
    width: 100%;
    margin: 0;
    padding: 5rem 0;
    background-color: var(--background-color);
    position: relative;
}

.page-content {
    height: 100%;
    width: auto;
    max-width: 2000px;
    margin: 0 auto;
    padding: 5rem 2rem;
    z-index: 3;
}

.page-content * {
    position: relative;
    z-index: 3;
}

@media (min-width: 1200px) {
    .page-content {
        padding: 0 7rem;
    }
}

.bulletpoints {
    padding-left: 0;
    padding-right: 0;
}

.bulletpoints li {
    margin: 0;
    padding: 1rem;
    font-size: 1.3rem;
    list-style: none;
    border-bottom: var(--primary-color) 1px solid;
}

.bulletpoints li i {
    transform: translatex(-0.5rem);
}

.text-and-image {
    display: flex;
    width: auto;
    margin: 0;
    padding: 0;
    flex-direction: column;
    align-items: center;
}

.text-and-image-text {
    display: inline-block;
    width: auto;
    margin: 0 0 2rem;
    padding: 0 0 1rem;
    font-size: 1.5rem;
}

.text-and-image p {
    line-height: 1.2;
}

.text-and-image-image {
    display: inline-block;
    width: auto;
    margin: 0 0 2rem;
    padding: 0;
}

.text-and-image-image > img {
    margin: 0;
    padding: 0;
    width: 100%;
    max-height: 150vh;
    object-fit: cover;
}

@media (min-width: 1200px) {
    .text-and-image {
        flex-direction: row;
        justify-content: space-between;
        gap: 5rem;
    }

    .text-and-image-text {
        max-width: 50%;
        margin: 0;
    }

    .text-and-image-image {
        max-width: 40%;
        margin: 0;
    }

}

.layered-photo-container {
    position: relative;
}

.layered-photo-container .layered-photo-secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    object-fit: cover;
}

.layered-photo-container.is-visible .layered-photo-secondary {
    animation: fade-in linear forwards 2.5s 3.5s;
}

.layered-photo-container.is-visible .full-bio-portrait-overlay {
    animation: fade-in linear forwards 2.5s 3.5s;
}

/* Animations */
mark {
    background-color: var(--text-color);
}

mark.is-visible {
    --height: 100%;
    all: unset;
    background-image: linear-gradient(var(--text-color), var(--text-color));
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 var(--height);
    animation: mark-highlight 1s;
    animation-fill-mode: forwards;
}

@keyframes mark-highlight {
    to {
        background-size: 100% var(--height);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1
    }
}

.hover-underline:after {
    content: '';
    display: block;
    height: 0.1em;
    width: 0;
    background-color: var(--underline-color);
    transition: 0.5s ease-out;
    -webkit-transition: 0.5s ease-out;
}

.hover-underline:hover:after,
.hover-underline:active:after,
.hover-underline:focus:after {
    width: 100%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes float-up-y {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }

    3% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

    100% {
        transform: translate(0, -100vh);
        opacity: 0;
    }
}

@keyframes float-up-x {
    0% {
        transform: translate(-0.5rem, 0);
    }

    50% {
        transform: translate(0.5rem, 0);
    }

    100% {
        transform: translate(-0.5rem, 0);
    }
}

.grow-on-scroll {
    padding: 0;
    transition: 2s ease-out;
    -webkit-transition: 2s ease-out;
    font-size: 7rem;
    font-weight: bold;
    line-height: 1.3;
    transform-origin: center;
    position: absolute;
    top: 0;
    left: 50%;
    text-align: center;
    transform: scale(0.4) translate(-100%, -75%) rotate(0);
}

.grow-on-scroll.is-visible {
    transform: scale(1) translate(-50%, -75%) rotate(10deg);
}

@media (min-width: 1200px) {
    .grow-on-scroll {
        font-size: 15rem;
    }
}


/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-image: none;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    box-sizing: border-box;
}

.header-content {
    height: 100%;
    width: auto;
    max-width: 2000px;
    margin: auto;
    padding: 0;
}

.nav-item {
    color: var(--text-color);
    text-shadow: var(--secondary-color) 0 0 1px;
}

@media (min-width: 1200px) {
    .nav-item {
        display: inline-block;
        text-align: center;
        padding: 1.3rem;
        font-size: 1.4rem;
    }
}

.hamburger-menu {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    height: 2rem;
    margin: 0;
    padding: 1rem;
    float: right;
    font-size: 2rem;
    text-decoration: none;
    color: var(--text-color);
    background-color: var(--background-color);
    transition: 1s ease-in-out;
    -webkit-transition: 1s ease-in-out;
}

.hamburger-menu ul {
    position: absolute;
    margin: 3rem 0 0;
    padding: 0;
    top: 0;
    right: 0;
    vertical-align: center;
    text-align: right;
    transition: 1s ease-in-out;
    -webkit-transition: 1s ease-in-out;
}

.hamburger-menu-toggle i {
    display: block;
    width: 100%;
    text-align: right;
    color: var(--text-color);
    transition: 1s ease-in-out;
    -webkit-transition: 1s ease-in-out;
}

.menu-item {
    display: block;
    height: 0;
    margin: 0;
    padding: 0;
    justify-items: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    vertical-align: center;
    font-size: 0;
    color: var(--text-color);
    background-color: var(--background-color);
    transition: 1s ease-in-out;
    -webkit-transition: 1s ease-in-out;
}

.hamburger-menu.open .menu-item {
    height: 2rem;
    padding: 1rem;
    font-size: 2rem;
}

.hamburger-menu a {
    text-decoration: none;
}

@media (min-width: 1200px) {
    .header {
        background-image: linear-gradient(75deg, var(--secondary-color), var(--background-color));
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
    }

    .hamburger-menu {
        background-color: unset;
        position: revert;
        top: revert;
        right: revert;
        height: auto;
        margin: revert;
    }

    .hamburger-menu ul {
        position: initial;
        margin: 0;
    }

    .hamburger-menu-toggle i {
        display: none;
    }

    .menu-item {
        display: inline-block;
        height: 100%;
        margin-left: 1rem;
        margin-right: 1rem;
        box-sizing: border-box;
        font-size: 1.5rem;
        background-color: unset;
    }
}


/* Hero */
#hero {
    color: var(--text-color);
    background-image: url("https://getwellproductions.net/assets/banner.webp");
    background-size: cover;
    background-blend-mode: multiply;
    height: 100vh;
    position: relative;
    padding: 3.2rem 0 0;
    image-rendering: optimizeSpeed;
}

#hero:after {
    content: "";
    position: absolute;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0) 10%, var(--background-color));
    z-index: 1;
    padding: 3.2rem 0 0;
}

#hero .page-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
}

.hero-text {
    text-shadow: var(--secondary-color) 0 1px 3px;
    animation: fade-in 3s ease-out;
    z-index: 3;
}

.hero-record {
    position: relative;
    width: auto;
    z-index: 2;
    margin-top: 10rem;
}

.hero-record-floater-container {
    display: flex;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20rem;
    max-width: 20rem;
    flex-wrap: wrap;
    justify-content: center;
    color: #204a20;
}

.hero-record-floater-container div:nth-child(even) {
    color: #21705b;
}

.hero-record-floater {
    animation: var(--period) float-up-y var(--delay) linear infinite;
}

.hero-record-floater-x {
    font-size: 3rem;
    animation: var(--period) float-up-x var(--delay) ease-in-out infinite;
}

.hero-record-floater img {
    width: 5rem;
    border-radius: 5px;
}

.hero-record-image {
    display: block;
    width: 25rem;
    animation: spin 30s linear infinite;
    image-rendering: smooth;
}

@media (min-width: 1200px) {
    #hero {
        padding: 4rem 0 0;
    }

    #hero:after {
        padding: 4rem 0 0;
    }

    #hero .page-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .hero-record {
        margin-top: unset;
    }
}

/* About Us */
#about-us {
    color: var(--text-color);
    background-size: 400% 400%;
    position: relative;
}

#about-us:after {
    content: "";
    position: absolute;
    width: 25rem;
    height: 25rem;
    border-radius: 50%;
    background-color: var(--tertiary-color);
    filter: blur(3rem);
    top: 5rem;
    left: -7rem;
    z-index: 2;
}

#about-us .text-and-image-text {
    padding-top: 10rem;
}

#about-us .text-and-image:after {
    content: "";
    position: absolute;
    width: 25rem;
    height: 25rem;
    border-radius: 50%;
    background-color: var(--tertiary-color);
    filter: blur(3rem);
    bottom: -10rem;
    right: -7rem;
    z-index: 2;
}

@media (min-width: 1200px) {
    #about-us .page-content {
        flex-direction: row;
    }
}

/* Events */
#events {
}

#events .page-content,
#upcoming .page-content {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 3rem;
}

#events .page-content::before {
    content: "";
    position: absolute;
    width: 50vh;
    height: 50vh;
    border-radius: 50%;
    background-color: var(--tertiary-color);
    filter: blur(3rem);
    top: 25%;
    left: -3rem;
    z-index: 1;
}

#events .page-content::after {
    content: "";
    position: absolute;
    width: 50vh;
    height: 50vh;
    border-radius: 50%;
    background-color: var(--tertiary-color);
    filter: blur(3rem);
    bottom: -5rem;
    right: -5rem;
    z-index: 1;
}

.featured-event {
    box-shadow: var(--accent-color) 0 0 2rem;
}

.event-card {
    height: auto;
    width: auto;
    position: relative;
    transition: 1s ease;
    flex-basis: 100%;
    background-color: var(--secondary-color);
    z-index: 3;
}

.event-card img {
    display: block;
    object-fit: cover;
    height: auto;
    width: 100%;
}

.event-card-text {
    padding: 3rem;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

.tickets-button {
    display: block;
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
    font-size: 1.5rem;
    font-weight: 1.5;
    background-image: linear-gradient(70deg, var(--secondary-color), var(--accent-color));
    transition: 0.5s ease-out;
}

.tickets-button:hover,
.tickets-button:focus,
.tickets-button:active {
    rotate: 5deg;
}

@media (min-width: 1200px) {
    #events .page-content,
    #upcoming .page-content {
        flex-direction: row;
    }

    .event-card {
        max-width: 40%;
    }
}

/*
Events Page
 */
#archive h2 {
    color: var(--text-color);
    font-family: "Marhey", sans-serif;
    text-align: center;
}

.series-listing {
    width: 100%;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.series-listing-info {
    background-image: url("https://getwellproductions.net/assets/banner.webp");
    background-color: var(--secondary-color);
    background-clip: padding-box;
    background-size: cover;
    background-position: top center;
    background-blend-mode: soft-light;
    min-width: 12rem;
    padding: 9rem 2.5rem;
}

.event-list {
    padding: 2rem;
}

.event-listing {
    margin-left: 1rem;
    margin-right: 1rem;
}

.event-listing-info {
    max-height: 0;
    overflow: hidden;
    transition: 0.7s ease-in-out;
    margin-top: 1rem;
}

.event-listing-info-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    gap: 5rem;
}

.event-listing-info-header img {
    height: 20rem;
}

.event-listing-info-header .bulletpoints {
    width: 100%;
}

.event-listing label {
    font-size: 1.25rem;
    font-family: "Marhey", sans-serif;
    padding-bottom: 0.5rem;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: var(--background-color) 5px solid;
}

.event-status {
    font-family: initial;
    display: inline-block;
    align-items: center;
    background-color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.6rem;
    padding-left: 3px;
    padding-right: 3px;
}

.event-listing label i {
    text-align: right;
}

.event-listing .event-toggle ~ label .fa-chevron-right {
    transition: 0.5s ease;
}

.event-listing .event-toggle:checked ~ label .fa-chevron-right {
    rotate: 90deg;
}

.event-listing .event-toggle {
    display: none;
}

.event-listing .event-toggle:checked ~ .event-listing-info {
    max-height: 75rem;
    padding-bottom: 2rem;
}

@media (min-width: 1200px) {
    .series-listing {
        flex-direction: row;
    }

    .series-listing-info {
        flex-basis: 30%;
    }

    .event-listing-info-header {
        flex-direction: row;
    }

    .event-listing .event-toggle:checked ~ .event-listing-info {
        max-height: 50rem;
    }
}

/* Footer */
#footer {
    margin: 0;
    padding: 0;
    color: var(--text-color);
}

#footer .page-content {
    width: 90%;
    margin: auto;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    border-top: var(--text-color) 1px solid;
    z-index: 3;
    position: relative;
}

#footer-logo {
    margin: auto;
    display: block;
    width: 75%;
}

.footer-copyright {
    padding-bottom: 1rem;
    text-align: center;
}

@media (min-width: 1200px) {
    #footer .page-content {
        flex-direction: row;
        gap: 5rem;
    }

    #footer-logo {
        height: 10rem;
        width: initial;
        margin: unset;
    }
}

/*
Coming Soon
 */
#coming-soon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    align-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

#coming-soon .page-content {
    height: auto;
    color: var(--text-color)
}

#coming-soon h2 {
    font-size: 3rem;
}

/* Built by 8Miles8 */