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

body {
  padding-bottom: 35px;
}


/* web fonts & general typography */
@font-face {
  font-family: "Open Sans Regular";
  src: url("../fonts/OpenSans-Regular.ttf");
}

@font-face {
  font-family: "Open Sans SemiBold";
  src: url("../fonts/OpenSans-SemiBold.ttf");
}

@font-face {
  font-family: "Open Sans Bold";
  src: url("../fonts/OpenSans-Bold.ttf");
}

@font-face {
  font-family: "Oswald Light";
  src: url("../fonts/Oswald-Light.ttf");
}

@font-face {
  font-family: "Oswald Regular";
  src: url("../fonts/Oswald-Regular.ttf");
}

@font-face {
  font-family: "Oswald Medium";
  src: url("../fonts/Oswald-Medium.ttf");
}

body {
  font-family: "Open Sans Regular", sans-serif;
}

h1,
h2 {
  font-family: "Oswald Regular", sans-serif;
}

/* header */
.header-container {
  background: no-repeat url("../img/hero--2019-11-26.jpg") center center;

  padding-top: 30px;
  color: white;
}

.max-width {
  max-width: 960px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

/* inner container for header/hero content */
.header-content {
  text-align: center;

  display: flex;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

/* logo, text, and arrow */
.header-item {
  flex-grow: 0;
  flex-shrink: 0;
  text-align: center;
}

.header-item:nth-of-type(2) {
  margin-top: 20px;
}

.header-item:last-of-type {
  margin-top: auto;
}

.logo {
  max-width: 100%;
  width: 216px;
  height: auto;
}

.hero-title {
  font-family: "Oswald Medium", sans-serif;
  font-size: 35px;
  font-weight: 400;
  text-transform: uppercase;
}

.hero-title i {
  display: block;
  font-family: "Oswald Light", sans-serif;
  font-style: normal;
  font-size: 25px;
  font-weight: 100;
}

.arrow {
  margin-bottom: -25px;
}

/* page title & banner */
.page-content h2 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 25px;
}

.content-banner {
  max-width: 100%;
}

.store-locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 20px;
}

.store-location {
  padding: 7px;
}

.marketing-message {
  grid-column-start: 1;
  grid-column-end: 3;

  padding: 7px;

  background: #95dacf;
  color: #333;
  text-align: center;
}

.store-locations h5 {
  font-family: "Open Sans SemiBold", sans-serif;
  font-size: 1em;
  margin-bottom: 7px;
}



/* media queries */
/* styled mobile first so default styles above are for mobile and up with customizations and changes happening as the following breakpoints are reached */
@media (min-width: 640px) {
  /* change alignment and spacing for hero/header */
  .header-container {
  background-position: top center;
  padding-top: 130px;
  min-height: 661px;
  }

  .header-content {
    min-height: 555px;
  }

  /* font-sizes for title */
  .hero-title {   
    font-size: 65px;
  }

  .hero-title i {
    font-size: 45px;
  }

  .page-content h2 {
    font-size: 35px;
  }

  /* arrow placement */
  .arrow {
    margin-bottom: 0;
  }

  /* larger s */
  .store-locations {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 20px;
  }

  .marketing-message {
    grid-row-start: 5;
    grid-row-end: 6;
    grid-column-start: 3;
    grid-column-end: 5;
  }
}

@media (min-width: 800px) {
  .hero-title {
    font-size: 85px;
  }

  .hero-title i {
    font-size: 60px;
  }
}