/* stribog_microsite.css – Stribog-specific styles.
   Requires gods.css (loaded first). */

/* -------------------------
   Stribog colour tokens
-------------------------- */
:root {
  --bg: #070a10;
  --wind: #9ab8d8;
}

/* -------------------------
   Background layers
-------------------------- */
.bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 8%, rgba(154, 184, 216, 0.10), transparent 50%),
    radial-gradient(circle at 15% 45%, rgba(100, 148, 192, 0.07), transparent 55%),
    radial-gradient(circle at 85% 55%, rgba(154, 184, 216, 0.06), transparent 50%),
    linear-gradient(180deg, #060910, #040608);
}

.bg-fog {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 30% 35%, rgba(154, 184, 216, 0.07), transparent 55%),
    radial-gradient(circle at 75% 60%, rgba(130, 168, 210, 0.06), transparent 60%);
  filter: blur(22px);
  opacity: 0.85;
  animation: fogDrift 24s ease-in-out infinite;
}

@keyframes fogDrift {
  0%,100% { transform: translate3d(0, 0, 0) scale(1.02); }
  33%     { transform: translate3d(2.5%, -0.8%, 0) scale(1.05); }
  66%     { transform: translate3d(-1.5%, 1.2%, 0) scale(1.04); }
}

.bg-wind {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.80;
}

.bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 45%, rgba(0,0,0,0.55) 100%);
}

/* -------------------------
   Top chips
-------------------------- */
.rune-chip {
  font-family: "Cinzel", serif;
  letter-spacing: 0.22em;
  font-size: 0.85rem;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7, 10, 16, 0.45);
  border: 1px solid rgba(154, 184, 216, 0.3);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
  backdrop-filter: blur(14px);
}

.rune-chip.subtle {
  letter-spacing: 0.08em;
  color: var(--muted);
  border-color: rgba(154, 184, 216, 0.18);
}

/* -------------------------
   Column page layout
-------------------------- */
.stribog-page {
  position: relative;
  z-index: 5;
}

.landing {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 0 0 40px 0;
  padding-top: var(--nav-h);
  overflow: hidden;
  position: relative;
}

/* -------------------------
   Wind spiral SVG ornaments (unique to Stribog)
-------------------------- */
.windline {
  position: absolute;
  pointer-events: none;
  top: 0;
  height: 80%;
  width: auto;
  opacity: 0.85;
}

.windline.left  { left: 0;  transform-origin: top left; }
.windline.right { right: 0; transform-origin: top right; }

.windline path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1100;
  stroke-dashoffset: 1100;
  animation: windflow 12s ease-in-out infinite;
}

.windline .wind-stream {
  stroke: rgba(154, 184, 216, 0.65);
  stroke-width: 1.8;
  filter: drop-shadow(0 0 6px rgba(154, 184, 216, 0.45));
}

.windline .wind-curl {
  stroke: rgba(196, 216, 238, 0.50);
  stroke-width: 1.2;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
}

.windline .wind-curl:nth-child(2) { animation-delay: 0.8s; }
.windline .wind-curl:nth-child(3) { animation-delay: 1.6s; }
.windline .wind-curl:nth-child(4) { animation-delay: 2.4s; }

@keyframes windflow {
  0%   { stroke-dashoffset: 1100; opacity: 0; }
  6%   { opacity: 1; }
  48%  { stroke-dashoffset: 0; }
  70%  { stroke-dashoffset: 0; opacity: 0.80; }
  92%  { opacity: 0; }
  100% { stroke-dashoffset: 1100; opacity: 0; }
}

.landing-inner {
  width: var(--maxw);
  max-width: 1100px;
  text-align: center;
  padding-top: 70px;
  position: relative;
  z-index: 2;
}

.landing-title {
  font-family: "Cinzel Decorative", "Cinzel", serif;
  font-size: clamp(4rem, 9vw, 7rem);
  letter-spacing: 0.02em;
  text-shadow:
    0 0 80px rgba(154, 184, 216, 0.45),
    0 0 160px rgba(100, 148, 192, 0.22),
    0 18px 60px rgba(0,0,0,0.70);
}

.nadpis {
  font-size: clamp(2.2rem, 2.4vw + 1rem, 3.2rem);
  margin-bottom: 12px;
}

.step-dot {
  background: rgba(154, 184, 216, 0.35);
  box-shadow: 0 0 0 6px rgba(154, 184, 216, 0.10);
  border: 1px solid rgba(154, 184, 216, 0.25);
}

/* -------------------------
   Buttons
-------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(7, 10, 16, 0.25);
  color: var(--text);
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(154, 184, 216, 0.22);
}

.btn-primary {
  background: rgba(154, 184, 216, 0.18);
  border-color: rgb(154, 184, 216);
  box-shadow: 0 14px 40px rgba(154, 184, 216, 0.16);
}

.btn-ghost {
  background: rgba(154, 184, 216, 0.08);
  border-color: rgba(154, 184, 216, 0.22);
}

/* -------------------------
   Stat grid
-------------------------- */
.stat-card {
  position: relative;
  border: 1px solid rgba(154, 184, 216, 0.12);
  border-radius: 14px;
  padding: 14px;
}

/* Top-left corner accent */
.boxik::before {
  content: '';
  position: absolute;
  top: -7px;
  left: -7px;
  width: 30px;
  height: 30px;
  border-top: 1px solid rgba(154, 184, 216, 0.50);
  border-left: 1px solid rgba(154, 184, 216, 0.50);
  pointer-events: none;
  z-index: 1;
}

/* Bottom-right corner accent */
.boxik::after {
  content: '';
  position: absolute;
  bottom: -7px;
  right: -7px;
  width: 30px;
  height: 30px;
  border-bottom: 1px solid rgba(154, 184, 216, 0.50);
  border-right: 1px solid rgba(154, 184, 216, 0.50);
  pointer-events: none;
  z-index: 1;
}

.stat-k {
  color: rgba(154, 184, 216, 0.85);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* -------------------------
   Symbol grid
-------------------------- */
.symbol {
  border: 1px solid rgba(154, 184, 216, 0.12);
  border-radius: 14px;
  padding: 16px;
  min-height: 170px;
  position: relative;
}

/* -------------------------
   Timeline
-------------------------- */
.step {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(154, 184, 216, 0.12);
  border-radius: 14px;
  padding: 14px 14px 14px 16px;
}

/* -------------------------
   Gust / wind vortex interaction (unique to Stribog)
-------------------------- */
.gust-wrap {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.gust {
  height: min(340px, 38vh);
  border-radius: 18px;
  border: 1px solid rgba(154, 184, 216, 0.18);
  background:
    radial-gradient(circle at 50% 50%, rgba(100, 148, 192, 0.10), transparent 55%),
    radial-gradient(circle at 25% 20%, rgba(154, 184, 216, 0.08), transparent 45%),
    linear-gradient(180deg, rgba(5, 8, 14, 0.96), rgba(12, 20, 35, 0.45));
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  cursor: pointer;
  user-select: none;
  touch-action: none;
}

/* Radial gradient overlay that reveals when gust is active */
.gust-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(154, 184, 216, 0.65),
    rgba(100, 148, 192, 0.22) 55%,
    rgba(154, 184, 216, 0.10) 75%,
    transparent 88%
  );
  opacity: 0;
  transition: opacity 160ms ease;
  pointer-events: none;
  z-index: 1;
}

.gust.is-gusting .gust-glow {
  opacity: 1;
}

.gust-rune {
  font-family: "Cinzel Decorative", "Cinzel", serif;
  font-size: clamp(3.6rem, 7vw, 5rem);
  color: rgba(196, 220, 244, 0.95);
  text-shadow:
    0 0 40px rgba(154, 184, 216, 0.65),
    0 0 80px rgba(100, 148, 192, 0.35),
    0 18px 60px rgba(0,0,0,0.65);
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  transition: opacity 450ms var(--ease-out), transform 450ms var(--ease-out);
  position: relative;
  z-index: 2;
}

.gust.is-gusting .gust-rune {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gust-help {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(233,224,212,0.75);
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
  white-space: nowrap;
  z-index: 2;
}

/* -------------------------
   Video element
-------------------------- */
.stribog-video {
  width: 70%;
  height: auto;
  display: block;
  border-radius: 18px;
  background: #000;
}

/* -------------------------
NAVBAR CUSTOM
-------------------------- */
.navbar {
  background-color: rgba(7, 10, 16, 0.75);
}

.navbar.scrolled {
  background-color: rgba(7, 10, 16, 0.25);
}

.nav-links a:hover {
  background: rgba(154, 184, 216, 0.22);
}

/* Mobile nav background */
@media (max-width: 950px) {
  .nav-links {
    background-color: rgba(7, 10, 16, 0.90);
  }
}

/* -------------------------
CONTACT CUSTOM
-------------------------- */
.kontakty-dotaznik textarea:focus {
  box-shadow: 0 0 0 6px rgba(154, 184, 216, 0.16);
}

.kontakty-dotaznik button {
  background: #9ab8d8;
  color: #07101e;
}

.kontakty-dotaznik button:hover {
  background: #c4d8ee;
}

.form-status {
  color: rgba(154, 184, 216, 0.85);
}

.ornament-frame {
  border: 1px solid rgba(154, 184, 216, 0.45);
  background: rgba(0, 0, 0, 0.35);
  animation: windBorderGlow 4.5s linear infinite;
}

.ornament-frame::before,
.ornament-frame::after {
  border: 1px solid rgba(154, 184, 216, 0.50);
}

@keyframes windBorderGlow {
  0% {
    box-shadow:
      0 0 10px rgba(154, 184, 216, 0.20),
      inset 0 0 10px rgba(154, 184, 216, 0.15);
  }
  50% {
    box-shadow:
      0 0 22px rgba(154, 184, 216, 0.50),
      inset 0 0 16px rgba(154, 184, 216, 0.28);
  }
  100% {
    box-shadow:
      0 0 10px rgba(154, 184, 216, 0.20),
      inset 0 0 10px rgba(154, 184, 216, 0.15);
  }
}
