* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito Sans", sans-serif !important;
  outline: none;
  overflow-x: hidden;
  border: none;
  line-height: 1.3;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

html {
  font-size : 15px;
}

body {
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
}

h1, h2, h3, h4, a, p, img, li, ul, input, label, span, textarea {
  overflow : hidden;
}

.header-logo {
  position: fixed;
  top: 10px;
  left: 50%;
  z-index: 100;
  transform: translateX(-50%);
}

.header-logo img {
  height: 40px;
  width: auto;
}

.logo-background {
  position: fixed;
  z-index: 90;
  height: 60px;
  background-color: #0060FF;
  width: 100%;
  transform : translateY(-100%);
  transition: 250ms ease-in-out;
  -webkit-timing-function: ease-in-out;
  -webkit-transition-duration: 250ms;
}

.landing-page {
  position: relative;
}

.landing-page-image {
  height: 80vh;
  width: 100%;
  background-image: url(media/pikatera_014.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(50%);
}

.fof-page-image {
  filter : grayscale(1) brightness(50%);
}

.slogan {
  color: #FF9F00;
  width: 75%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.landing-page-button {
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
}

.button {
  color: #fff;
  display: inline-block;
  padding: 10px 50px;
  background-color: #0060FF;
  box-shadow: 0 3px 5px rgb(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .25);
  cursor: pointer;
  text-align: center;
  outline: none;
  font-weight: 800;
  width: fit-content;
  transition-property: transform, box-shadow;
  transition-duration: 150ms;
  white-space: nowrap;
  margin: 10px;
}
  
.button:hover, .button:focus {
  transform: translateY(3px);
  box-shadow: 0 0 5px rgb(0, 0, 0, 0.25), 0 3px 5px rgb(0, 0, 0, 0.25) inset;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .25), inset 0 3px 5px rgba(0, 0, 0, .25);
}

.button:active {
  background-color: #0056e6;
}

a {
  text-decoration: none;
  color: #000;
  display: inline-block;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

.products {
  margin: 100px auto;
  margin-bottom: 90px;
}

.products h2 {
  text-align: center;
  margin-bottom: 100px;
}

.all-products {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 100px;
  align-items: center;
}

.all-products:last-child {
  padding-bottom: 10px;
}

.product {
  box-shadow : 0 3px 5px rgb(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .25);
  width: 250px;
}

.product-type {
  width: 100%;
  text-align: center;
  background-color: #FF9F00;
  padding: 10px 0;
  color: #fff;
}

.product-list {
  height: 250px;
  position: relative;
}

.product-list ul {
  width: 100%;
  height: fit-content;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product-list li {
    list-style: none !important;
}

.complex-parts {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.outdoor-image {
  width: 100%;
  height: 500px;
  background-image: url(media/pikatera_002.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.story {
  background-color: #0060FF;
  display: flex;
  width: 100%;
  height: 500px;
  align-items: center;
  justify-content: center;
}

.story-content {
  color: #fff;
  width: 75%;
}

.story-content h2 {
  margin-bottom: 50px;
}

.anvil-image {
  width: 100%;
  height: 500px;
  background-image: url(media/pikatera_020.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact {
  margin: 100px 0;
  width: 100%;
  margin-bottom: 90px;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 50px;
}

input, textarea {
  width: 90%;
  display: block;
  outline: none;
  padding: 10px;
  margin: 0 auto;
  margin-bottom: 15px;
  box-shadow: 0 3px 5px rgb(0, 0, 0, 0.25), 0 3px 5px rgb(0, 0, 0, 0.25) inset;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .25), inset 0 3px 5px rgba(0, 0, 0, .25);
  -webkit-appearance: none;
  position: relative;
  background-color: #fff;
  font-size: 1rem;
  -webkit-border-radius: 0; 
  border-radius: 0;
}

textarea {
  resize : none;
  height : 250px;
}

form label {
  display : inline-block;
  margin-left : 5%;
}

form .button {
  display: block;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 10px;
  font-size: 1rem;
}

form span {
  color: #FF0060;
  display : inline-block;
}

.lahetetty {
  display: block;
  width: 90%;
  margin: 0 auto;
}

.company-footer {
  margin: 100px auto;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: space-around;
  max-width: 3000px;
}

.company-footer ul {
  margin-top: 15px;
}

.company-footer li {
  height: 30px;
  display: flex;
  align-items: center;
}

.company-footer a:hover, .company-footer a:focus {
  text-decoration: underline #000;
}

.company-footer a:hover, .company-footer a:focus {
  text-decoration: underline #000;
}

.footer-logo-link {
  width: fit-content;
  height: fit-content;
}

.footer-logo {
  width: 100%;
  max-width: 250px;
}
  
.copyright {
  width: 100%;
  text-align: center;
  margin: 15px 0;
}

@media only screen and (min-width: 1000px) {

  html {
    font-size: 20px;
  }

  .slogan {
    width: 50%;
  }

  .landing-page-button {
    width: 50%;
  }

  h1 {
    font-size: 2.5rem;
  }

  .all-products {
    flex-direction: row;
    justify-content: center;
  }

  .outdoor-image {
    width: 50%;
  }

  .story {
    width: 50%;
  }

  .anvil-image {
    width: 33%;
    height: 920px;
    order: 4;
  }

  .contact {
    order: 3;
    width: 67%;
  }

  .company-footer {
    flex-direction: row;
    gap: 50px;
  }

}

@media only screen and (min-width: 1150px) {

  .product {
    width: 300px;
  }

  .landing-page-button {
    bottom: 10vh;
  }

}

@media only screen and (min-width: 2000px) {

  h1 {
    font-size: 4rem;
  }

}