.hero {
    position: relative;
    height: 113vh;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
}

/* blurred background layer */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.80),
            rgba(255, 255, 255, 0.80)
        ),
        url("../../assets/images/dhdn.jpg");
    background-position: 50% 100%;

    background-size: cover;

    /* filter: blur(1px); */
    /* transform: scale(1.05); prevents blur edges */

    mask-image:
        linear-gradient(
            to bottom,

            rgba(0,0,0,1) 0%,
            rgba(0,0,0,1) 78%,

            rgba(0,0,0,0.85) 86%,
            rgba(0,0,0,0.45) 94%,

            rgba(0,0,0,0) 100%
        );

    -webkit-mask-image:
        linear-gradient(
            to bottom,

            rgba(0,0,0,1) 0%,
            rgba(0,0,0,1) 78%,

            rgba(0,0,0,0.85) 86%,
            rgba(0,0,0,0.45) 94%,

            rgba(0,0,0,0) 100%
        );

    z-index: -1;
}

.hero-content {
    height: 100vh;
    width: 100%;

    display: flex;
    justify-content: flex-start;
    align-items: center;

    padding-left: 10%;
}

.content-wrapper {
    padding: 50px 50px;
    border-radius: 20px;
    background-color: var(--bg-panel);
    box-shadow: 0 0px 4px;

    display: flex;
    flex-direction: column;
    
}

.hero-content h1 {
    font-size: 46px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 80px;
}

.hero-content .activity-label {
    padding: 8px 16px;
    background-color: var(--accent);
    border-radius: 20px;
    color: var(--bg-panel);
    transform: rotate(20deg);
}

.hero-btn {
    display: inline-block;
    background: var(--secondary);
    color: var(--text-primary);
    text-align: center;
    padding: 16px 40px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.5rem;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}