:root {
  --nav-padding: 1.5vw;
  --nav-height: 10vh;
  --section-padding: 2vw;
  --nav-total: calc(var(--nav-height) + var(--nav-padding));
  --normal-gap: 3vw;
}

* {
  font-family: "Tinos", serif;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  background-color: black;
}

h1, h2, h3, h4, p, label, a, figcaption {
  color: white;
}

h1 {
  font-size: 3vw;
}

h2 {
  font-size: 2.5vw;
}

h3 {
  font-size: 1.7vw;
}

h4 {
  font-size: 1.2vw;
}

p, label, address, button {
  font-size: 1vw;
}

a {
  text-decoration: none;
  font-size: 1.3vw;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.5);
  
  width: 100%;
  height: var(--nav-height);
  padding: var(--nav-padding);
  z-index: 1;

  position: fixed;
  top: 0;
}

.navbar {
  display: flex;
  justify-content: center;
  width: 30%;
}

.navbar ul {
  display: flex;
  align-items: center;
  gap: var(--normal-gap);
}

section {
  padding: var(--nav-total) var(--section-padding) var(--section-padding) var(--section-padding);
}

#about {
  display: flex;
  min-height: 28vw;
  background-image: linear-gradient(to bottom, rgb(63, 5, 5) , rgb(12, 1, 1));
}

.about-content {
  display: flex;
  justify-content: space-between;
  gap: var(--normal-gap);
}

.about-content div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
  padding: 1vw;
}

.about-content > div > div {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 6px;
}

.about-content p {
  padding: 2vw;
  text-align: center;
}

.about-content h2 {
  text-align: center;

  padding: 5vw 1vw;
}

.about-content img {
  max-width: 45vw;
  padding: 1vw;
  flex-shrink: 0;

  filter: drop-shadow(10px 10px 15px brown);
}

.download {
  padding: 12px;
  border: 3px solid;
  border-image: linear-gradient(to right, rgb(54, 14, 14), brown) 1;
}

#reviews {
  display: flex;
  flex-direction: column;
  height: 47vw;
  background-color: rgb(12, 1, 1);

  gap: calc(var(--normal-gap)/2);
}

#reviews > div {
  padding: 0 2vw;
}

#reviews img {
  padding: 3%;
  max-height: 20vw;
}

#reviews h2 {
  border: 3px solid;
  border-image: linear-gradient(to left, rgb(12, 1, 1), brown) 0 0 1 0;
}

.reviews-container {
  display: flex;
  flex-flow: row wrap;
  align-items: center;

  gap: var(--normal-gap);
  padding: 1vw;
}

.reviews-card {
  display: flex;
  flex-direction: column;

  filter: drop-shadow(5px 5px 10px brown);

  gap: 6px;
  width: 30%;
  padding: 0.5vw;
}

.reviews-card figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.reviews-card figure img {
  width: 100%;
  padding-bottom: 20px;
}

#contact {
  display: flex;
  flex-direction: column;
  gap: var(--normal-gap);

  background-image: linear-gradient(to top, rgb(63, 5, 5) , rgb(12, 1, 1));
}

#contact > div {
  display: flex;
  justify-content: space-between;
}

.maps, .form-container{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-container {
  margin-left: 128px;
  width: 100%;
}

.form-container form {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  border-radius: 4px;
  border: 6px solid rgb(88, 19, 19);

  padding: 8px;
  height: 100%;
  gap: 6px;
}

.form-container form div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.form-container input, button {
  background-color: black;
  border: 1px solid brown;
  color: white;
}

.form-container input {
  padding: 4px;
  font-size: 1.4vw;
  height: 6vh;
}

.form-container button {
  height: 10%;
}

.orders {
  height: 100%;
}

footer {
  color: rgba(168, 168, 168, 0.5);
  padding: var(--section-padding);
}

@media screen and (max-width: 1000px) {
  h1 {
    font-size: 10vw;
  }

  h2 {
    font-size: 8vw;
  }

  h3 {
    font-size: 6vw;
  }

  h4 {
    font-size: 4vw;
  }

  p, label, address, button {
    font-size: 4vw;
  }

  a {
    text-decoration: none;
    font-size: 3.8vw;
  }

  img {
    width: 100%;
  }

  header {
    flex-direction: column;
    justify-content: center;
    gap: 2vh;
    height: 15%;
  }

  .navbar, ul {
    justify-content: space-evenly;
    width: 100%;
  }

  #about {
    width: 100vw;
    height: 100%;
  }

  .about-content {
    justify-content: center;
    flex-direction: column-reverse;
  }

  .about-content img {
    width: 100%;
    max-width: none;
  }

  #reviews {
    width: 100vw;
    height: 100%;
  }

  #reviews img {
    max-height: none;
  }

  #reviews div, figure {
    height: 100%;
  }

  .reviews-container {
    flex-direction: column;
    align-items: start;
    width: 100%;
  }

  .reviews-card {
    height: 100%;
    width: 100%;
  }

  .reviews-card img {
    object-fit: contain;
  }

  #contact {
    height: 100%;
  }

  #contact > div {
    height: 100%;
    flex-direction: column;
    gap: 24px;
  }

  .form-container {
    height: 100%;
    margin: 0;
  }

  .form-container input {
    font-size: 4vw;
  }

  iframe {
    width: 100%;
  }
}