/**


**fontfamilies: 
**       - 'Montserrat'
**       - 'Passion One'
*/

:root {
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

body {
  font-family: "ubuntu", serif;
  width: 100%;
  height: 100vh;
  background-color: #cddb9b;
}
p {
  text-align: center;
  font-size: 18px;
}

h1,
.contentBx .label {
  font-family: "Playfair Display", serif;
}
.contentBx .label {
  font-size: 25px;
}
@media (max-width: 930px) {
  .contentBx .label {
    font-size: 20px;
  }
}

.hero-wrapper {
  margin-top: 70px;
  padding-top: 0px;
}
.hero-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url(../pictures/mood1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -100;
  animation: change 30s infinite ease-in-out;
}

.hero-description p {
  max-width: 650px;
  padding: 0px 0px 10px 0px;
  color: white;
  font-size: 20px;
  font-weight: 700;
}
.bannerimg {
  text-align: center;
}
#bannerimg {
  width: 30%;
}
@media (max-width: 930px) {
  .bannerimg {
    margin-top: 10px;
  }
  #bannerimg {
    width: 50%;
  }
}

.hero {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
#heroheader {
  color: white;
  font-size: 35px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 930px) {
  #heroheader {
    font-size: 25px;
  }
}
.hero-description {
  text-align: center;
  margin-bottom: 0px;
}

/*MAIN CONT SECTION*/
/*SERVICES*/

.services-wrapper {
  background-color: #ffffff;
  padding: 0px 0px 0px 0px;
}
.services {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #930000;
  background-size: cover;
  padding: 20px 0px;
}
.services-header h1 {
  margin-top: 0px;
  color: #ebdebc;
  margin-bottom: 20px;
  z-index: -20000;
  padding-top: 30px;
  font-size: 35px;
}
.services-description p {
  max-width: 750px;
  /* font-size: var(--step--1);*/
  color: #ebdebc;
  padding-bottom: 70px;
}
.services-boxes {
  display: flex;
  justify-content: space-around;
}

/*MAIN ABOUT SECTION*/
.about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 0px 0px 0px;
}
.about-article {
  margin-bottom: 50px;
}
.about-article h1 {
  margin-bottom: 20px;
  font-size: 35px;
}
.about-article p {
  /*font-size: var(--step--1);*/
  max-width: 750px;
  margin-bottom: 50px;
}

/*MAIN SECTION REFERENCIES*/

.contact-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 80px;
  background: url(../pictures/contact.png);
}
.contact-container h1 {
  font-size: 35px;
}

@media (max-width: 1024px) {
  .contact-wrapper {
    flex-direction: column-reverse;
  }
}
.contact-p {
  max-width: 700px;
  padding-top: 10px;
}
ul {
  list-style-type: none;
}

.contact-container h1 {
  margin-top: 80px;
}

footer {
  background-color: rgb(32, 32, 32);
  width: 100%;
  padding: 80px;
}

footer ul {
  padding: 0px;
}
footer ul li {
  margin-bottom: 5px;
}
.logo-section {
  text-align: right;
}
.logo-section img {
  max-width: 150px;
}
.logo-section li {
  color: #000000;
}
footer section {
  display: flex;
  justify-content: space-between;
}

.babyblue {
  color: #000000;
}
.no-link-text {
  color: #000000;
  text-decoration: none;
}
.bold {
  font-weight: bolder;
}

/*RESPONSIVE SETTINGS*/

@media (max-width: 1064px) {
  .hero-description p,
  .services-description p,
  .box p,
  .contact-p,
  .about-article {
    max-width: 80%;
    margin: 0 auto;
  }
  .services-boxes {
    flex-direction: column;
  }
}
@media (max-width: 375px) {
  .hero-description p {
    max-width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 425px) {
  .hero-description p {
    max-width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  footer {
    padding: 80px 40px 0px 40px;
  }

  #privacy {
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  footer section {
    flex-direction: column;
  }
  footer section .logo-section {
    text-align: left;
    margin-top: 15px;
  }
}

/* ANIMATIONS */
section {
  overflow: hidden;
}
section .animate,
section .animate-02 {
  transition: 0.5s;
}
/*SECTION 2 ANIMATE*/

.sec-002 .animate {
  transform: translateX(-300px);
  opacity: 0;
}
.sec-002.show-animate .animate {
  transform: translateX(0px);
  opacity: 1;
}
.sec-002 .animate-02 {
  transform: translateY(150px);
  opacity: 0;
}

.sec-002.sec-002.show-animate .animate-02 {
  transform: translateY(0);
  opacity: 1;
}
/*SECTION 3 ANIMATE*/
.sec-003 .animate {
  transform: translateX(300px);
  opacity: 0;
}
.sec-003.show-animate .animate {
  transform: translateX(0px);
  opacity: 1;
}

/*SECTION 5 ANIMATE*/
.sec-005 .animate {
  transform: translateY(300px);
  opacity: 0;
}
.sec-005.show-animate .animate {
  transform: translateY(0px);
  opacity: 1;
}

/*OTHER ANIMATIONS*/

.bannerimg {
  text-align: center;
}
#bannerimg {
  width: 30%;
}
@media (max-width: 930px) {
  .bannerimg {
    margin-top: 10px;
  }
  #bannerimg {
    width: 50%;
  }
}

#pizza-box-wrapper {
  width: 50vw;
  display: flex;
  flex-direction: column;
  padding: 20px 0px;
}
#pizza-box-wrapper img {
  margin: 20px 0px;
  border: #cddb9b solid 5px;
}
@media (max-width: 800px) {
  #pizza-box-wrapper {
    width: 90vw;
  }
}

.accordion {
  max-width: 800px;
}

.accordion .contentBx {
  position: relative;
  margin: 10px 20px;
}

.accordion .contentBx .label {
  position: relative;
  padding: 30px;
  background: #930000;
  color: #ebdebc;
  font-weight: bold;
  cursor: pointer;
  border-radius: 10px;
}

.accordion .contentBx .label::before {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1.5em;
}
.accordion .contentBx .foodcontent {
  position: relative;
  background: #ebdebc;
  height: 0;
  overflow: hidden;
  transition: 0.5s;
  overflow-y: auto;
  border-radius: 10px;
}

.accordion .contentBx.active .foodcontent {
  min-height: fit-content;
  max-height: 100vh;
  padding: 20px;
}
.accordion .contentBx.active .label::before {
  content: "-";
}

.foodbox {
  display: flex;
  justify-content: space-between;
}
.foodname {
  text-align: left;
}
.foodname i {
  font-size: 12px;
}

#allergia {
  max-width: 700px;
  font-size: 10;
  margin-bottom: 10px;
  padding: 10px;
}

#allergia p,
#foodlistdesc p {
  padding: 0px 10px;
  max-width: 700px;
  font-size: 14px;
}
#allergia p,
#foodlistdesc p {
  font-size: 14px;
}
.hero-button-line a {
  display: inline-block;
}
.hero-button-line a {
  text-decoration: none;
}

.deliverybtn {
  padding: 15px;
  text-align: center;
  margin: 10px 5px 10px 5px;
  border-radius: 10px;
  box-shadow: #000000 2px 2px 8px;
  color: white;
}
.deliverybtn:hover {
  box-shadow: none;
}
.wolt {
  background-color: #930000;
}
.call {
  background-color: #637b5f;
}
.google-map iframe {
  max-width: 90vw;
  padding: 20px;
}
#contact a {
  font-size: 18px;
  color: white;
  padding: 10px;
  margin-top: 10px;
  text-decoration: none;
}

.wolt:hover {
  color: rgb(0, 153, 255);
  background-color: rgb(32, 32, 32);
  transition: all 0.3s ease-in;
}

.call:hover {
  color: rgb(1, 161, 81);
  background-color: rgb(32, 32, 32);
  transition: all 0.3s ease-in;
}
.location {
  background-color: rgb(32, 32, 32);
  border-radius: 10px;
  box-shadow: #000000 1px 1px 5px;
}
.location:hover {
  scale: 1.1;
}
.no-link-text,
.babyblue {
  color: #cddb9b;
}
#logo-section-text {
  color: #cddb9b;
}

.datawrapper {
  margin: 0 auto;
  max-width: 700px;
  padding: 20px;
}

.datawrapper-content {
  margin: 20px 0px;
}
.datawrapper-content p {
  text-align: left;
}
@keyframes change {
  0% {
    background-image: url(../pictures/mood1.jpg);
  }
  33% {
    background-image: url(../pictures/mood2.jpg);
  }

  66% {
    background-image: url(../pictures/mood3.jpg);
  }
  100% {
    background-image: url(../pictures/mood1.jpg);
  }
}
.bi-facebook {
  font-size: 30px;
}
#socialfbfooter {
  margin-top: 20px;
}
#socialfbfooter .bi-facebook:hover {
  color: rgb(78, 131, 255);
}
.google-map {
  margin-top: 20px;
}
.google-map img {
  max-width: 700px;
}
@media (max-width: 700px) {
  .google-map img,
  .services-description-block p {
    max-width: 90vw;
  }
}
.services-description-block {
  max-width: 700px;
  margin-top: 50px;
}
.services-description-block p {
  margin-top: 20px;
}
.services-description-block p a {
  color: #000000;
  font-size: 20px;
}
