/* RESET & BASICS */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #ffffff;

    /* DYNAMIC BACKGROUND: Matches the video's split lighting */
    background: linear-gradient(90deg, #050505 30%, #a8a8a8 100%);

    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* BACKGROUND VIDEO CONFIG */
#bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;

    opacity: 0.6;
    transition: opacity 3s ease-in-out;
}

.video-hidden {
    opacity: 0 !important;
}

/* DARK OVERLAY */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.content-wrapper {
    max-width: 800px;
    padding: 40px;
    z-index: 1;
    animation: fadeIn 2s ease-in;
    width: 100%;
}

.logo-container {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.logo-icon {
    width: 75%;
    max-width: 550px;
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
    transform: translateX(-30px);
}

/* TYPOGRAPHY */
h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 10px;
    line-height: 1;
    width: 100%;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.8);
}

.accent {
    color: #e31b23;
}

h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.8);
}

p.bio {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.8);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #e31b23;
    color: #fff;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(227, 27, 35, 0.1);
    backdrop-filter: blur(5px);
}

.btn:hover {
    background: #e31b23;
    color: #000;
    box-shadow: 0 0 15px rgba(227, 27, 35, 0.5);
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE TWEAKS */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1rem;
    }
    .logo-icon {
        width: 90%;
        transform: translateX(-20px);
    }
}