/* Base styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    font-family: 'Futura PT', Arial, sans-serif;
    color: white;
    background-color: #000;
}

/* Video Background */
.fullscreen-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

.fullscreen-bg__video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

/* Content positioning */
.content {
    position: relative;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.content h1 {
    font-weight: normal;
    font-size: 4rem;
    margin-bottom: 20px;
}

/* Navigation */
.main-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    margin: 0 15px;
}

.home-nav {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.home-nav a {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
}

/* Social media buttons */
.social-buttons {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.social-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.social-buttons a:hover {
    transform: translateY(-3px);
    opacity: 1;
}

.social-buttons svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* For mobile devices */
@media (max-width: 768px) {
    .social-buttons {
        top: 15px;
        right: 15px;
        gap: 12px;
    }
    
    .social-buttons a {
        width: 20px;
        height: 20px;
    }
    
    .social-buttons svg {
        width: 20px;
        height: 20px;
    }
    
    .content h1 {
        font-size: 3rem;
    }
}
