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

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #fff;
    background-color: #000;
}

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

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-desktop {
    display: block;
}

.video-mobile {
    display: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

/* Main Content */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    padding-bottom: 15vh;
    text-align: center;
}

/* Logo */
.logo-container {
    margin-bottom: 50px;
}

.logo {
    max-width: 1200px;
    width: 70vw;
    height: auto;
}

/* Tagline */
.tagline {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-link img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.social-link:hover {
    transform: scale(1.1);
    opacity: 0.85;
}

/* Address */
.address {
    font-style: normal;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

/* Large desktops */
@media (min-width: 1400px) {
    .logo {
        max-width: 1400px;
        width: 65vw;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .video-desktop {
        display: none;
    }

    .video-mobile {
        display: block;
    }

    .content {
        padding: 30px 15px;
        padding-bottom: 10vh;
        justify-content: center;
    }

    .logo-container {
        margin-bottom: 30px;
    }

    .logo {
        max-width: 400px;
        width: 90%;
    }

    .tagline {
        font-size: 0.75rem;
        letter-spacing: 0.1em;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .social-links {
        gap: 20px;
        margin-bottom: 30px;
    }

    .social-link img {
        height: 32px;
    }

    .address {
        font-size: 0.75rem;
        padding: 0 15px;
        line-height: 1.5;
    }
}

/* Small mobile devices */
@media (max-width: 375px) {
    .logo {
        max-width: 280px;
    }

    .tagline {
        font-size: 0.65rem;
    }

    .social-links {
        gap: 15px;
    }

    .social-link img {
        height: 28px;
    }

    .address {
        font-size: 0.7rem;
    }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .content {
        padding: 20px 15px;
    }

    .logo-container {
        margin-bottom: 15px;
    }

    .logo {
        max-width: 350px;
    }

    .tagline {
        margin-bottom: 15px;
        font-size: 0.75rem;
    }

    .social-links {
        margin-bottom: 15px;
    }

    .social-link img {
        height: 28px;
    }
}
