* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  scroll-behavior: smooth;
}
body {
  background-image: url("./assest/foto/background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
html,
body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  padding-top: 18px;
  padding-bottom: 14px;
  background-color: whitesmoke;
}
header h1 {
  font-size: 34px;
}
header ul {
  position: absolute;
  right: 20px;
  display: flex;
  flex-direction: row;
  gap: 24px;
}
header ul li a {
  font-size: 18px;
  color: black;
  cursor: pointer;
  display: none;
}
header ul li a:hover {
  color: grey;
}
header ul .isHere {
  color: grey;
}
.menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 100;
  background-color: orange;
  transition: all 0.2s ease-in-out;
}
.menu li {
  margin-top: 40px;
}
.menu li a {
  padding: 10px;
  display: inline-block;
  text-decoration: none;
  color: #473d30;
  text-align: center;
  transition: 0.15s ease-in-out;
  position: relative;
  text-transform: uppercase;
  font-size: 24px;
}
.menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: white;
  transition: 0.15s ease-in-out;
}
.menu li a:hover:after {
  width: 100%;
}
.menu .close-menu,
.menu .open-menu,
.fa-bars,
.fa-navicon {
  margin: 2px;
  font-size: 24px;
}
.menu .close-menu:hover,
.menu .open-menu:hover,
.fa-bars:hover,
.fa-navicon:hover {
  cursor: pointer;
}
.close-menu {
  transform: translateY(40px);
}
.close-menu,
.open-menu {
  color: black;
}
#check:checked ~ .menu {
  right: 0;
}
#check {
  display: none;
}
.intro {
  color: orange;
  text-align: center;
  font-size: 24px;
}
.intro h1 {
  margin-top: 100px;
  color: white;
  text-shadow: 3px 3px 3px orange;
}
.intro h2,
.prenot h3 {
  color: rgb(255, 197, 23);
  margin-top: 20px;
  margin-bottom: 40px;
  text-decoration: underline;
}
.orari {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.orari .box,
.orari .boxNoSconto {
  background-color: white;
  padding: 16px;
  height: 18vh;
  border-radius: 4px;
}
.orari .box h3,
.orari .boxNoSconto h3 {
  color: black;
  margin-bottom: 8px;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
}
.orari .box ul li,
.orari .boxNoSconto ul li {
  margin: 4px;
  color: #473d30;
}
.orari .box #special {
  background-color: orangered;
  color: white;
  padding: 4px;
}
.prenot {
  background-color: rgb(242, 158, 3, 0.6);
  margin: 40px;
  padding: 16px;
}
.prenot h3 {
  margin-top: 10px;
}
.prenot .box {
  display: flex;
  flex-direction: column;
}
.prenot form label {
  color: white;
  margin: 4px 0;
}
.prenot .box input,
.prenot .box textarea {
  height: 3vh;
  margin: 14px auto;
  border: none;
  border-radius: 14px;
  padding: 4px;
  font-size: 14px;
  width: auto;
}
.prenot .box textarea {
  height: 10vh;
}
.prenot .box input:focus,
.prenot .box textarea:focus {
  outline: none;
}
.prenot .box input[type="submit"] {
  font-size: 16px;
  background-color: orange;
  width: auto;
  height: 4vh;
}
.prenot .box input[type="submit"]:hover {
  text-decoration: underline;
  background-color: rgb(255, 229, 113);
  cursor: pointer;
}
.prenot .box span {
  text-transform: uppercase;
  text-decoration: underline;
  color: rgb(111, 67, 47);
}
.descrizione {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.descrizione h3 {
  color: white;
  font-size: 30px;
  text-shadow: 3px 3px 3px orange;
}
@keyframes suEgiu {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.descrizione svg {
  width: 45px;
  height: 45px;
  z-index: -2;
  animation: suEgiu 1s ease-in-out infinite;
}
.descrizione a {
  display: inline-block;
  cursor: pointer;
  padding: 12px;
}
.Contmenu {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 10px;
}
.Contmenu .piatti {
  padding-right: 10px;
}
.Contmenu .piatti.content {
  color: white;
}
.Contmenu .piatti h2 {
  font-size: 26px;
  font-style: italic;
  text-decoration: underline;
  margin-bottom: 4px;
}
.Contmenu .piatti ul li {
  margin: 4px 0;
  font-size: 18px;
}
.collage,
.contatti {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  padding: 20px;
  gap: 20px;
}
.collage img {
  width: 50%;
  border-radius: 10%;
}
.collage .foto {
  display: flex;
  flex-direction: column;
  margin: 18px 0;
}
.collage .foto p {
  color: white;
  font-size: 24px;
  font-style: italic;
}
.collage .foto .img_dx {
  align-self: flex-start;
}
.collage .foto .img_sx {
  align-self: flex-end;
}
.contatti {
  margin-bottom: 40px;
}
.contatti h2 {
  color: white;
  margin-bottom: 10px;
  text-shadow: 3px 3px 3px orange;
}
.contatti ul li {
  text-align: center;
  margin: 6px 0;
  color: rgb(255, 255, 255);
}
.contatti ul span {
  font-weight: 700;
}
footer {
  background-color: rgb(242, 158, 3, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  gap: 24px;
}
footer .box1 {
  margin-top: 40px;
}
footer .box1 svg {
  margin: 0 16px;
}
footer .box2 h3 {
  position: relative;
  z-index: -2;
  color: white;
  font-style: italic;
  transform: rotate(-4deg);
}
footer .box3 {
  margin-top: 20px;
  text-align: center;
}
footer .box3 .bordo {
  color: white;
}
footer .box3 p {
  color: rgb(214, 199, 199);
  font-size: 14px;
}
@media screen and (min-width: 320px) {
  header h1,
  .contatti ul span {
    font-size: 16px;
  }
  .intro h1 {
    font-size: 30px;
  }
  .intro h2,
  .prenot h3,
  .prenot form label {
    font-size: 22px;
  }
  .contatti ul li {
    font-size: 14px;
  }
  .collage .foto p {
    font-size: 18px;
  }
  footer .box2 h3 {
    font-size: 20px;
  }
  .orari {
    flex-direction: column;
    gap: 60px;
  }
  .orari .box,
  .orari .boxNoSconto {
    width: 50%;
    height: auto;
  }
  .Contmenu {
    gap: 40px;
    text-align: center;
  }
  footer .box1 svg {
    width: 25px;
    height: 25px;
  }
  footer .box3 h4 {
    display: inline-flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    gap: 10px;
  }
  footer .box3 .bordo {
    border: none;
    padding: 0;
  }
  footer .box3 p {
    margin-top: 20px;
  }
}
@media screen and (min-width: 425px) {
  header h1,
  .prenot .box span {
    font-size: 18px;
  }
  .intro h1 {
    font-size: 26px;
  }
}
@media screen and (min-width: 1000px) {
  .nav-bar {
    display: none;
  }
  header ul li a {
    display: flex;
  }
}
@media screen and (min-width: 1024px) {
  header h1,
  .intro h1 {
    font-size: 34px;
  }
  .intro h2 {
    font-size: 28px;
  }
  .prenot h3 {
    font-size: 34px;
  }
  .prenot form label {
    font-size: 26px;
  }
  .prenot .box span {
    font-size: 24px;
  }
  .contatti h2 {
    font-size: 38px;
  }
  .contatti ul span,
  .contatti ul li {
    font-size: 18px;
  }
  footer .box2 h3 {
    font-size: 30px;
  }
  footer .box3 h4 {
    display: block;
    text-align: center;
    font-size: 18px;
  }
  .orari {
    flex-direction: row;
  }
  .orari .box,
  .orari .boxNoSconto {
    width: 10%;
    height: 24vh;
  }
  .menu .close-menu,
  .menu .open-menu,
  .fa-bars,
  .fa-navicon {
    margin: 4px;
  }
  footer .box1 svg {
    width: 35px;
    height: 35px;
  }
  footer .box3 .bordo {
    border-left: 3px solid orange;
    padding: 16px;
  }
}
input::placeholder {
  color: gray;
  font-style: italic;
  font-size: 14px;
  opacity: 0.8;
}
