:root {
  --nav-height: 72px;
}

#logo.section {
  padding: 0;
}

#logo {
  min-height: calc(100vh - var(--nav-height));
  height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  background-image:
    radial-gradient(600px 300px at 15% 10%, rgba(255, 221, 148, 0.55), rgba(255, 221, 148, 0) 60%),
    linear-gradient(125deg, rgba(25, 20, 14, 0.65), rgba(25, 20, 14, 0.1)),
    url(../assets/img/bg3.jpg);
  background-size: cover;
  background-position: 50% 35%;
  background-blend-mode: screen, multiply, normal;
  position: relative;
  isolation: isolate;
}

#logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 260px at 80% 15%, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0) 60%),
    radial-gradient(520px 280px at 20% 85%, rgba(255, 191, 106, 0.2), rgba(255, 191, 106, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

#logo .container {
  position: relative;
  z-index: 2;
}

#logo img {
  max-width: min(90vw, 620px);
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.35));
  opacity: 0;
  transform: translateY(10px);
  animation: logo-fade 1s ease-out 0.15s forwards;
}

#logo .headline {
  margin: 64px 0 0;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px #F3D55B;
  opacity: 0;
  transform: translateY(8px);
  animation: headline-fade 1s ease-out 0.35s forwards;
}

#logo .r-only {
  position: absolute;
  left: -10000em;
}

#zajimavosti ul {
  list-style: none;
  padding-left: 0;
}

#zajimavosti li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

#zajimavosti li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  background: #eec31c;
  border-radius: 3px;
  transform: translateY(-50%) rotate(45deg);
  box-shadow: 0 4px 10px rgba(200, 134, 22, 0.35);
}

@media (max-width: 767px) {
  :root {
    --nav-height: 64px;
  }
}

@media (min-width: 992px) {
  #logo .headline {
    font-size: 64px;
  }
}

@keyframes logo-fade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes headline-fade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
