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

body, html {
    width: 100%;
    height: 100%;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: transparent; /* Changed from #000 */
    overflow-x: hidden;
}

/* Hero Container */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Video Handling */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Changed from -1 to 0 */
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This keeps the video full-screen without stretching */
}

.overlay-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15); 
    z-index: 1; /* Layer 1 */
}

/* Content Layout */
.content-overlay {
    position: relative; /* Add this to ensure z-index works */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    z-index: 2; /* Set higher than the video */
}

.main-logo {
    max-width: 288px;
    width: 43%;
    margin: auto;

}

/* Bottom Information Row */
.hero-footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 12px;
    font-family: monotype-grotesque, sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.3px;
    opacity: 0.9;
}

.hero-footer .footer-item {
    flex: 1;
}

.hero-footer .footer-item:nth-child(1) {
    text-align: left;
}

.hero-footer .footer-item:nth-child(2) {
    text-align: center;
}

.hero-footer .footer-item:nth-child(3) {
    text-align: right;
}

.hero-footer a {
    color: inherit;
    text-decoration: none;
    pointer-events: auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-footer {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
    
    .main-logo {
        width: 72%;
    }
}