/* ==========================================================================
   1. Reset & Global Variables
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* ==========================================================================
   2. Hero Section with Video Environment
   ========================================================================== */
.hero-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 75vh;
    overflow: hidden; /* Keeps video cropped inside bounds */
    
    /* Yellow Horizontal Accent Line from the design */
    border-bottom: 4px solid #fbd604; 
}

/* The Looping Video Base Layer */
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
     filter: grayscale(100%);
    object-fit: cover; /* Functions like background-size: cover */
    z-index: 1;
}

/* The Tint Overlay Layer */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35); /* Tints video to maximize white text contrast */
    z-index: 2;
}

/* Foreground UI Container */
.hero-content {
    position: relative;
    z-index: 3; /* Sits safely on top of video and tint layer */
    text-align: center;
    padding: 20px;
}

/* ==========================================================================
   3. Component Typography & Branding
   ========================================================================== */
.logo-container {
    margin-bottom: 30px;
}

.main-logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    display: inline-block;
}

.status-text {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   4. Footer Layout
   ========================================================================== */
.site-footer {
    background-color: #000000;
    padding: 45px 60px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.copyright {
    font-size: 0.85rem;
    color: #888888; /* Secondary dim gray text */
}

/* ==========================================================================
   5. Mobile and Tablet Breakpoints
   ========================================================================== */
@media (max-width: 768px) {
    .main-logo {
        max-width: 320px;
    }

    .status-text {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .site-footer {
        padding: 30px 20px;
        text-align: center;
    }
}