/* Main site base styles for Corvanta */

:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --secondary: #f3f4f6;
  --accent: #3b82f6;
  --text: #1f2937;
  --bg: #fff;
  --border-radius: 0.5rem;
  --transition: 0.2s cubic-bezier(0.4,0,0.2,1);
  --max-width: 1200px;
}

/* Large screen container scaling */
@media (min-width: 1400px) {
  :root {
    --max-width: 1600px;
  }
}

@media (min-width: 1920px) {
  :root {
    --max-width: 1800px;
  }
}

/* Accessibility: Skip to Content Link */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 0 0 4px 0;
  font-weight: 500;
  z-index: 9999;
  transition: top 0.2s ease;
}

.skip-to-content:focus {
  top: 0;
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem 3rem 1rem;
}

footer {
  background: var(--secondary);
  color: #6b7280;
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  border-top: 1px solid #e5e7eb;
  font-size: 1rem;
}

@media (max-width: 900px) {
  main {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 600px) {
  main {
    padding: 1rem 0.5rem 2rem 0.5rem;
  }
}
