* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DM Sans', sans-serif;
}

body,
html {
    height: 100%;
}

/* Background Video */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

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

/* Container */
.container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.content {
    max-width: 650px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
}

.logo-wrapper img {
    width: 90px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.logo-text {
    font-size: 30px;
    font-weight: 700;
    color: #2ecc71;
    letter-spacing: 2px;
}

.hero-text {
    margin-bottom: 30px;
}

.hero-text h1 {
    font-size: 44px;
    font-weight: 700;
}

.hero-text p {
    font-size: 22px;
    line-height: 1.6;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-info a {
    color: #7ed6ee;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    color: #2ecc71;
}


/* ===== Mobile ===== */
@media (max-width: 600px) {
    .logo-text {
        font-size: 22px;
    }

    .logo-wrapper img {
        width: 70px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .contact-info p {
        font-size: 15px;
    }
}