/* ==========================================================================
   Lionheart Digital - Coming Soon
   Color Palette:
   - Primary Blue: #0f4d83
   - Dark Blue: #0a3a64
   - Light Blue: #e8f0f7
   - Charcoal: #2d3436
   - Muted Gold: #8b7355
   - Off-White: #fafafa
   - White: #ffffff
   ========================================================================== */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #2d3436;
  background-color: #fafafa;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for keyboard navigation */
a:focus-visible {
  outline: 2px solid #0f4d83;
  outline-offset: 3px;
  border-radius: 2px;
}

/* Layout */
.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 0;
  background-color: #ffffff;
}

.hero .container {
  max-width: 720px;
}

.hero-logo {
  width: 180px;
  height: auto;
  margin-bottom: 32px;
}

.company-name {
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  color: #0f4d83;
  margin-bottom: 16px;
}

.tagline {
  font-size: 1.25rem;
  font-weight: 500;
  color: #8b7355;
  margin-bottom: 32px;
}

.hero-body {
  font-size: 1.125rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f4d83;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.contact-email {
  font-size: 1rem;
  color: #0f4d83;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.contact-email:hover {
  border-bottom-color: #0f4d83;
}

/* ==========================================================================
   Values Section
   ========================================================================== */

.values {
  padding: 80px 0;
  background-color: #e8f0f7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.value-item {
  text-align: center;
}

.value-item h3 {
  font-size: 1.125rem;
  color: #0f4d83;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.value-item p {
  font-size: 0.9375rem;
  color: #4a5568;
  line-height: 1.7;
}

/* ==========================================================================
   SDVOSB Section
   ========================================================================== */

.sdvosb {
  padding: 60px 0;
  background-color: #ffffff;
}

.sdvosb-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.sdvosb-logo {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}

.sdvosb-link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.sdvosb-link:hover {
  opacity: 0.85;
}

.sdvosb-text {
  text-align: left;
}

.sdvosb-label {
  font-size: 1rem;
  font-weight: 500;
  color: #2d3436;
  margin-bottom: 4px;
}

.sdvosb-cert {
  font-size: 0.875rem;
  color: #4a5568;
}

.cert-value {
  font-family: 'SF Mono', Monaco, 'Courier New', monospace;
  background-color: #f7fafc;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.8125rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  padding: 48px 0;
  background-color: #0f4d83;
  text-align: center;
}

.copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.footer-location {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Tablet */
@media (max-width: 768px) {
  .hero {
    padding: 50px 0;
  }

  .hero-logo {
    width: 100px;
    margin-bottom: 24px;
  }

  .company-name {
    font-size: 2rem;
    letter-spacing: 0.1em;
  }

  .tagline {
    font-size: 1.125rem;
    margin-bottom: 24px;
  }

  .hero-body {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .values {
    padding: 60px 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 400px;
    margin: 0 auto;
  }

  .sdvosb-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .sdvosb-text {
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 40px 0;
  }

  .hero-logo {
    width: 80px;
    margin-bottom: 20px;
  }

  .company-name {
    font-size: 1.5rem;
    letter-spacing: 0.08em;
  }

  .tagline {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .hero-body {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .coming-soon {
    font-size: 0.8125rem;
  }

  .contact-email {
    font-size: 0.9375rem;
  }

  .values {
    padding: 48px 0;
  }

  .values-grid {
    gap: 32px;
  }

  .value-item h3 {
    font-size: 1rem;
  }

  .value-item p {
    font-size: 0.875rem;
  }

  .sdvosb {
    padding: 48px 0;
  }

  .sdvosb-logo {
    width: 64px;
  }

  .footer {
    padding: 36px 0;
  }
}
