/* OG2 — "hamarosan" váróoldal.
   Önálló statikus oldal (Cloudflare Pages), de a webFrontend OGM2 design
   rendszerének tokenjeivel: sötét bronz/arany paletta, Cinzel display font.
   A tokenek itt szándékosan bemásolt (nem importált) részhalmazok — ez a
   könyvtár nem része a webFrontend build-jének, nincs közös pipeline. */

/* ---------------------------------------------------------------- fonts */
/* Ugyanaz a Fontsource CDN, amit a webFrontend használ (fonts.css). */
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/cinzel@latest/latin-400-normal.woff2)
    format('woff2');
}
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/cinzel@latest/latin-600-normal.woff2)
    format('woff2');
}
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/cinzel@latest/latin-700-normal.woff2)
    format('woff2');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/noto-sans@latest/latin-400-normal.woff2)
    format('woff2');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/noto-sans@latest/latin-600-normal.woff2)
    format('woff2');
}

/* --------------------------------------------------------------- tokens */
:root {
  --base-black: #0c0706;
  --base-850: #201310;
  --base-800: #291815;
  --base-700: #33201b;
  --base-600: #4a3129;

  --gold-100: #f3e3bd;
  --gold-200: #e8cf94;
  --gold-300: #d9b96f;
  --gold-400: #c9a35a;
  --gold-500: #b3893f;
  --gold-600: #8f6b2e;

  --text-100: #f2e9dd;
  --text-300: #b7a596;
  --text-400: #8f7c70;

  --surface-app: linear-gradient(180deg, #170d0b 0%, #0e0807 100%);
  --surface-panel: var(--base-850);
  --border-subtle: var(--base-700);

  --font-display: 'Cinzel', 'Times New Roman', serif;
  --font-body: 'Noto Sans', 'Segoe UI', Arial, sans-serif;

  --tracking-wide: 0.06em;
  --tracking-widest: 0.2em;

  --hero-glow: radial-gradient(80% 100% at 50% 0%, rgba(201, 163, 90, 0.08), transparent 60%);
  --shadow-glow-gold: 0 0 12px rgba(217, 165, 58, 0.45);

  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-base: 180ms;
}

/* ----------------------------------------------------------------- base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--surface-app);
  background-repeat: no-repeat;
  color: var(--text-100);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ----------------------------------------------------------------- page */
.page {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 48px clamp(16px, 5vw, 40px) 24px;
  overflow: hidden;
}

/* A logó mögötti arany fény — a webFrontend hero-glow-ja, lassú lüktetéssel. */
.glow {
  position: absolute;
  inset: 0;
  background: var(--hero-glow);
  pointer-events: none;
}

.glow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(760px, 130vw);
  aspect-ratio: 1;
  transform: translate(-50%, -62%);
  background: radial-gradient(circle, rgba(217, 165, 58, 0.16), transparent 62%);
  animation: pulse 6s var(--ease-standard) infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.75;
    transform: translate(-50%, -62%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -62%) scale(1.06);
  }
}

.hero {
  position: relative;
  text-align: center;
  max-width: 640px;
}

.logo {
  width: clamp(120px, 22vw, 168px);
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 22px rgba(217, 165, 58, 0.35));
}

.eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold-500);
}

.title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 11vw, 88px);
  line-height: 1.05;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--gold-100) 0%, var(--gold-400) 55%, var(--gold-600) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 38px rgba(217, 165, 58, 0.18);
}

/* Arany elválasztó rombusszal — a nyitóoldal section-jelöléseinek rokona. */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 22px auto 20px;
  max-width: 320px;
}

.ornament-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, transparent, var(--gold-600), transparent);
}

.ornament-diamond {
  width: 7px;
  height: 7px;
  flex: none;
  transform: rotate(45deg);
  background: var(--gold-400);
  box-shadow: var(--shadow-glow-gold);
}

.lead {
  margin: 0 auto;
  max-width: 460px;
  color: var(--text-300);
}

/* -------------------------------------------------------------- socials */
.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-300);
}

.social-icon {
  width: 24px;
  height: 24px;
  padding: 15px;
  box-sizing: content-box;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: var(--surface-panel);
  color: var(--gold-300);
  transition:
    border-color var(--duration-base) var(--ease-standard),
    background-color var(--duration-base) var(--ease-standard),
    color var(--duration-base) var(--ease-standard),
    box-shadow var(--duration-base) var(--ease-standard),
    transform var(--duration-base) var(--ease-standard);
}

.social-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  transition: color var(--duration-base) var(--ease-standard);
}

.social:hover .social-icon,
.social:focus-visible .social-icon {
  border-color: var(--gold-500);
  background: var(--base-800);
  color: var(--gold-100);
  box-shadow: var(--shadow-glow-gold);
  transform: translateY(-2px);
}

.social:hover .social-label,
.social:focus-visible .social-label {
  color: var(--gold-200);
}

.social:focus-visible {
  outline: none;
}

.social:focus-visible .social-icon {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
}

/* ---------------------------------------------------------------- footer */
.foot {
  position: relative;
  font-size: 12px;
  color: var(--text-400);
}

@media (max-width: 480px) {
  .socials {
    gap: 12px;
  }

  .social-icon {
    padding: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .glow::after {
    animation: none;
  }

  .social-icon,
  .social-label {
    transition: none;
  }

  .social:hover .social-icon,
  .social:focus-visible .social-icon {
    transform: none;
  }
}
