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

body, html {
    height: 100%;
    font-family: 'Open Sans', sans-serif;
    color: white;
    text-align: center;
    overflow: hidden;
    background-color: transparent;
}

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

/* Overlay Content */
.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    background-color: rgba(0, 0, 0, 0.7); /* 70% black */
    padding: 2em;
    border-radius: 10px;
}

.logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #e01b24;
    margin-bottom: 1em;
}

h1 {
    font-size: 3em;
    font-weight: 900;
    margin-bottom: 0.5em;
}

p {
    font-size: 1.2em;
    margin-bottom: 1.5em;
}

.social-links a {
    display: inline-block;
    margin: 0 0.5em;
    color: #e01b24;
    font-size: 2em; /* Bigger icons */
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
    transform: scale(1.2);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    /* VIDEO FIX for mobile */
    #bg-video {
        object-fit: contain;
        width: 100%;      /* ADDED */
        height: 100%;     /* ADDED */
        background-color: black; /* fallback behind letterboxing */
    }

    .overlay {
        width: 90%;
        padding: 1em;
    }

    .logo {
        width: 100px;
        height: 100px;
    }

    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }

    .social-links a {
        font-size: 1.8em;
        margin: 0 0.4em;
    }
}
