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

body,
html {
    height: 100%;
    width: 100%;
    font-family: 'Nunito Sans', sans-serif;
    overflow: hidden;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    padding: 0 1rem;
    width: 96vw;
}

.content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    margin-bottom: 2rem;
    line-height: 1.15;
    opacity: 0.8;
}

.content p.info {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #ddd;
    opacity: 0.7;
}

.content a {
    color: #fff;
    text-decoration: underline;
}

.content p.connect {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.7;
}

.logo {
    width: 260px;
    max-width: 70%;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.4));
}

.separator {
    width: 20vw;
    height: 0.5px;
    background: #ffffff;
    opacity: 0.5;
    margin: 1.5rem auto;
}

@media (max-width: 768px) {
    .content h1 {
        font-size: 2.4rem;
    }

    .content h2 {
        font-size: 1.8rem;
    }

    .content p {
        font-size: 1rem;
    }

    .logo {
        width: 180px;
        margin-bottom: 1.5rem;
    }

    .separator {
        width: 40vw;
        height: 0.5px;
        background: #ffffff;
        opacity: 0.5;
        margin: 1.5rem auto;
    }
}