/* ============================
   BACKGROUND FOR MAIN PAGES
============================ */

body.main-page {
  min-height: 100vh;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.842), rgba(0, 0, 0, 0.979)),
    url("../images/index_hero.jpg");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* ============================
   MAIN WRAPPER
============================ */



.main-layout {
  padding-top: 120px; /* kvůli fixed nav */
  padding-bottom: 5em;

    width: 100%;
  display: flex;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ============================
   INTRO HEADER
============================ */

.main-intro {
  text-align: center;
  margin-bottom: 4em;
  padding-left: 10%;
  padding-right: 10%;
}

.main-logo {
  max-width: 750px;
  width: 100%;
}

.main-tagline {
  font-size: clamp(1rem, 5vw, 5rem);
  margin-top: 1rem;
}

.text-glow-green {
  text-shadow:
    0 0 12px rgba(60,121,0,.6),
    0 0 30px rgba(60,121,0,.35);
}

.text-glow-yellow {
  text-shadow:
    0 0 12px rgba(251,231,3,.6),
    0 0 30px rgba(251,231,3,.35);
}


.text-glow-blue {
  text-shadow:
    0 0 12px rgba(110,160,255,.6),
    0 0 30px rgba(110,160,255,.35);
}


/* ============================
   CONTENT BLOCK
============================ */

.main-content {
  width: 100%;
  max-width: 1400px;
}

/* ============================
   FOOTER
============================ */

#footerWrapper {
  background: #231F20;
;
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 900px) {

  .main-logo {
    max-width: 360px;
  }


}

@media (max-width: 600px) {

  body.main-page {
    background-attachment: scroll;
  }

  .main-layout {
    padding-top: 90px;
  }



}