/* lada_microsite.css – Lada-specific styles.
   Requires gods.css (loaded first). */

/* -------------------------
   Lada colour tokens
-------------------------- */
:root {
  --bg: #0d1a10;
  --spring: #E96C8C;
}

/* -------------------------
   Background layers
-------------------------- */
.bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 10%, rgba(233,108,140,0.09), transparent 50%),
    radial-gradient(circle at 75% 35%, rgba(79,143,90,0.07), transparent 55%),
    linear-gradient(180deg, #0a1a0d, #070d08);
}

.bg-fog {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 40%, rgba(233,108,140,0.07), transparent 55%),
    radial-gradient(circle at 80% 65%, rgba(79,143,90,0.06), transparent 60%);
  filter: blur(20px);
  opacity: 0.85;
  animation: fogDrift 20s ease-in-out infinite;
}

@keyframes fogDrift {
  0%,100% { transform: translate3d(0,0,0) scale(1.02); }
  50%      { transform: translate3d(2%, -1%, 0) scale(1.06); }
}

.bg-petals {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;
}

.bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 45%, rgba(0,0,0,0.5) 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(13, 26, 16, 0.45);
  border: 1px solid rgba(233,108,140,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(233,108,140,0.18);
}

/* -------------------------
   Column page layout
-------------------------- */
.lada-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;
}

/* -------------------------
   Vine SVG ornaments (unique to Lada)
-------------------------- */
.vine {
  position: absolute;
  pointer-events: none;
  top: 0;
  height: 80%;
  width: auto;
  opacity: 0.9;
}

.vine.left  { left: 0;  transform-origin: top left; }
.vine.right { right: 0; transform-origin: top right; }

.vine path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: vineGrow 14s ease-in-out infinite;
}

.vine .vine-stem {
  stroke: rgba(233,108,140,0.75);
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(233,108,140,0.55));
}

.vine .vine-branch {
  stroke: rgba(233,108,140,0.60);
  stroke-width: 1.5;
}

.vine .vine-branch:nth-child(2) { animation-delay: 0.6s; }
.vine .vine-branch:nth-child(3) { animation-delay: 1.2s; }
.vine .vine-branch:nth-child(4) { animation-delay: 1.8s; }

@keyframes vineGrow {
  0%   { stroke-dashoffset: 1000; opacity: 0; }
  8%   { opacity: 1; }
  50%  { stroke-dashoffset: 0; }
  75%  { stroke-dashoffset: 0; opacity: 0.85; }
  95%  { opacity: 0; }
  100% { stroke-dashoffset: 1000; 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(233,108,140,0.40), 0 18px 60px rgba(0,0,0,0.65);
}

.nadpis {
  font-size: clamp(2.5rem, 3vw + 1rem, 3.5rem);
  margin-bottom: 12px;
}

.step-dot {
  background: rgba(255, 118, 152, 0.35);
  box-shadow: 0 0 0 6px rgba(255, 118, 152,0.10);
  border: 1px solid rgba(255, 118, 152, 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(13, 26, 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(233,108,140,0.22);
}

.btn-primary {
  background: rgba(233,108,140,0.20);
  border-color: rgb(233,108,140);
  box-shadow: 0 14px 40px rgba(233,108,140,0.18);
}

.btn-ghost {
  background: rgba(233,108,140,0.10);
  border-color: rgba(233,108,140,0.22);
}

/* -------------------------
   Stat grid
-------------------------- */
.stat-card {
  position: relative;
  border: 1px solid rgba(233, 108, 140, 0.14);
  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(233, 108, 140, 0.55);
  border-left: 1px solid rgba(233, 108, 140, 0.55);
  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(233, 108, 140, 0.55);
  border-right: 1px solid rgba(233, 108, 140, 0.55);
  pointer-events: none;
  z-index: 1;
}

.stat-k {
  color: rgba(233,108,140,0.85);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* -------------------------
   Symbol grid
-------------------------- */
.symbol {
  border: 1px solid rgba(233, 108, 140, 0.14);
  border-radius: 14px;
  padding: 16px;
  min-height: 170px;
  position: relative;
}

.symbol-icon {
  font-size: 2.2rem;
  color: rgba(233,108,140,0.95);
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.45));
}

/* -------------------------
   Timeline
-------------------------- */
.step {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(233, 108, 140, 0.14);
  border-radius: 14px;
  padding: 14px 14px 14px 16px;
}

/* -------------------------
   Bloom interaction (unique to Lada)
-------------------------- */
.bloom-wrap {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.bloom {
  height: min(340px, 38vh);
  border-radius: 18px;
  border: 1px solid rgba(233,108,140,0.18);
  background:
    radial-gradient(circle at 50% 20%, rgba(233,108,140,0.12), transparent 50%),
    radial-gradient(circle at 25% 70%, rgba(79,143,90,0.09), transparent 45%),
    linear-gradient(180deg, rgba(8, 18, 10, 0.95), rgba(15, 28, 18, 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;
}

.bloom-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(233,108,140,0.65),
    rgba(231,183,92,0.20) 55%,
    rgba(79,143,90,0.12) 75%,
    transparent 88%
  );
  opacity: 0;
  transition: opacity 130ms ease;
  pointer-events: none;
}

.bloom.is-blooming .bloom-glow {
  opacity: 1;
}

.bloom-rune {
  font-family: "Cinzel Decorative", "Cinzel", serif;
  font-size: clamp(3.6rem, 7vw, 5rem);
  color: rgba(247,243,236,0.96);
  text-shadow:
    0 0 40px rgba(233,108,140,0.75),
    0 0 80px rgba(231,183,92,0.35),
    0 18px 60px rgba(0,0,0,0.55);
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
  position: relative;
  z-index: 2;
}

.bloom.is-blooming .bloom-rune {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.bloom-help {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(247,243,236,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;
}

/* -------------------------
   Video element
-------------------------- */
.lada-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  background: #000;
}

/* -------------------------
NAVBAR CUSTOM
-------------------------- */
.navbar {
  background-color: rgba(13, 26, 16, 0.75);
}

.navbar.scrolled {
  background-color: rgba(13, 26, 16, 0.25);
}

.nav-links a:hover {
  background: rgba(233,108,140,0.22);
}

/* Mobile nav background */
@media (max-width: 950px) {
  .nav-links {
    background-color: rgba(13, 26, 16, 0.90);
  }
}

/* -------------------------
CONTACT CUSTOM
-------------------------- */
.kontakty-dotaznik textarea:focus {
  box-shadow: 0 0 0 6px rgba(233,108,140,0.16);
}

.kontakty-dotaznik button {
  background: #E96C8C;
  color: #1E2F27;
}

.kontakty-dotaznik button:hover {
  background: #F4A6B8;
}

.form-status {
  color: rgba(233,108,140,0.85);
}

.ornament-frame {
  border: 1px solid rgba(233,108,140,0.45);
  background: rgba(0, 0, 0, 0.35);
  animation: springBorderGlow 4.5s linear infinite;
}

.ornament-frame::before,
.ornament-frame::after {
  border: 1px solid rgba(233,108,140,0.55);
}

@keyframes springBorderGlow {
  0% {
    box-shadow:
      0 0 10px rgba(233,108,140,0.20),
      inset 0 0 10px rgba(233,108,140,0.15);
  }
  50% {
    box-shadow:
      0 0 22px rgba(233,108,140,0.52),
      inset 0 0 16px rgba(233,108,140,0.30);
  }
  100% {
    box-shadow:
      0 0 10px rgba(233,108,140,0.20),
      inset 0 0 10px rgba(233,108,140,0.15);
  }
}