* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  font-size: 14px;
  line-height: 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Hero */
.hero {
  height: 800px;
  background-image: url("images/jotr_header_25pct.png");
  background-position: center;
  background-size: cover;
}

.hero-content {
  max-width: 940px;
  margin: 0 auto;
  padding: 220px 15px 0;
}

.hero-title {
  font-size: 70px;
  line-height: 90px;
  color: #141414;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
  font-size: 28px;
  line-height: 32px;
  color: #333;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.15);
  font-weight: 500;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 20px;
}

.store-badges a {
  margin-right: 40px;
}

.store-badges--stacked {
  flex-direction: column;
  align-items: center;
  margin-top: 0;
}

.store-badges--stacked a {
  margin: 10px 0;
  margin-right: 0;
}

.store-badges--stacked a img {
  width: 180px;
  margin: 0 auto;
}

/* Features */
.feature {
  padding: 20px 0;
}

.feature--gray {
  background-color: #f2f2f2;
}

.feature--white {
  background-color: #fff;
}

.feature-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-row--reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
  padding: 20px;
}

.feature-image {
  flex: 1;
}

.feature-image img {
  margin-top: 40px;
}

.feature-title {
  color: #16181f;
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
}

.feature-desc {
  color: #16181f;
  font-size: 21px;
  font-weight: 400;
  margin-top: 10px;
}

/* CTA */
.cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cta-content {
  width: 100%;
  padding: 40px 15px;
  text-align: center;
}

.cta-icon {
  margin: 0 auto;
}

.cta-icon {
  margin: 0 auto 15px;
}

.cta-title {
  margin-bottom: 5px;
  font-size: 40px;
  line-height: 60px;
  color: #16181f;
  font-weight: 700;
  text-transform: uppercase;
}

.cta-subtitle {
  margin-top: 0;
  margin-bottom: 30px;
  color: #16181f;
  font-weight: 500;
}

/* Footer */
.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #16181f;
  padding: 40px 15px;
}

.footer-text {
  color: #f2f2f2;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.footer-email {
  color: #f2f2f2;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.4px;
  margin-top: 4px;
}

/* Tablet */
@media screen and (max-width: 991px) {
  .hero {
    height: 400px;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero-title {
    font-size: 56px;
    line-height: 64px;
  }

  .hero-subtitle {
    font-size: 24px;
    line-height: 28px;
  }

  .store-badges a {
    margin-top: 0;
  }
}

/* Mobile landscape */
@media screen and (max-width: 767px) {
  .hero {
    height: auto;
  }

  .hero-content {
    padding: 30px;
  }

  .hero-title {
    font-size: 50px;
    line-height: 56px;
  }

  .hero-subtitle {
    font-size: 22px;
    line-height: 26px;
  }

  .store-badges a {
    margin-right: 20px;
  }

  .feature-title {
    font-size: 22px;
    line-height: 24px;
  }

  .feature-desc {
    font-size: 16px;
    line-height: 20px;
  }

  .feature-image img {
    margin-top: 20px;
  }

  .feature-text {
    padding: 10px 20px;
  }
}

/* Mobile portrait */
@media screen and (max-width: 479px) {
  .hero-title {
    font-size: 32px;
    line-height: 38px;
  }

  .hero-subtitle {
    font-size: 18px;
    line-height: 24px;
  }

  .store-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .store-badges a {
    margin-right: 0;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .hero .store-badges a img {
    width: 150px;
  }

  .store-badges--stacked {
    align-items: center;
    width: 100%;
  }

  .feature-row {
    flex-direction: column;
  }

  .feature-row.feature-row--reverse {
    flex-direction: column;
  }

  .feature-title {
    font-size: 18px;
    line-height: 20px;
    margin-top: 10px;
  }

  .feature-desc {
    font-size: 14px;
    line-height: 18px;
  }

  .feature-image img {
    margin-top: 10px;
  }

  .feature-row {
    margin: 0;
    padding: 0 15px;
    gap: 0;
  }

  .feature-image img {
    margin: 10px auto 0;
  }

  .feature-text {
    padding: 15px 10px 0;
  }

  .feature {
    padding: 10px 0;
  }

  .cta-title {
    margin: 0 16px 10px;
    font-size: 28px;
    line-height: 32px;
  }

  .cta-subtitle {
    margin: 0 45px 30px;
    font-size: 18px;
    line-height: 20px;
  }

  .cta-content {
    padding: 20px 15px;
  }

  .footer {
    padding: 20px 15px;
  }

  .footer-text {
    font-size: 14px;
    line-height: 18px;
  }

  .footer-email {
    margin-bottom: 0;
  }
}
