/*!
 * DargwaDict — homepage header and site footer bar
 */

header {
  background: url(../../img/sky.png) no-repeat center center;
  width: 100%;
  padding: 20px 10px 60px 10px;
  height: 100vh;
  overflow: hidden;
  background-size: cover;
}

.header-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
  margin-left: 0;
  margin-bottom: 22%;
}

/* Заголовок и подзаголовок в шапке (размер задаётся здесь, а не инлайн-стилем,
   чтобы медиа-запросы ниже могли их переопределять) */
.hero-title {
  font-size: 65px;
}

.hero-lead {
  font-size: 25px;
}

.footer {
  background-color: #74cccc;
  height: 50px;
  right: 0;
  bottom: 0;
  width: 100%;
  font-size: 17px;
  font-family: 'Montserrat', sans-serif;
  color: white;
  padding-left: 30px;
  float: none;
  vertical-align: middle;
  line-height: 50px;
  margin-top: auto;
}

/* ---------------- Мобильная адаптация ---------------- */
@media (max-width: 768px) {
  header {
    padding: 20px 10px 40px;
  }

  .header-info {
    margin-bottom: 12%;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-lead {
    font-size: 19px;
  }
}

@media (max-width: 480px) {
  .header-info {
    margin-bottom: 8%;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .footer {
    height: auto;
    padding: 12px 15px;
    line-height: 1.4;
    font-size: 14px;
  }
}
