/* Basic Reset & Body Styling */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* Prevents scrollbars if video slightly overflows */
    font-family: Arial, sans-serif; /* Basic font */
    color: white; /* Default text color, good for overlays */
}

/* Video Background Styling */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); /* Fallback gradient */
}

/* Background video styling for fullscreen, aspect-ratio aware fill */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    background: black;
    pointer-events: none;
    /* Center the video naturally, no extra zoom */
}

.video-background iframe {
    display: none;
}

/* Overlay Text Styling */
.overlay-text {
    position: fixed;
    top: 4vh;
    left: 4vw;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    z-index: 1;
}

.contact-link {
    position: fixed;
    top: 4vh;
    right: 4vw;
    color: white;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    letter-spacing: 0.15em;
    text-decoration: none;
    z-index: 2;
    transition: opacity 0.2s;
    opacity: 0.85;
}
.contact-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.bottom-description {
    position: fixed;
    left: 4vw;
    bottom: 4vh;
    max-width: 45vw; /* Default for desktop */
    color: white;
    font-size: 1.15rem;
    line-height: 1.7;
    text-align: left;
    z-index: 2;
    font-family: Arial, sans-serif;
    padding-right: 1vw; /* Initial padding to keep text off edge */
}

.locations {
    position: fixed;
    right: 4vw;
    bottom: 4vh;
    color: white;
    font-size: 1.1rem;
    text-align: right;
    z-index: 2;
    font-family: Arial, sans-serif;
    padding-left: 1vw; /* Initial padding to keep text off edge */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .overlay-text {
        font-size: 2rem;
        top: 2vh;
        left: 3vw;
    }
    .contact-link {
        top: 2vh;
        right: 3vw;
        font-size: 0.9rem;
    }
    .bottom-description {
        left: 3vw;
        bottom: 3vh;
        max-width: 50vw; /* Adjust width to leave room for locations */
        font-size: 1rem;
        line-height: 1.6;
        padding-right: 2vw; /* Ensure separation */
    }
    .locations {
        right: 3vw;
        bottom: 3vh;
        font-size: 0.9rem;
        max-width: 40vw; /* Ensure locations fits on right */
        padding-left: 2vw; /* Ensure separation */
    }
    .video-background iframe {
        transform: scale(2.2); /* Extra zoom for mobile to fill screen */
    }
}

@media (max-width: 480px) {
    .overlay-text {
        font-size: 1.8rem;
        top: 2vh;
        left: 2vw;
    }
    .contact-link {
        top: 2vh;
        right: 2vw;
        font-size: 0.8rem;
    }
    .bottom-description {
        left: 2vw;
        bottom: 2vh;
        max-width: 45vw; /* Further constrain width */
        font-size: 0.9rem;
        line-height: 1.5;
        padding-right: 2vw;
    }
    .locations {
        right: 2vw;
        bottom: 2vh;
        font-size: 0.8rem;
        max-width: 45vw; /* Ensure it fits on very small screens */
        padding-left: 2vw;
    }
}