/*
=================================================
 Project: GAS (Latex Gas Mask)
 Version: 1.0.0
 File: video.css
 Description: Fullscreen hero video styles
 Author: latexgasmask.com
 Created: 2025-12-14
=================================================
*/

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

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
}

/* ===============================
   FULLSCREEN VIDEO HERO
   =============================== */

/*
HOW TO CONTROL VIDEO DISPLAY:

1. Fullscreen height:
   height: 100vh;
   - Change to 70vh / 80vh if needed

2. Cropping position:
   object-position: center top;
   - center center
   - center top
   - center bottom

3. Scaling:
   object-fit: cover; (recommended)
*/

.video-hero {
    width: 100vw;
    height: 100vh;          /* Full screen height */
    position: relative;
    overflow: hidden;
}

.video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* Fill screen, crop edges */
    object-position: center center;
}

/* Overlay text (optional) */
.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
}

.video-overlay p {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    text-shadow: 1px 1px 1px #000000;
    text-align: center;
}

/* Main content below video */
.content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* ===============================
   MOBILE OPTIMIZATION
   =============================== */

@media (max-width: 767px) {
    .video-hero {
        height: 70vh;   /* Smaller hero on mobile */
    }

    .video-overlay p {
        font-size: 24px;
    }
}
