/* ══════════════════════════════════════════════════════════════
   VORASENSE PAGE STYLES — Base & Global
   
   Global layout, container, typography, and site structure.
   Inherited by all pages. Design tokens from vorasense-design-system.css
   
   Related files:
   - design-system.css (design tokens)
   - components.css (reusable components)
   - animations.css (centralized keyframes)
   - responsive.css (media queries)
   - accessibility.css (focus, reduced-motion)
   ══════════════════════════════════════════════════════════════ */

/* Site Structure */
.vs-site {
  position: relative;
  min-height: 100vh;
  background: var(--vs-void);
  color: var(--vs-text);
  font-family: 'Source Sans 3', -apple-system, system-ui, sans-serif;
  font-size: var(--vs-text-base);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Atmospheric Background Effect */
.vs-atmosphere {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 165, 116, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(230, 154, 71, 0.015) 0%, transparent 50%),
    linear-gradient(180deg, rgba(26, 22, 20, 0.3) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.vs-content {
  position: relative;
  z-index: 1;
  padding: var(--vs-space-2xl) 0 var(--vs-space-4xl);
  min-height: 70vh;
}

.vs-container {
  width: min(1240px, 100% - var(--vs-space-xl) * 2);
  margin: 0 auto;
}

.vs-surface {
  position: relative;
}

/* Typography Hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Fraunces', 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--vs-text);
  margin: 0 0 var(--vs-space-lg);
}

h1 {
  font-size: var(--vs-text-3xl);
  font-weight: 700;
}

h2 {
  font-size: var(--vs-text-2xl);
  margin-bottom: var(--vs-space-xl);
}

h3 {
  font-size: var(--vs-text-xl);
}

h4 {
  font-size: var(--vs-text-lg);
}

p {
  margin: 0 0 var(--vs-space-md);
  color: var(--vs-text-secondary);
}

a {
  color: var(--vs-accent);
  text-decoration: none;
  transition: color var(--vs-transition);
}

a:hover {
  color: var(--vs-accent-bright);
}
