/* 
  ⚔️ VOTAN - NORDIC TECH THEME ⚔️
  Pure CSS Variables & Utilities
*/

:root {
  /* Branding Colors */
  --color-void-black: #0f172a;
  /* Deep Slate / Void */
  --color-void-dark: #020617;
  /* Almost Black */
  --color-glacial-cyan: #22d3ee;
  /* Primary Action / Glow */
  --color-glacial-dim: #0891b2;
  /* Muted Cyan */
  --color-mythic-gold: #d97706;
  /* Accents / Royal */
  --color-mist-gray: #94a3b8;
  /* Text Secondary */
  --color-pure-white: #f8fafc;
  /* Text Primary */

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  /* Typography */
  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
}

/* Base Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--color-void-black);
  color: var(--color-pure-white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-pure-white);
  line-height: 1.2;
}

.text-cyan {
  color: var(--color-glacial-cyan);
}

.text-gold {
  color: var(--color-mythic-gold);
}

.text-mist {
  color: var(--color-mist-gray);
}

/* Layout Utilities (Flex/Grid) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.hero-section {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-xl) 0;
  background: radial-gradient(circle at top, #1e293b 0%, var(--color-void-black) 70%);
}

.grid-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

/* Components: Cards */
.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(34, 211, 238, 0.1);
  padding: var(--space-md);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--color-glacial-cyan);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.1);
}

/* Components: Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: transparent;
  border: 2px solid var(--color-glacial-cyan);
  color: var(--color-glacial-cyan);
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.2);
}

.btn-primary:hover {
  background: var(--color-glacial-cyan);
  color: var(--color-void-black);
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.6);
}

.btn-gold {
  border: 2px solid var(--color-mythic-gold);
  color: var(--color-mythic-gold);
}


/* Responsive/Mobile Styles */
@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-md: 1.5rem;
  }

  h1 {
    font-size: 2rem !important;
    /* Reduction from 3.5rem */
  }

  h2 {
    font-size: 1.5rem !important;
  }

  .hero-section {
    padding: var(--space-lg) 0;
    min-height: auto;
  }

  .container {
    padding: 0 1.5rem;
    /* More horizontal padding */
  }

  /* Stack header elements */
  header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem !important;
  }

  /* Make buttons stack properly */
  .hero-section>.container>div:last-child>div {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }

  .card {
    padding: 1.5rem;
  }
}