/* CSS Reset */
body, header, nav, main, footer, img, h1, h3, ul, aside, figure, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
}

/* Body */
body {
  background-color: #f6eee4;
  font-family: 'Lora', serif;
}

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

/* Banner (Baby Hawk Image) */
.banner {
  background-image: url("../images/baby-hawk.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 40vh;
  width: 100%;
  position: relative;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #f6eee4;
  text-shadow: 2px 2px 6px #2a1f14;
}

.banner-text h1 {
  font-family: 'Emblema One', cursive;
  font-size: 2em;
}

.banner-text h3 {
  font-size: 1.2em;
}

/* Navigation */
nav {
  background-color: #2a1f14;
}

nav ul {
  list-style-type: none;
  text-align: center;
}

nav li {
  display: block;
  font-size: 1.5em;
  font-family: Geneva, Arial, sans-serif;
  font-weight: bold;
  border-top: 0.5px solid #f6eee4;
}

nav li a {
  display: block;
  color: #f6eee4;
  padding: 0.5em;
  text-decoration: none;
}

/* Main Content */
main {
  padding: 2%;
}

main p {
  font-size: 1.25em;
}

.round {
  border-radius: 6px;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.85em;
  background-color: #2a1f14;
  color: #f6eee4;
  padding: 1% 0;
}

footer a {
  color: #f3e6d8;
  text-decoration: none;
}

/* Media Queries */

/* Tablet */
@media only screen and (min-width: 620px), print {
  nav li {
    border-top: none;
    display: inline-block;
    font-size: 1.25em;
  }

  nav li a {
    padding: 0.5em 1em;
  }

  .banner-text h1 {
    font-size: 2.5em;
  }

  .banner-text h3 {
    font-size: 1.5em;
  }
}

/* Desktop */
@media only screen and (min-width: 1000px), print {
  nav li {
    font-size: 1.5em;
  }

  nav li a {
    padding: 0.5em 1.5em;
  }

  nav li a:hover {
    color: #2a1f14;
    background-color: #f6eee4;
    opacity: 0.5;
  }

  .banner {
    height: 60vh;
  }

  .banner-text h1 {
    font-size: 3em;
  }

  .banner-text h3 {
    font-size: 1.75em;
  }
}

/* Large Desktop */
@media only screen and (min-width: 1921px) {
  body {
    background: linear-gradient(#f6eee4, #78593a);
  }

  #wrapper {
    width: 1920px;
    margin: 0 auto;
  }

  main {
    background-color: #f6eee4;
  }

  .banner {
    height: 70vh;
  }
}

/* Print */
@media print {
  body {
    background-color: white;
    color: black;
  }
}
