/* ----------------- Global parameters to be passed to variables ---- */
:root {
  /* --primary-color: rgba(13, 110, 139, 0.1); */
  --primary-color: rgba(225, 225, 225, 0.7);
  --overlay-color: rgb(56, 46, 162);
  --sidebar-color: rgba(7, 57, 98, 0.85);
  --about-text-background-color: rgba(255, 255, 255, 0.8);
  --menu-speed: 0.75s;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 22px;
}

@font-face {
  font-family: "BrushScriptFont";
  src: url("../fonts/Brush-Script.woff2") format("woff2"),
    url("../fonts/Brush-Script.woff") format("woff"),
    url("../fonts/BrushScript.ttf") format("truetype"),
    url("../fonts/BrushScript.ttf") format("truetype");
}

/* To cover the maximum number of browsers on the market.  */
/* @font-face {
  font-family: 'MyWebFont'; */
/* IE9 Compat Modes */
/* src: url('webfont.eot');  */
/* IE6-IE8 */ /* Super Modern Browsers */ /* Pretty Modern Browsers */ /* Safari, Android, iOS */ /* Legacy iOS */
/* src: url('webfont.eot?#iefix') format('embedded-opentype'),
      url('webfont.woff2') format('woff2'), 
      url('webfont.woff') format('woff'), 
      url('webfont.ttf')  format('truetype'),
      url('webfont.svg#svgFontName') format('svg'); 
} */

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.4;
  color: #000;
  font-size: 1.2em;
  background-color: var(--primary-color);
  overflow-x: hidden;
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
}

/* Social Media Icons - using font awesome */
.fblink {
  position: relative;
  padding: 30px;
  height: 25px;
  text-decoration: none;
  z-index: 10;
}

.fblink img {
  height: 35px;
}

.overlay {
  max-width: 1080px;
  margin: auto;
  overflow-y: auto;
  padding: 0 3rem;

  background-color: var(--primary-color);
  height: 100vh;
  position: relative;
  text-align: center;
}

/* setup the menu position on screen 25% of the circle is exposed. */
label .menu {
  position: absolute;
  left: -100px;
  top: -100px;
  z-index: 100;
  width: 220px;
  height: 220px;
  background: var(--overlay-color);
  border-radius: 50% 50% 50% 50%;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

/* setup the hamburger with three lines in white */
label .hamburger {
  position: absolute;
  top: 135px;
  left: 120px;
  width: 30px;
  height: 4px;
  background: white;
  display: block;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

/* setup the width and height of the hamburger lines */
label .hamburger:after,
label .hamburger:before {
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: white;
}
/* make one line above the center hamburger line  */
label .hamburger:before {
  top: -10px;
}
/* make one line below the center hamburger line  */
label .hamburger:after {
  bottom: -10px;
}

/* move the menu off screen so the pointer doesn't show up when the menu is not exposed. */
label input {
  display: none;
  position: absolute;
  left: -250vw;
}
/* paint the screen the same color as the hamburger background color. remove the circle corners */
label input:checked + .menu {
  box-shadow: 0 0 0 200vmax var(--overlay-color);
  border-radius: 0;
}
/* change the hamburger to an X  */
label input:checked + .menu .hamburger {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
label input:checked + .menu .hamburger:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  bottom: 0;
}
label input:checked + .menu .hamburger:before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 0;
}
/* move the menu back on screen in the middle */
label input:checked + .menu + ul {
  opacity: 1;
  text-align: center;
  left: 50%;
}

label ul {
  z-index: 200;
  position: absolute;
  top: 50%;
  left: -100vw;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: 0.2s 0s ease-in-out;
  transition: 0.2s 0s ease-in-out;
  list-style: none;
}

label a {
  margin-bottom: 0.7em;
  display: block;
  color: white;
  text-decoration: none;
}

.skates-img {
  background: url(../img/Picture_of_Skates.jpg) no-repeat center center/cover;
  position: relative;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
}

/*  ----------------------  Index Page --------------------- */
.showcase-index {
  content: "";
  background: url(../img/2012_World_Cup_1_Calgary_test2.jpg) no-repeat center
    center/cover;
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
}
.showcase-index h1 {
  font-family: "BrushScriptFont", "Roboto", sans-serif;
  position: absolute;
  top: 50%;
  margin: auto;
  width: 100%;
  text-align: center;
  font-size: 5rem;
  color: #fff;
}
.showcase-index p {
  position: relative;
  top: 70%;
  margin: auto;
  text-align: center;
  color: #fff;
  font-size: 1.7rem;
}
/*  -----------------------  End of Index Page ------------ */

/*  ----------------------- About Page -------------------- */

.about-page {
  background: url(../img/IMG_3029.JPG) no-repeat center center/cover;
  position: relative;
  top: -35px;
  left: 0;
  height: 100%;
  width: 100%;
}
.about-inner {
  top: 0;
  max-width: 960px;
  margin: auto;
  overflow-y: auto;
  padding: 0 3rem;
  background-color: var(--about-text-background-color);
  text-align: center;
  margin: auto;
  height: 100vh;
}
.about-page h1 {
  font-family: "BrushScriptFont", "Roboto", sans-serif;
  text-align: center;
  font-size: 3.5rem;
  padding-top: 40px;
  padding-bottom: 10px;
}
.about-page p {
  line-height: 1.4rem;
  text-align: left;
}
/* ----------------- End of About page -------------------- */

/* ----------------- Stlyes for the Contact page ---------- */
.contact-inner {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  height: 80%;
  max-width: 960px;
}

.contact-inner h1 {
  font-family: "BrushScriptFont", "Roboto", sans-serif;
  font-size: 3rem;
  padding: 40px 10px 20px 10px;
}
.contact-inner h2 {
  font-size: 1.5rem;
  padding-bottom: 20px;
}

.contact-inner p {
  font-size: 1.5rem;
  padding-top: 15px;
  padding-bottom: 15px;
}
/* ----------------- End Styles for the Contact page ----- */

/* ----------------- Store Styles ------------------------ */
.store-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  max-width: 960px;
  margin: auto;
}
.store-inner h1 {
  font-family: "BrushScriptFont", "Roboto", sans-serif;
  padding-top: 30px;
  font-size: 3.5rem;
}
.btn {
  display: inline-block;
  border: none;
  border-radius: 60px;
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  margin-top: 30px;
  text-decoration: none;
  transition: opacity 2s ease-in;
}
.store-inner p {
  text-align: left;
  padding: 15px 5px;
  font-size: 1.1rem;
}
/* ----------------- End of Store Styles -------------------------------------------------- */

/* ----------------- Start of boot moulding page styles ---------------------------------- */
.moulding-page {
  max-width: 1080px;
  margin: auto;
  overflow-y: auto;
  padding-bottom: 100px;
  background-color: var(--primary-color);
  height: 100vh;
  position: relative;
  text-align: center;
}
.moulding-wrapper h1 {
  padding-top: 40px;
  font-size: 2.5rem;
}
.moulding-wrapper h2 {
  padding: 20px 0 20px 0;
  font-size: 1.6rem;
  text-align: left;
}
.moulding-wrapper h3 {
  text-align: left;
  font-size: 1.4rem;
  padding-top: 20px;
}
.moulding-wrapper p {
  text-align: left;
  padding: 15px 5px 10px 5px;
}
.moulding-wrapper ul {
  padding: 20px 0 5px 0;
  text-align: left;
  width: 80%;
  margin-left: 40px;
}
.moulding-video {
  padding-bottom: 50px;
}
/* ----------------- End of boot moulding page ------------------------------------------- */

/* ----------------- Start of Sizing page ------------------------------------------------ */
.sizing-chart-page {
  max-width: 1080px;
  margin: auto;
  overflow-y: auto;
  padding: 0 3rem;
  background-color: var(--primary-color);
  height: 100vh;
  position: relative;
  text-align: center;
}

.sizing-chart-page h1 {
  padding-top: 20px;
  font-size: 2.2rem;
}
.sizing-chart-page h2 {
  padding-top: 20px;
  padding-bottom: 15px;
  font-size: 1.6rem;
}
.sizing-chart-page h3 {
  font-size: 1.4rem;
}
.sizing-chart-page p {
  text-align: left;
  padding-bottom: 15px;
}
.sizing-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding-top: 30px;
  height: 100%;
}
.sizing-chart {
  text-align: center;
}
.sizing-method {
  display: flex;
  flex-basis: auto;
  padding-bottom: 50px;
}
.sizing-method img {
  width: 80%;
  height: 200px;
}
.sizing-method p {
  padding: 4px 10px 4px 10px;
  font-size: 0.9rem;
}
.sizing-chart-page a {
  padding: 40px 0 50px 0;
}
/* ----------------- End of Sizing page -------------------------------------------------- */

/* ----------------- Styles for the shipping page ---------------------------------------- */

.shipping-page {
  padding-bottom: 100px;
  padding-top: 50px;
}
.shipping-page p {
  padding-bottom: 40px;
}
.shipping-wrapper {
  padding-top: 20px;
}
.shipping-wrapper h2 {
  padding-top: 2px;
  padding-bottom: 5px;
}
.shipping-wrapper p {
  text-align: left;
}
/* ----------------- End shipping page styles -------------------------------------------- */

/* ----------------- Start of Foss Stone Maintence info ---------------------------------- */

.foss-page ul {
  padding: 20px 0 30px 0;
  text-align: left;
  width: auto;
  margin-left: 50px;
}
.foss-wrapper h1 {
  padding-top: 60px;
  padding-bottom: 30px;
  font-size: 2.2rem;
}
.foss-wrapper h2 {
  padding-top: 20px;
  padding-bottom: 10px;
  font-size: 1.8rem;
  text-align: left;
}
.foss-wrapper h3 {
  font-size: 1.5rem;
  text-align: left;
  padding-top: 30px;
}
.foss-wrapper p {
  text-align: left;
  padding: 15px 5px 10px 5px;
}

.foss-wrapper img {
  padding-top: 50px;
  padding-bottom: 80px;
}
/* ----------------- End of Foss page ---------------------------------------------------- */

/* ----------------- Start of Media Queries --------------- */
@media screen and (max-width: 950px) {
  .overlay {
    padding: 0 0.75rem;
  }

  .showcase-index h1 {
    font-size: 3rem;
  }
  .showcase-index p {
    font-size: 1.2rem;
  }

  .about-page h1 {
    font-size: 2rem;
    padding-top: 100px;
    padding-bottom: 10px;
  }

  .contact-inner p {
    font-size: 1.2rem;
    padding: 5px 0 5px 0;
  }
  .contact-inner h1 {
    font-size: 2.5rem;
    padding: 100px 10px 20px 10px;
  }

  /* ----------------------------------------- Boot Sizing -------------------------------------------------------- */
  .sizing-chart-page h1 {
    padding-top: 100px;
    font-size: 2.5rem;
  }

  .sizing-method {
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
  }

  .sizing-image img {
    width: 50%;
    height: auto;
  }
  /* ----------------------------------------- End Boot Sizing ------------------------------------------------------ */
  .foss-wrapper h1 {
    padding-top: 130px;
    padding-bottom: 30px;
    font-size: 2.2rem;
  }
  .moulding-wrapper h1 {
    padding-top: 120px;
    font-size: 2.2rem;
  }
  .store-inner h1 {
    padding-top: 50px;
    font-size: 2.5rem;
  }
  .shipping-wrapper h2 {
    padding-top: 50px;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 400px) {
  .showcase-index h1 {
    font-size: 2rem;
  }
  .showcase-index p {
    font-size: 1rem;
  }
  .contact-inner {
    padding-top: 200px;
    margin: auto;
    padding-left: 40px;
    padding-right: 40px;
  }

  .contact-inner p {
    font-size: 1.2rem;
    padding: 5px 0 5px 0;
  }
}

@media screen and (max-width: 290px) {
  .contact-inner {
    padding-top: 400px;
    margin: auto;
    padding-left: 40px;
    padding-right: 40px;
  }

  .contact-inner p {
    font-size: 1rem;
    padding: 5px 0 5px 0;
  }
}

@media (orientation: landscape) and (max-height: 845px) {
  label a {
    margin-bottom: 0.4em;
    font-size: 1.2rem;
  }

  .fblink {
    padding: 30px;
    height: 20px;
  }

  .fblink img {
    height: 35px;
  }
  .about-page h1 {
    font-size: 2.5rem;
    padding-top: 100px;
    padding-bottom: 10px;
  }

  .contact-inner h1 {
    font-size: 2.5rem;
    padding: 150px 10px 20px 10px;
  }
  .moulding-wrapper h1 {
    padding-top: 80px;
    font-size: 2.5rem;
  }
}

@media (orientation: landscape) and (max-height: 650px) {
  label a {
    margin-bottom: 0.4em;
    font-size: 1.1rem;
  }

  .fblink img {
    height: 30px;
  }

  .showcase-index h1 {
    font-size: 3.5rem;
  }
  .showcase-index p {
    font-size: 1.25rem;
  }
  .about-page h1 {
    font-size: 2.5rem;
    padding-top: 100px;
    padding-bottom: 10px;
  }

  .about-page h1 {
    font-size: 2.5rem;
    padding-top: 80px;
    padding-bottom: 10px;
  }

  .contact-inner h1 {
    font-size: 2.5rem;
    padding: 80px 10px 20px 10px;
  }
  .moulding-wrapper h1 {
    padding-top: 80px;
    font-size: 2.5rem;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  label a {
    margin-bottom: 0.2rem;
    font-size: 1rem;
  }

  .fblink img {
    height: 30px;
  }

  .showcase-index h1 {
    font-size: 2.5rem;
  }
  .showcase-index p {
    font-size: 1rem;
  }
  .contact-inner h1 {
    font-size: 3rem;
    padding: 200px 10px 20px 10px;
  }
}

@media (orientation: landscape) and (max-height: 400px) {
  label ul {
    top: 55%;
  }
  .top-spacer {
    margin-top: 20px;
  }

  label a {
    margin-bottom: 0.1em;
    font-size: 1rem;
  }

  .fblink img {
    height: 25px;
  }

  .showcase-index h1 {
    font-size: 2rem;
  }
  .showcase-index p {
    font-size: 1rem;
  }
  .about-page h1 {
    font-size: 2.5rem;
    padding-top: 150px;
    padding-bottom: 10px;
  }

  .contact-inner h1 {
    font-size: 2.5rem;
    padding: 200px 10px 20px 10px;
  }
  .moulding-wrapper h1 {
    padding-top: 100px;
    font-size: 2.5rem;
  }
}

@media (orientation: landscape) and (max-height: 300px) {
  label ul {
    top: 55%;
  }
  .top-spacer {
    margin-top: 20px;
  }

  label a {
    margin-bottom: 0.1em;
    font-size: 0.75rem;
  }

  .fblink img {
    height: 25px;
  }

  .showcase-index h1 {
    font-size: 2rem;
  }
  .showcase-index p {
    font-size: 1rem;
  }
  .about-page h1 {
    font-size: 2.5rem;
    padding-top: 100px;
    padding-bottom: 10px;
  }

  .contact-inner h1 {
    font-size: 2.5rem;
    padding: 350px 10px 20px 10px;
  }
  .moulding-wrapper h1 {
    padding-top: 100px;
    font-size: 2.5rem;
  }
}
