body { /* Everything */
  margin: 0;
  padding: 0;
  font-family: arial;
  color: #000;
}

/* Text Styling */
h1 {
  color: #fff;
  font-size: 60px;
  font-weight: bold;
}

h2 {
  padding-left: 40px;
  margin-bottom: 0;
  margin-top: 0;
  line-height: 100px;
  font-size: 50px;
  font-weight: bold;
}

sub {
  margin-top: 0;
  padding-left: 20px;
  font-size: 40px;
  font-weight: bold;
}

p {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 30px;
  font-weight: normal;
}

.infoText {
  font-size: large;
  margin-left: 10px;
  color: #fff;
}

.saleText {
  position: absolute;
  width: 100%;
  top: 20px;
  color: orange;
  font-size: 50px;
  /* -webkit-text-stroke: 2px #fff; */
  text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}

/* Nav Bars */
nav { /* Main Nav Bar */
  width: 100%;
  height: 120px;
  background: #f39120;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 1;
  border: 1px solid #f39120;
}

.galleryNav {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 1;
}

/* Sections (The # after section represents the amount of columns) */
.section1 {
  width: 100vw;
  height: fit-content;
}

.section2 {
  width: 100%;
  height: fit-content;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.section3 {
  width: 100vw;
  height: fit-content;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

/* Containers (The # after section represents the amount of rows) */
.container2 {
  width: fit-content;
  height: fit-content;
  text-align: center;
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.promoContainer {
  width: fit-content;
  height: calc(30vh + 50px);
  text-align: center;
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.saleContainer {
  position: relative;
  text-align: center;
}

.galleryImageContainer {
  width: 100vw;
  height: 90vh;
  text-align: center;
}

div.disableScrolling {
  overflow: hidden;
}

.galleryThumbnailBarContainer {
  overflow-y: hidden;
  height: 200px;
  /* object-fit: contain; */
  display: flex;
  align-items: center;
}

.fullGalleryImageContainer {
  height: calc(100vh - 250px);
  width: calc(100% - 22px);
  text-align: center;
  margin: 25px 10px;
}

.backButtonContainer {
  font-size: 30px;
  padding: 5px 10px;
  color: #000;
  text-decoration: none;
  margin: 0 10px 0 0;
  background-color: #C0C0C0;
  border: 1px solid black;
}

.section3ImageContainer {
  width: fit-content;
  height: calc(40vh + 50px);
  text-align: center;
  display: grid;
  grid-template-rows: 1fr 1fr;
}

/* Dividers */
.topDivider {
  height: 120px;
}

/* Images */
.topImage {
  width: 100%;
  height: 60vh;
  object-fit: cover;
}

.section3Image {
  width: 32vw;
  height: 40vh;
  object-fit: cover;
  border: 1px solid #000;
}

.productImage {
  width: 98%;
  height: 50vh;
  margin: 0 1% 10px 1%;
  border: 1px solid #000;
  object-fit: cover;
}

.galleryImage {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
}

.aboutImage {
  width: 50vw;
  height: 500px;
  object-fit: cover;
}

.promoImage {
  width: 30vw;
  height: 30vh;
  object-fit: cover;
}

.thumbnailBarImage {
  max-width: 200px;
  height: 100%;
  width: auto;
  margin: 0 3px;
  object-fit: cover;
  margin-bottom: 20px;
}

.fullGalleryImage {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/* iframes */
.googleMap-Home {
  border: 1px solid black;
  width: calc(100vw - 20px);
  height: 400px;
}

.googleMap-Contact {
  border: 1px solid black;
  width: calc(100vw - 2px);
  height: 65vh;
}

.googleForm {
  width: calc(100% - 2px);
  height: calc(100vh - 225px);
  border: 1px solid black;
}

.galleryThumbnailBar {
  margin-top: 80vh;
  width: 100vw;
  height: 10vh;
}

/* Ham-Menu */
.off-screen-menu { /* The styles for the opened menu */
  background: #f39120;
  height: 100%;
  width: 25%;
  max-width: 150px;
  min-width: 100px;
  margin-top: 120px;
  padding-top: 30px;
  padding-left: 1%;
  position: fixed;
  right: -300px;
  display: flex;
  flex-direction: column;
  transition: .3s ease;
  z-index: 2;
}

.off-screen-menu a { /* Styles for the text in the menu */
  color: #fff;
  font-size: 24px;
  text-align: center;
  text-decoration: none;
  line-height: 20px;
}

.off-screen-menu a:hover { /* Styles for the text in the menu */
  color: #0084ff;
}

.off-screen-menu.active {
  right: 0;
}

/* The unopened menu graphics */
.menu {
  height: 50px;
  width: 50px;
  margin-right: 37px;
  position: relative;
}

/* Non-Active */
.menu span {
  height: 5px;
  width: 100%;
  background-color: #fff;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .3s ease;
}

.menu span:nth-child(1) {/* 1nd Menu Bar */
  top: 25%;
}

.menu span:nth-child(3) {/* 3rd Menu Bar (2nd is already positioned) */
  top: 75%;
}

/* Active */
.menu.active span:nth-child(1) { /* 1st Menu Bar */
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu.active span:nth-child(2) { /* 3rd Menu Bar */
  opacity: 0;
}

.menu.active span:nth-child(3) { /* 3rd Menu Bar */
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* use this to change the layout of the website depending on the screen size */
@media screen and (max-width: 768px) {
  nav {
    height: 80px;
  }
  nav a {
    padding-right: 20px;
    font-size: 18px;
  }
  .topImage {
    height: 50vh;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    padding-left: 20px;
    line-height: 50px;
    font-size: 30px;
  }
  sub {
    margin-top: 0;
    padding-left: 10px;
    font-size: 26px;
  }
  p {
    margin-top: 0;
    padding-left: 10px;
    font-size: 18px;
  }
  .saleText {
    font-size: 20px;
    top: 10px;
  }
  .googleMap-Home {
    height: 300px;
  }
  .googleForm {
    height: calc(100vh - 140px);
  }
  .menu {
    margin-right: 25px;
    width: 30px;
    height: 30px;
  }
  .menu span {
    height: 3px;
  }
  .off-screen-menu {
    margin-top: 80px;
  }
  .off-screen-menu a {
    font-size: 18px;
    line-height: 12px;
  }
  .topDivider {
    height: 80px;
  }
  .productImage {
    margin: 0 4% 10px 4%;
    width: 92%;
    height: 25vh;
  }
  .thumbnailBarImage {
    max-width: 100px;
  }
  .galleryThumbnailBarContainer {
    height: 100px;
  }
  .fullGalleryImageContainer {
    height: calc(100vh - 250px);
  }
  .section3Image {
    height: 20vh;
  }
  .section3ImageContainer {
    height: calc(20vh + 50px);
  }
  .infoText {
    font-size: small;
    margin-left: 0;
    color: #fff;
  }
}