@font-face {
    font-family: 'GTek Technology';
    src: url('./gtek-technology-font/GTek-Technology.ttf') format('truetype');
    font-display: swap;
}

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

body {
    height: 100vh;
    overflow: hidden;
    background-color: black;
}

.video-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;  /* Full width on mobile */
    height: 100vh;
    z-index: -1;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.content {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    z-index: 1;
    pointer-events: none; /* Allow clicking through to video */
}

.logo {
    margin-top: 5vh;  /* Reduced from 10vh to move it higher */
}

.logo img {
    max-width: 85vw;  /* Responsive width for mobile */
    height: auto;
}

.title {
    margin-bottom: 5vh;
    position: absolute; /* Change from relative to absolute */
    bottom: 0;  /* Position at bottom */
    width: 100%;
    z-index: 2;
}

.title h1 {
    font-family: 'GTek Technology', 'Arial', sans-serif;
    color: white;
    font-size: 2rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: lowercase;
    letter-spacing: 0.3em;
    opacity: 1;
    pointer-events: auto; /* Re-enable clicking for text */
}

/* Tablet (iPad) */
@media screen and (min-width: 768px) {
    .video-container {
        width: 1000px;
        height: 562px;
    }
    
    .logo img {
        max-width: 400px;
    }
    
    .title h1 {
        font-size: 3rem;
    }
}

/* Desktop */
@media screen and (min-width: 1024px) {
    .video-container {
        width: 1600px;
        height: 900px;
    }
    
    .logo img {
        max-width: 600px;
    }
    
    .title h1 {
        font-size: 4rem;
    }
}

/* Large Desktop */
@media screen and (min-width: 1440px) {
    .logo img {
        max-width: 700px;
    }
    
    .title h1 {
        font-size: 5rem;
    }
}

/* Handle very small height screens */
@media screen and (max-height: 600px) {
    .logo {
        margin-top: 2vh;
    }
    
    .title {
        margin-bottom: 2vh;
    }
    
    .logo img {
        max-width: 300px;
    }
    
    .title h1 {
        font-size: 2rem;
    }
} 