body {
    font-family: "Inter", sans-serif;
    background-color: #201f24;
    color: #fff;
    margin: 0;
}

.container {
    margin: 0 auto;
}

.hero {
    background-image: url(../images/header-bg.jpg);
    width: 100vw;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    flex-wrap: wrap;
}

.hero img {
    width: 100%;
    height: 100%;
    max-width: 600px;
}

.hello {
    width: 100%;
    max-width: 800px;
}

.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content {
    max-width: 560px;
    text-align: center;
}

.hero-content p {
    padding-bottom: 20px;
    margin-top: -20px;
}

h1 {
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 80px; /* 100% */
    letter-spacing: -3px;
}

h2 {
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px; /* 116.667% */
    letter-spacing: -1.5px;
}

p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 138.889% */
    letter-spacing: -0.2px;
}

a {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 138.889% */
    letter-spacing: -0.2px;
    text-decoration: none;
    color: #000;
}

h3 {
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 125% */
    letter-spacing: -2px;
}

.primary-button {
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    border-radius: 32px;
    background: #fff;
}


.navbar {
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 20px;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 48px;
}

.feature {
    gap: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-wrap: wrap;
    margin: 80px 0;
}

.feature img {
    width: 100%;
    height: 100%;
    max-width: 440px;
}

.feature-content {
    max-width: 400px;
}

.feature-content p {
    padding-bottom: 20px;
}

.feature-dark {
    background-color: #000;
    color: #fff;
    padding: 80px 0;
}

.feature-dark a {
    color: #fff;
}

.footer {
    display: flex;
    background-color: black;
    gap: 80px;
    justify-content: center;
    padding: 80px;
}

.footer a {
    color: #fff;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.primary-button:hover {
    background-color: #4000ff;
    color: #fff;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* #333 with 50% opacity */
    z-index: 0; /* Adjust if necessary to ensure it overlays the video but stays under the content */
}

.hero-content {
    position: relative;
    z-index: 1; /* Ensure content is above the overlay and video */
}

#heroBackgroundVideo {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1; /* Ensure the video stays behind other content */
    background-size: cover;
}


@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        align-items: center;
    }

    .hero img {
        margin-top: 40px;
    }

    .hero-content {
        text-align: center;
        padding: 40px;
    }

    .feature {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .feature-right {
        flex-direction: column-reverse;
    }

    .feature img {
        margin-bottom: 40px;
    }

    .footer {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        align-items: center;
    }

    h1 {
        font-size: 48px;
        line-height: 48px;
        letter-spacing: -4px;
    }

    h2 {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -2px;
    }

    .feature img {
        width: 50%;
    }

    .navbar .primary-button {
        display: none;
    }
}