.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background-color: #000;
    min-height: 86vh
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(300px);
    animation: heroTextIntro 1.8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
    animation-delay: 1s;
    padding-top: 50px;
    gap: 40px;
}

@keyframes heroTextIntro {
    0% {
        opacity: 0;
        transform: translateY(300px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero .container {
    max-width: 620px; 
}

.hero h1 {
    font-family: var(--font1);
    font-weight: var(--semi-bold);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.hero p {
    font-family: var(--font2);
    font-weight: 500;
    letter-spacing: 1px;
}

.hero .cta {
    border: 2px solid var(--white);
    border-radius: 40px;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    font-family: var(--font1);
    font-size: 2.08rem;     
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1.8rem;     
    padding: 13px 40px;
    max-width: 460px;
}

