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

body, html {
    height: 100%;
    width: 100%;
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow: hidden;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-color: #000;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Dark overlay to ensure logo and strip pop */
.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Main Content Overlay */
.content-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

/* Centered Logo */
.center-logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    animation: fadeIn 1s ease-out forwards;
}

.logo {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bottom Strip */
.bottom-strip {
    width: 100%;
    display: flex;
    flex-direction: column;
    animation: slideUp 1s ease-out forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.strip-content {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* Construction message */
.construction {
    background-color: black;
    width: 100%;
    padding-block: .4rem;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Info Details */
.info-details {
    display: flex;
    gap: 2rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #111;
    font-weight: 500;
}

.info-details a {
    color: #111;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.info-details a:hover {
    color: #000;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #fff;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background-color: #f0f0f0;
}

.social-links img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Mid-range: icons wrap but we still want everything centered */
@media (min-width: 871px) and (max-width: 1120px) {
    .strip-content {
        justify-content: center;
        text-align: center;
        gap: 1.5rem;
    }

    .info-details {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Responsive */
@media (max-width: 870px) {
    .strip-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .info-details {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.9rem;
    }

    .logo {
        max-width: 220px;
    }
}
