p.center.con.temporary {
  margin: 2rem;
  text-align: center;

  /* Adjust as needed */
}



html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #333;
  overflow-x: hidden;

}

.reveal {
  transform: translateY(2rem);
  opacity: 0;
  transition: .4s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}



.main-nav {
  margin-left: auto;
}

.title {
  letter-spacing: -0.5px;
}

.btn:link,
.btn:visited {
  font-size: 2.4rem;
  padding: 2.2rem 4.2rem;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s;
  border-radius: 10px;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.round-img {
  border-radius: 10px;
}

.img {
  width: 100%;
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 80px;
}


.border-bottom {
  border-bottom: 6px solid #40c057;
}

.special {
  color: #187B2B;
}


.header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: .5rem 3.6rem;
  width: 100%;

}


.sticky .header {
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, .9);
  z-index: 9999;
  height: 8rem;
  top: 0;
  bottom: 0;
  position: fixed;
  width: 100%;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.06);
}


.section-hero {
  margin-top: 9.6rem;
}


.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 5.6rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  text-decoration: none;
  color: #212529;
  font-weight: 500;
  display: inline-block;
  font-size: 2rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #339a46;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 10px;
  color: #f8f9fa;
  background-color: #339a46;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #5f9369;
}



.logo {
  width: auto;
  height: 100%;
}




/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #111827;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}


.daten {
  margin-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}


/**************************/
/* HERO */
/**************************/

.section-hero {
  padding: 3.6rem 0 9.6rem 0;
}

.hero {
  display: grid;
  max-width: 150rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin: 0 auto;
  gap: 9.6rem;
  padding: 0 3.6rem;
}

.hero-title {
  font-size: 5.2rem;
  animation: moveInLeft 1s ease-in-out;
  backface-visibility: hidden;

}

.hero-description {
  font-size: 2.4rem;
  line-height: 1.7;
  margin-top: 3.2rem;
  animation: moveInLeft 1s ease-in-out;
  backface-visibility: hidden;

}

.hero-img {
  box-shadow: 0 0.5rem 4rem 0 rgba(0, 0, 0, 0.1);
  animation: moveInRight 1s ease-in-out;
  backface-visibility: hidden;
}


@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }

  80% {
    translate: transformX(1rem);
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }

  80% {
    translate: transformX(-1rem);
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }



  100% {
    opacity: 1;
    transform: translate(0);
  }
}


.btn-main:link,
.btn-main:visited {
  background-color: #339a46;
  color: #f8f9fa;
  margin-top: 5.6rem;
  z-index: 2;
  position: relative;
  transition: all 400ms;
  animation: moveInLeft 1s ease-in-out;
  backface-visibility: hidden;


}

.btn-main:hover {
  background: #5f9369;
  color: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


.btn-main:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}


.btn-main::after {
  content: '';
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 400ms;
  z-index: -1;
  background-color: #339a46;
}


.btn-main:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
  background-color: #5f9369;
}


.btn-animate {
  animation: moveInBottom .5s ease-out .75s;
  animation-fill-mode: backwards;
}



/**************************/
/* ABOUT ME */
/**************************/

.section-about {
  padding: 9.6rem 4.8rem;
}

.about {
  margin: 0 auto;
  max-width: 140rem;
  display: grid;
  align-items: flex-start;
  grid-template-columns: repeat(2, 1fr);
  gap: 10.28rem;
}

.about-title {
  font-size: 4.2rem;
  margin-bottom: 3.2rem;
}

.about-text {
  font-size: 2.2rem;
  line-height: 1.7;

}

.about-text:not(last-child) {
  margin-bottom: 0.5rem;
}

.about-text:last-child {
  margin-bottom: 15.6rem;
}

.about-img {
  /* margin-top: 2.8rem; */
  /* margin-left: -10rem; */
  height: auto;
  margin-bottom: 3rem;
}

.zeit {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0 auto;
}

.time {
  font-size: 3.2rem;
  margin: 0 auto;
  margin-bottom: 2.4rem;

}

.time-text {
  place-self: center;
  font-size: 2.2rem;
  margin-top: 1.8rem;
}

.time-text:last-child {
  margin-bottom: 4.8rem;
}

.social {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  gap: 2rem;
}




.facebook {
  font-size: 4.8rem;
  color: #405DE6;
  transition: all .3s;

}


.facebook:hover {
  transform: translateY(-.6rem);

}

.instagram:hover {
  transform: translateY(-.6rem);

}

.instagram {
  background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);

  font-size: 4.8rem;
  color: #fff;
  border-radius: 7px;
  transition: all .3s;


}

/**************************/
/*   */
/**************************/
.section-menu {
  padding: 9.6rem 0;
}

.menu {
  margin: 0 auto;
  max-width: 100rem;
  display: grid;
  gap: 5.6rem;
}

.menu-title {
  font-size: 4.2rem;
  margin-top: 3rem;
}


.meal {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  border-radius: 11px;
  overflow: hidden;
  transition: all 0.4s;
}

.meal:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.06);
}

.meal-a:link,
.meal-a:visited {
  text-decoration: none;
  color: #333;
}





.meal-content {
  padding: 3.2rem 4.8rem 4.8rem 4.8rem;
}


.meal-title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 3.2rem;
}

.meal-attributes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.meal-attribute {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.meal-icon {
  height: 2.4rem;
  width: 2.4rem;
  color: #40c057;
}

.meal-img {
  width: 100%;
}

/**************************/
/* GALLERY */
/**************************/

.section-gallery {
  padding: 9.6rem 0;
  overflow: hidden;
}


.gallery-title {
  font-size: 5.2rem;
  margin-bottom: 2.4rem;
}


.gallery-imgs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.6rem;
  row-gap: 3.6rem;
  padding: 1.6rem;
  overflow: hidden;

}



.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  display: block;
  width: 100%;
  transition: all 0.4s;
}

.gallery-item img:hover {
  transform: scale(1.1);
}



/**************************/
/* reservierung  */
/**************************/

.section-reservierung {
  padding: 9.6rem 2rem;

}

.res-title {
  font-size: 5.2rem;
  margin-bottom: 4.8rem;
}

.res-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.8rem;
}

.con {
  margin-top: -6.4rem;
  font-size: 2.8rem;
}


.mail-title {
  font-size: 3.6rem;
  margin-bottom: 4.8rem;
}


.google {
  margin-right: 2rem;
}


.feedback-input {
  color: #333;
  font-weight: 500;
  font-size: 1.8rem;
  border-radius: 5px;
  line-height: 2.2rem;
  background-color: transparent;
  border: 2px solid #40c057;
  transition: all 0.3s;
  padding: 1.3rem;
  margin-bottom: 1.5rem;
  width: 100%;
  outline: 0;
}

.feedback-input:focus {
  border: 2px solid #2d863d;
}


[type="submit"] {
  width: 100%;
  background: #40c057;
  border-radius: 10px;
  cursor: pointer;
  color: #fff;
  border: 0;
  font-size: 2.4rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  transition: all 0.3s;
  margin-top: -0.4rem;
  font-weight: 700;
}

[type="submit"]:hover {
  background: #339a46;
}

/**************************/
/* IMPRESSUM */
/**************************/

.section-impressum {
  padding: 9.6rem 3.6rem;
  display: grid;
}

.impressum-title {
  font-size: 5.2rem;
  margin-bottom: 4.8rem;
}

.impressum-text {
  font-size: 2rem;
}


/**************************/
/* BELOW 1250PX */
/**************************/

@media (max-width:78.125em) {
  html {
    font-size: 56.25%
  }

  .about-title {
    font-size: 3.2rem
  }

  .about-text {
    font-size: 2rem
  }

  .menu-title {
    font-size: 3.2rem
  }

  .menu-subtitle {
    font-size: 2.4rem
  }

  .menu-text {
    font-size: 2rem
  }

  .mail-title {
    font-size: 3.2rem
  }


  .res-3-col {
    display: flex;
    flex-direction: column;
  }

  .con {
    margin-top: 1rem;
  }

  .google {
    width: 100%;
    margin: 0 auto;
  }
}

/**************************/
/* BELOW 1050 PX  */
/**************************/

@media (max-width:66.875em) {
  html {
    font-size: 58%
  }



}


/**************************/
/* BELOW   950 PX */
/**************************/

@media (max-width:59.375em) {
  html {
    font-size: 50%
  }

  .hero-title {
    font-size: 4.4rem
  }

  .hero-description {
    font-size: 2.8rem
  }

  .about {
    display: flex;
    flex-direction: column;
  }



  .about-title {
    font-size: 4.8rem
  }

  .about-text {
    font-size: 2.4rem;
  }

  .about-img {
    width: 50%;
  }

  .menu-title {
    font-size: 4.8rem
  }

  .menu-subtitle {
    font-size: 3rem
  }

  .menu-text {
    font-size: 2.4rem
  }

  .mail-title {
    font-size: 4.8rem
  }

  .con {
    font-size: 2.4rem;
  }

  .btn-mobile-nav {
    display: block;
    z-index: 9999
  }




  .main-nav {
    background-color: rgba(255, 255, 255, .95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .4s ease-out;
    transform: translateX(100%);
    z-index: 9999;
  }

  .nav-displayed .main-nav {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(0)
  }

  .nav-displayed .icon-mobile-nav[name=close-outline] {
    display: block
  }

  .nav-displayed .icon-mobile-nav[name=menu-outline] {
    display: none
  }

  .main-nav-list {
    flex-direction: column;
    gap: 6.4rem
  }

  .main-nav-link:link,
  .main-nav-link:visited {
    font-size: 4rem
  }

  .header {
    display: flex;
    justify-content: space-between;
  }

  .impressum {
    position: static;
  }


  .google {
    width: 100%;
    margin: 0 auto;
  }


}



/**************************/
/* BELOW 650 PX */
/**************************/

@media (max-width:40.625em) {
  html {
    font-size: 55%
  }

  .hero {
    display: flex;
    flex-direction: column;
  }

  .about-title {
    font-size: 3.6rem;
  }

  .about-text {
    font-size: 2.2rem;
  }

  .about-img {
    width: 100%;
  }

  .time {
    font-size: 2.8rem;
  }

  .time-text {
    font-size: 2.2rem;
  }


  .instagram {
    font-size: 4rem;
  }

  .facebook {
    font-size: 4rem;
  }

  .btn:link,
  .btn:visited {
    font-size: 2.4rem;
    padding: 2rem 3.2rem;
  }




  .hero-title {
    font-size: 4.2rem
  }

  .hero-text {
    font-size: 3.6rem;
  }

  .mobile-gone {
    display: none
  }

  .grid-3-col {
    display: flex;
    gap: 1.6rem
  }

  .section-hero {
    display: flex;
    flex-direction: column;
  }



  .hero-description {
    font-size: 2.8rem
  }


  .menu-title {
    font-size: 4.2rem;
  }

  .gallery-imgs {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-title {
    font-size: 4.2rem;
  }

  .mail-title {
    font-size: 4.2rem;
  }

  .con {
    font-size: 2.4rem;
  }


  .google {

    margin: 0 auto;
  }


}

/**************************/
/* BELOW 555 PX */
/**************************/

@media (max-width:37.5em) {
  html {
    font-size: 50%
  }

  .about-img {
    width: 105%
  }


  .grid-3-col {
    display: flex;
    gap: 1.6rem
  }

}


/* below 450 px */

@media (max-width: 28.125em) {
  .about-text {
    font-size: 1.8rem;
  }

  .res-title {
    font-size: 4.2rem;
  }

}