@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

/* ── VÁLTOZÓK ─────────────────────────────────── */
:root {
  --navy:        #0B1F3A;
  --navy-dark:   #060f1d;
  --red:         #C8102E;
  --red-hover:   #A50D26;
  --gold:        #E8A020;
  --green:       #2ECC71;
  --white:       #FFFFFF;
  --glass:       rgba(255,255,255,0.06);
  --glass-hover: rgba(200,16,46,0.14);
  --border:      rgba(255,255,255,0.12);
  --border-red:  rgba(200,16,46,0.5);
  --text-muted:  rgba(255,255,255,0.4);
  --text-dim:    rgba(255,255,255,0.2);
  --font-title:  'Oswald', sans-serif;
  --font-body:   'Open Sans', sans-serif;
  --radius:      12px;
  --radius-sm:   7px;
}

/* ── RESET ────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
  font-family: var(--font-body);
  background: var(--navy-dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  outline: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ── TIPOGRÁFIA ───────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.1;
}

h1 { font-size: clamp(40px, 8vw, 64px); letter-spacing: 5px; }
h2 { font-size: clamp(28px, 5vw, 42px); letter-spacing: 3px; }
h3 { font-size: clamp(20px, 3vw, 28px); letter-spacing: 2px; }

p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
}

/* ── LAYOUT ───────────────────────────────────── */
.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── FOOTER ───────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 14px 20px;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 1px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: auto;
}

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