/* TMPL Labs - Minimal Landing Page Styles */

/* CSS Variables */
:root {
  --color-white: #ffffff;
  --brand-primary: #1b75bb;
  --brand-secondary: #2c3e50;
  --font-weight-bold: 700;
  --space-5: 20px;
  --space-12: 48px;
}

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

html, body {
  height: 100%;
  overflow: hidden; /* Prevent scrolling */
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--brand-primary);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  padding: 0 var(--space-5);
  overflow: hidden;
}

/* Background Video */
.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

/* Hero Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 0;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 var(--space-5);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo */
.hero-logo {
  height: 280px;
  margin-bottom: var(--space-12);
  max-width: 100%;
  width: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Tagline */
.hero-tagline {
  font-size: clamp(0.9rem, 4vw, 1.75rem);
  font-weight: var(--font-weight-bold);
  color: var(--brand-secondary);
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 24px;
}

/* Coming Soon Subtitle */
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 500;
  color: var(--brand-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.9;
  }
  50% {
    opacity: 0.6;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  /* Keep video visible on mobile */
  .hero video {
    display: block;
  }
  
  /* Slightly increase overlay opacity on mobile for better text readability */
  .hero-overlay {
    background: rgba(255, 255, 255, 0.92);
  }
  
  .hero-logo {
    height: 220px;
    margin-bottom: 20px;
  }
  
  .hero-tagline {
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 0 16px;
  }
  
  .hero-logo {
    height: 180px;
    margin-bottom: 16px;
  }
  
  .hero-tagline {
    line-height: 1.4;
    padding: 0 8px;
  }
}