/* Secret Agent Supply */

html {
  font-size: 18px;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: Helvetica, sans-serif;
}

h1 {
  font-size: 2rem;
  font-weight: bold;
}
h3 {
  font-size: 1rem;
  font-weight: bold;
}

#header {
  padding: 0.66rem 6.125rem;
	color: white;
	background-color: black;
  font-size: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: space-between;
}
#header img {
  height: 1.5rem;
  margin-left: .5rem;
  margin-right: 1rem;
}

#banner {
	padding: 0 6.125rem;
  height: 25rem;
  width: 100%;
	color: white;
	background-image: url("../images/moto.jpeg");
	background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#arrival {
  display: flex;
  flex-direction: column;
  padding: 2rem 3rem;
  position: relative;
  top: 9em;
  width: 20rem;
  color: white;
  background-color: black;
}

#arrival h3 {
  text-transform: uppercase;
  margin-bottom: 1em;
}
#arrival h1 {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  margin-bottom: 1em;
  line-height: 1.25em;
}

nav {
  padding: 0 6.125rem;
	color: white;
	background-color: firebrick;
}
ul {
  padding: 1em 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.menu-items {
}

#featured-items {
  padding: 0 6.125rem;
  margin: 3rem 0;
  display: flex;
  flex-direction: row;
	color: black;
	background-color: white;
  justify-content: space-between;
}
.featured-item {
  width: 30%;
  border: 4px solid black;
  display: flex;
  flex-direction: column;
  align-content: center;
}
.featured-image {
  padding: 2rem 0;
  height: 9rem;
  background-color: white;
}
#pen {
  background-image: url("../images/pen.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9rem;
}
#watch {
  background-image: url("../images/watch.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9rem;
}
#glasses {
  background-image: url("../images/glasses.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9rem;
}
.featured-label {
  width: 100%;
  padding: 1em 0;
  color: white;
  background-color: black;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#footer {
	padding: 0 6.125rem;
	background-color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.info {
  display: flex;
  flex-direction: column;
  width: 35%;
}
.info-head {
  color: white;
  background-color: black;
  padding: 1rem 0 1rem 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.info-text {
  margin-bottom: 4rem;
  color: black;
  background-color: white;
}

#copyright {
  padding: 2rem 6.125rem;
	line-height: 1rem;
	color: white;
	background-color: black;
  display: flex;
  text-align: left;
  align-items: center;
}

.menu-button {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .menu-items {
    display: none;
  }
  ul {
    justify-content: center;
  }
  .menu-button {
    display: block;
  }
  #header { padding: 0.66rem 0; }
  #banner { padding: 0; }
  nav { padding: 0; }
  #footer { padding: 0; }
  #featured-items  { padding: 0; }
  .featured-item { width: 47%; }
  #greaterthan1024only { display: none }
}

@media only screen and (max-width: 470px) {

  #banner { height: 15rem; }
  #arrival {
    padding: 1rem 2rem;
    position: relative;
    top: 10em;
    width: 100%;
  }
  #arrival h3 {
    font-size: .77rem;
    margin-bottom: .25rem;
  }
  #arrival h1 {
    margin-bottom: 1em;
    font-size: 1rem;
  }
  #featured-items { justify-content: center; }
  .featured-item { width: 90%; }
  #greaterthan470only { display: none }
  #footer {
    flex-direction: column;
    align-items: center;
  }
  .info { width: 90%; }
  #top .info-text { margin-bottom: .5rem; }
  #copyright { text-align: center; }
}
