@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    font-family: "Inter", sans-serif;
    color: white;
    overflow: hidden;
}

.container {
    max-width: 1320px;
    display: flex;
    flex: 1;
}

.row {
    width: 100vw;
}

.main-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: relative;
    height: 100vh;
    height: 100dvh;  
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 60px;
    padding-bottom: 100px;
    background: rgba(0, 0, 0, 0.45);
}

.logo {
    width: 140px;
}

.content {
    display: flex;
    flex-direction: column;
}

h1 {
    font-size: 112px;
    font-weight: 600;
    line-height: 0.85;
    margin-bottom: 64px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
    max-width: 860px;
}

.text {
    align-self: flex-end;
    max-width: 650px;
    display: flex;
    align-items: flex-end;
}

p {
    font-size: 18px;
    line-height: 120%;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 0.4s forwards;
    margin-right: 24px;
}

.cta {
    background: white;
    width: 200px;
    height: 54px;
    color: #000000 !important;
    font-weight: 700;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.6s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 0.8s forwards;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta:hover {
    background: #e5e5e5;
    text-decoration: none;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 72px;
    }

    .text {
        flex-direction: column;
        max-width: 75%;
    }

    p {
        margin-right: 0;
        margin-bottom: 24px;
    }
}

@media (max-width: 576px) {
    .overlay {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    h1 {
        font-size: 56px;
        max-width: 320px;
    }

    .cta {
        width: 248px;
    }

    p {
        width: 248px;
    }
}