.hero {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;

    /* background-color: var(--color-accent); */
    min-height: 95vh;
    /* Adjusted to ensure it covers more area */
    z-index: 1;
    /* This keeps the hero content above the gradient */
    overflow: hidden;
    /* Ensures gradient and video do not overflow */
}


/* Gradient Overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: var(--gradient-1);
     */
    /* The gradient you've defined */
    background: var(--gradient-hero);
    opacity: 1;
    /* Adjust for desired transparency */
    z-index: 1;
    /* Keep it behind the content */
}

/* Ensure the video is behind the gradient */
.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    /* Ensures video stays behind the gradient */
}

.hero__logo {

    height: 20vw;
    width: 20vw;
}

@media (max-width: 60rem) {
    .hero {
        /* min-height: 40vh; */
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.3)0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0)) 100%, url(../assets/img/2019/2019-9.jpg);
        background-size: cover;
        background-repeat: none;
        background-position: bottom;
        padding-inline: 2rem;
    }

    .hero__video {
        display: none;
    }

    .hero__logo {

        height: 50vw;
        width: 50vw;
    }

}






/* The text and other content should stay on top */
.hero__wrapper {

    display: flex;
    flex-direction: column;
    flex-grow: 1;
    z-index: 2;
    /* Ensures the text stays on top of both video and gradient */
}

/* The text and other content should stay on top */
.hero__body {

    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    max-width: 900px;
    padding-block: 5rem;
    /* height: 100%; */

    /* Ensures the text stays on top of both video and gradient */
}

@media (max-width: 60rem) {
    .hero__body {
        flex-direction: column;
    }
}

.hero__title {

    font-family: var(--title-font);
    color: white;
    /* color: var(--color-accent-light); */
    text-transform: uppercase;
    text-align: center;


    /* background: var(--gradient-2); */

    /* -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase; */
    font-size: 7rem;
    /* make line height lower I want the lines closer */
    line-height: 1.2;
    /* make outer glow */



}

.hero__title>span {
    background: var(--gradient-water);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 10rem;


}

.hero__strapline {
    font-family: var(--strap-font);
    color: white;
    font-size: 3rem;
    text-align: center;

    max-width: 600px;
    line-height: 1.1;
    text-transform: uppercase;
}

@media (min-width: 119.9rem) {
    .hero__title {
        /* font-size: 3vw; */
    }
}

@media (max-width: 60rem) {
    .hero__title {
        font-size: 10vw;
    }
}



.page-header {
    background: var(--gradient-2);
}

.page-header__title {
    color: white;
    font-family: var(--title-font);

    font-size: 9rem;
    text-align: center;
    padding: 1rem;
}

.hero__button-group {
    display: flex;
    gap: 2rem;
}