* {
  box-sizing: border-box;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
img {
  width: 100%;
}
:root {
  --maincolor: #ffd69b;
  --fontcolor: #42260f;
  --wfontcolor: #faf6f3;
  --accentcolor: #de7032;
  --mobilecolor: #faac3d;
}
body {
  padding-top: 90px;
}
.header {
  background-color: var(--maincolor);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
a {
  color: #42260f;
  font-family: "komet", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 0px;
  text-decoration: none;
}

.col-2-sm {
  padding-top: 30px;
  color: #42260f;
  font-family: "komet", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
}
header a {
  transition: 200ms ease-in;
}

header a:hover {
  color: var(--accentcolor);
}
.home {
  background: url(images/bowl.webp), url(images/background.webp);
  background-size: contain, cover;
  background-repeat: no-repeat;
  height: calc(100vh - 90px);
  text-align: right;
  background-position: left bottom;
}

.main__content {
  padding-top: 80px;
  display: block;
}
.container h1 {
  font-size: 4em;
  color: #faf6f3;
  font-family: "pacaembu", sans-serif;
  font-weight: 800;
  font-style: normal;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.home a {
  font-family: "pacaembu", sans-serif;
  color: #42260f;
  font-weight: 700;
  font-style: normal;
  background-color: var(--maincolor);
  padding-inline: 60px;
  padding-block: 25px;
  border-radius: 20px 20px 50px 50px;
  border: 5px solid var(--accentcolor);
  font-size: 1.6em;
  display: inline-block;

  transition: 200ms ease-in-out;
}
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.home a:hover {
  transform: translateY(-8%);
}

.home img {
  height: 60px;
  margin-top: 150px !important;
}
.logo {
  width: 165px;
}
img.slogan {
  display: none;
}
/*MENU*/
#menu {
  background-color: #faf6f3;
}
.col-4 h2 {
  text-align: center;
}
span {
  font-weight: 700;
}

.menu-header {
  text-align: center;
  color: #42260f !important;
  text-decoration: none;
  text-shadow: none !important;
  padding-top: 80px;
}
/*CONTACT*/
#contact {
  background-color: #faac3d;
}
.contact-header {
  text-align: center;
  color: #42260f !important;
  text-decoration: none;
  text-shadow: none !important;
  padding-top: 80px;
}

/* ABOUT*/
#about {
  background-color: #faf6f3;
  padding-bottom: 50px;
}
.about img {
  display: block;
}
.about-header {
  text-align: center;
  color: #42260f !important;
  text-decoration: none;
  text-shadow: none !important;
  padding-top: 25px;
}

/* MOBILE*/

@media only screen and (max-width: 700px) {
  .home img {
    display: none;
  }
  .home h1 {
    font-size: 2em !important;
  }
  .main__content {
    padding-top: 50px;
  }
  header .row {
    float: none !important;
  }
  .col-2-sm {
    padding-top: 0px;
  }
  .items {
    background-color: #faac3d;
    clear: both;
  }
  .items .col-2-sm {
    display: block;
    width: 25%;
    text-align: center;
  }
  div.header div.container {
    width: 100%;
  }
  .logo {
    display: inline-block;
  }

  img.slogan {
    display: inline-block;
    width: 60%;
    padding-left: 30px;
    padding-bottom: 15px;
  }
  #submit-button {
    background-color: white;
    font-family: "tassita";
    font-weight: 500px;
    font-style: normal;
    border: none;
    color: black;
  }
  .contact-us form input,
  textarea {
    background-color: rgba(255, 255, 255, 0.5);
    width: 100%;
    margin-bottom: 30px;
    height: 30px;
    padding: 8px;
    border-radius: 5px;
    color: white;
  }
  ::placeholder {
    font-family: "sans-serif";
    color: white;
  }
  textarea {
    height: 70px;
    resize: none;
  }
  .contact-us form input,
  textarea:focus {
    outline: none;
  }
  .menu-header {
    padding-top: 115px;
  }

  .contact-header {
    padding-top: 115px;
  }
  .about-header {
    padding-top: 115px;
  }
}
