@font-face {
  font-family: "ChildrenAmongLionsRegular-eDJm";
  src: url("fonts/ChildrenAmongLionsRegular-eDJm.ttf") format("truetype");
}

body {
  background-color: white;
  margin: 0;
  color: #222222;
}

/* Hero section with text over image */
.hero {
  background-image: url("images/background.png");
  background-size: 100% auto;
  background-position: center 120%;
  background-repeat: no-repeat;
  height: 80vh;
  min-height: 420px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;

  padding: 95px 20px 30px 20px;
  box-sizing: border-box;
}

.hero h1 {
  font-family: "ChildrenAmongLionsRegular-eDJm", serif;
  font-size: 78px;
  line-height: 1.05;
  margin: 0;
  color: #5A3E2B;
  background-color: transparent;
  padding: 0;
  letter-spacing: 1px;
  word-spacing: -15px;
  text-transform: uppercase;
  max-width: 1000px;
}

.headline-red {
  color: #9E1B1B;
}

.hero-subtitle {
  font-family: "Trebuchet MS", sans-serif;
  font-size: 25px;
  line-height: 1.35;
  color: #8B6B4A;
  margin-top: 12px;
  margin-bottom: 5px;
  background-color: transparent;
  padding: 0;
  max-width: 900px;
}

.hero-byline {
  font-family: "Trebuchet MS", sans-serif;
  font-size: 18px;
  line-height: 1.3;
  color: #A28367;
  margin-top: 1px;
  background-color: transparent;
  padding: 0;
}

/* Main content width */
img, p, h2, .divider, .quote-block {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 12px;
}

p {
  font-size: 18px;
  line-height: 1.6;
  padding-left: 12px;
  padding-right: 12px;
}

h2 {
  padding-left: 12px;
  padding-right: 12px;
  margin-top: 28px;
  margin-bottom: 10px;
}

.intro {
  margin-top: 18px;
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.65;
}

/* Quote section */
.quote-block {
  margin-top: 28px;
  margin-bottom: 12px;
  text-align: center;
  padding-left: 12px;
  padding-right: 12px;
}

.quote {
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 6px;
}

.quote-author {
  font-size: 18px;
  line-height: 1.4;
  margin-top: 0;
}

.quote-title {
  font-style: italic;
}

/* Divider line */
.divider {
  height: 4px;
  background-color: #5A3E2B;
  margin-top: 24px;
  margin-bottom: 24px;
}

.first-divider {
  height: 1.5px;
  width: 80%;
  max-width: 500px;
  margin: 24px auto;
}

/* Links */
a {
  color: #8B2E1E;
}

a:hover {
  color: #5A3E2B;
}

/* References section */
.references-section {
  background-color: #210c00;
  padding: 30px 0;
  margin-top: 20px;
}

.references-section h2,
.references-section p {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding-left: 12px;
  padding-right: 12px;
  color: white;
}

.references-section a {
  color: #f0d2b6;
}

.references-section a:hover {
  color: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    background-size: 100% auto;
    background-position: center 88%;
    background-repeat: no-repeat;
    height: 42vh;
    min-height: 340px;
    padding: 32px 16px 18px 16px;
  }

  .hero h1 {
    font-size: 50px;
    line-height: 1.08;
    letter-spacing: 1px;
    word-spacing: -4px;
  }

  .hero-subtitle {
    font-size: 18px;
    line-height: 1.3;
    margin-top: 8px;
    margin-bottom: 14px;
    max-width: 90%;
  }

  .hero-byline {
    font-size: 16px;
    margin-top: 8px;
  }

  .intro {
    font-size: 16px;
    line-height: 1.6;
  }

  .quote {
    font-size: 20px;
  }

  .quote-author {
    font-size: 16px;
  }

  img,
  p,
  h2,
  .divider,
  .quote-block,
  .references-section h2,
  .references-section p {
    max-width: 100%;
  }
}