@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Work+Sans:400,600");

html {
  box-sizing: border-box;
  font-size: 62.5%; /* Setze 1rem auf 10 Pixel, was 10px = 1rem entspricht */
}

body {
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.6rem; /* 16px, falls 1rem = 10px */
  line-height: 1.6; /* Standard-Zeilenhöhe */
  margin: 0;
  padding: 0;
  background-color: white !important;
}

h1 {
  font-size: 5.6vh !important; /* Größere Überschriften */
  font-family: "Playfair Display", serif;
}

h2 {
  font-size: 4.2vh !important;
  font-family: "Playfair Display", serif;
}

h3 {
  font-size: 4vh !important;
  font-family: "Playfair Display", serif;
}

h4 {
  font-size: 3.4vh !important;
  font-family: "Playfair Display", serif;
}

h5 {
  font-size: 3vh !important;
  font-family: "Playfair Display", serif;
}

h6 {
  font-size: 2.6vh !important;
  font-family: "Playfair Display", serif;
}

p {
  font-size: 2.2vh !important;
  margin-bottom: 1.6vh; /* Standard-Abstand unter Absätzen */
}

.hero {
  position: relative;
  height: 44vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Um das geblurte Bild innerhalb des Hero-Bereichs zu halten */
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(https://t4.ftcdn.net/jpg/02/94/26/33/360_F_294263329_1IgvqNgDbhmQNgDxkhlW433uOFuIDar4.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: blur(
    10px
  ); /* Hier kannst du die Stärke des Blur-Effekts einstellen */
  z-index: -1; /* Damit das geblurte Bild hinter dem Inhalt liegt */
}

body {
  margin: 0;
  background: #222;
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.navbar-toggler {
  order: -1;
}

.logo {
  padding: 20px 40px;
}

.navbar-nav .nav-item {
  margin-left: 20px;
}

.navbar-nav .nav-link:hover {
  color: #f06181;
}
.navbar-nav .nav-link {
  color: #ab1548;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  position: relative; /* Positionierung des Elternelements für das Pseudo-Element */
}

.navbar-nav .nav-link::before {
  content: "";
  display: block;
  height: 5px;
  background-color: #f06181;
  position: absolute;
  top: -5px; /* Anpassung der Position des Balkens */
  left: 0;
  width: 0%;
  transition: all ease-in-out 250ms;
}

.navbar-nav .nav-link:hover::before {
  width: 100%;
}

.section {
  position: relative;
  background-color: black; /* Hintergrundfarbe auf Schwarz setzen */
  background-image: url(assets/grilled-chicken.jpg); /* Hintergrundbild */
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 11vh 20vw rgba(0, 0, 0, 0.5);
  overflow: hidden; /* Verhindert das Überlaufen des Parallax-Hintergrundbildes */
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white; /* Farbe für das Negativ */
  mix-blend-mode: difference; /* Mischmodus, um das Bild in Negativ zu konvertieren */
  z-index: -1; /* Damit das Bild hinter den Kinderelementen liegt */
  transform: translateZ(-5.5vh) scale(2); /* Parallax-Effekt */
}

.section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black; /* Farbe für das Bild */
  mix-blend-mode: luminosity; /* Mischmodus, um das Bild in Schwarz-Weiß zu konvertieren */
  z-index: -2; /* Damit das Bild hinter dem Negativ liegt */
  transform: translateZ(-5.5vh) scale(3); /* Parallax-Effekt */
}

.button1 {
  display: inline-block;
  width: 22vh;
  height: 11vh;
  border-radius: 10px;
  border: 1px solid #03045e;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in;
  z-index: 1;
  background-color: white;
}

.button1::before,
.button1::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  transform: skew(15deg);
  transition: all 0.5s;
  overflow: hidden;
  z-index: -1;
}

.button1::before {
  left: -1.1vh;
  background: #ab1548;
}

.button1::after {
  right: -1.1vh;
  background: #f06181;
}

.button1:hover::before,
.button1:hover::after {
  width: 55%;
}

.button1:hover a {
  color: white;
  transition: 0.3s;
}

.button1 a {
  color: #ab1548;
  text-decoration: none;
  transition: all 0.3s ease-in;
  font-size: 2vh;
}

.card1 {
  margin: 5vh 0;
  width: 55vh; /* Größere Breite */
  height: 44vh; /* Größere Höhe */
  padding: 2vh; /* Größerer Innenabstand */
  display: flex;
  font-size: 5.6vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 40px; /* Größerer Randradius */
  color: white;
  background: #ab1548 !important;
  box-shadow: 2vh 2vh 4vh rgba(171, 21, 72, 0.5),
    /* Dunklerer Schatten */ -2vh -2vh 4vh rgba(171, 21, 72, 0.5); /* Hellerer Schatten */
  font-size: 2vh; /* Größere Schriftgröße */
}

.card1 h1 {
  font-size: 5.6vh;
  padding-top: 1vh;
}

.card1 h2 {
  font-size: 4.2vh;
}

.card2 {
  margin: 5vh 0;
  width: 55vh; /* Größere Breite */
  height: 66vh; /* Größere Höhe */
  display: flex;
  flex-direction: column; /* Elemente werden vertikal angeordnet */
  justify-content: space-around; /* Elemente werden gleichmäßig vertikal verteilt */
  align-items: center;
  border-radius: 40px; /* Größerer Randradius */
  padding: 2vh;
  color: #ab1548;
  background: white !important;
  box-shadow: 0 0 33vh rgba(0, 0, 0, 0.1); /* Leichter Schatten für bessere Tiefenwirkung */
  transition: box-shadow 0.3s ease; /* Hinzufügen einer sanften Animation für den Schatten */
}

.card2 h3 {
  margin: 0 2vh; /* Kleinerer Abstand oben und unten */
  font-size: 4vh; /* Größere Schriftgröße */
}

.section2 {
  position: relative;
  overflow: hidden; /* Verhindert das Überlaufen des verschwommenen Hintergrundbildes */
}

.section2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* Setze die Höhe auf 100vh, um das gesamte Bild sichtbar zu machen */
  background-image: url(assets/restaurant.webp);
  background-repeat: no-repeat;
  background-position: center;
  /* filter: blur(px); Anpassen der Stärke des Blur-Effekts */
  z-index: -1;
}

.section2 .container {
  position: relative; /* Stelle sicher, dass der Container über dem geblurten Hintergrund liegt */
  z-index: 1;
}
.section2-header {
  color: #1a1a1a;
  text-align: center;
  padding: 2vh 0 !important;
  color: #ab1548;
}

.card3 {
  background-color: white;
  border: none;
  border-radius: 1vh;
  box-shadow: 0 0.5vh 1vh rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 51vh;
  margin: 5vh;
}

.card3:hover {
  transform: translateY(-5px);
}

.card-body3 {
  padding: 2vh;
  text-align: center;
}

.card3 h4 {
  color: #e25073;
}

.card3 h3 {
  color: #ab1548;

  line-height: 1.4;
  margin-bottom: 1.3vh !important;
}

.card3 p {
  color: #ffb6d3;
  font-size: 1.8vh !important;
  line-height: 1.6;
}

.footer-distributed {
  background: white;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: bold 16px sans-serif;
  padding: 55px 50px;
}

.contacthero {
  position: relative;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('./assets/kontakt.avif');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: white;
  text-align: center;
}

.contacthero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.contacthero-content {
  position: relative;
  z-index: 2;
}

.contacthero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.contacthero p {
  font-size: 1.6rem;
}

.contact-section {
  padding: 4rem 2rem;
  background: white;
  text-align: center;
}

.contact-section h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #ab1548;
}

.contact-section p {
  font-size: 1.6rem;
  color: #333;
}

.contact-form {
  margin-top: 3rem;
}

.contact-form h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form label {
  margin: 1rem 0 0.5rem;
  font-size: 1.6rem;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  max-width: 500px;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

.contact-form button {
  padding: 1rem 2rem;
  font-size: 1.6rem;
  color: white;
  background-color: #ab1548;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #880e35;
}

.map-section {
  padding: 4rem 2rem;
  background: #f0e1e7;
  text-align: center;
}

.map-section h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #ab1548;
}

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


/*footer*/

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right {
  display: inline-block;
  vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left {
  width: 40%;
}

/* The company logo */

.footer-distributed h3 {
  color: #222;
  font: normal 36px "Open Sans", cursive;
  margin: 0;
}

.footer-distributed h3 span {
  color: #ab1548;
}

/* Footer links */

.footer-distributed .footer-links {
  color: #222;
  margin: 20px 0 12px;
  padding: 0;
}

.footer-distributed .footer-links a {
  display: inline-block;
  line-height: 1.8;
  font-weight: 400;
  text-decoration: none;
  color: inherit;
}

.footer-distributed .footer-company-name {
  color: #222;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center {
  width: 35%;
}

.footer-distributed .footer-center i {
  background-color: #ab1548;
  color: white;
  font-size: 1.8rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope {
  font-size: 17px;
  line-height: 38px;
}

.footer-distributed .footer-center p {
  display: inline-block;
  color: #222;
  font-weight: 400;
  vertical-align: middle;
  margin: 0;
}

.footer-distributed .footer-center p span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 2;
}

.footer-distributed .footer-center p a {
  color: #ab1548;
  text-decoration: none;
}

.footer-distributed .footer-links a:before {
  content: "|";
  font-weight: 300;
  font-size: 20px;
  left: 0;
  color: #222;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

/* Footer Right */

.footer-distributed .footer-right {
  width: 20%;
}

.footer-distributed .footer-company-about {
  line-height: 20px;
  color: #222;
  font-size: 14px !important;
  font-weight: normal;
  margin: 0;
}

.footer-distributed .footer-company-about span {
  display: block;
  color: #222;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-distributed .footer-icons {
  margin-top: 25px;
}

.footer-distributed .footer-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color: #ab1548;
  border-radius: 2px;

  font-size: 20px;
  color: white;
  text-align: center;
  line-height: 35px;

  margin-right: 3px;
  margin-bottom: 5px;
}

@media (max-width: 880px) {
  .footer-distributed {
    font: bold 14px sans-serif;
  }

  .footer-distributed .footer-left,
  .footer-distributed .footer-center,
  .footer-distributed .footer-right {
    display: block;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }

  .footer-distributed .footer-center i {
    margin-left: 0;
  }
}

.company-logo {
  max-width: 20vw; /* Logo wird nie breiter als sein Container */
  height: 10vh; /* Verhindert Verzerrungen und hält das Seitenverhältnis */
  margin-right: 1rem; /* Fügt Platz zwischen Logo und Text hinzu */
}

.section3 {
  position: relative;
  height: 60vh;
  background-image: url(https://cdn.pixabay.com/photo/2017/07/14/23/25/kebab-2505237_1280.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dunkles Overlay */
  z-index: 1;
}

.section3 .content {
  position: relative;
  z-index: 2; /* Stellen Sie sicher, dass der Inhalt über dem Overlay angezeigt wird */
  color: white; /* Textfarbe anpassen, damit er auf dem dunklen Hintergrund sichtbar ist */
}

.section3 h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 20px;
  text-align: center;
}

.section3 p {
  font-size: 1.25rem;
}

.speisekarte {
  padding: 50px 0;
}

#result {
  margin: 50px;
  display: grid;
  justify-content: center;
  align-items: start;
  grid-template-columns: repeat(
    3,
    1fr
  ); /* Responsive Grid mit mindestens 300px Breite */
  gap: 20px; /* Abstand zwischen den Karten hinzugefügt */
}

.foodcard {
  display: flex;
  flex-direction: column;
  width: 500px;
  margin-bottom: 60px;
}

.foodcard > div {
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.5);
}

.foodcard-image {
  width: 500px;
  height: 300px;
}

.foodcard-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.foodcard-text {
  margin: -30px auto;
  margin-bottom: -50px;
  height: auto;
  width: 400px;
  background-color: #1d1c20;
  color: #fff;
  padding: 20px;
}

.foodcard-meal-type {
  font-style: italic;
}

.foodcard-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  margin-top: 5px;
}

.foodcard-body {
  font-size: 1.25rem;
}

.foodcard-price {
  width: 100px;
  height: 100px;
  background-color: #ab1548;
  color: #fff;
  margin-left: auto;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center; /* Sorgt dafür, dass der Preis am unteren Rand der Karte bleibt */
}

.speisekartebody {
  background: #f0e1e7 !important;
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

.section4 {
  position: relative;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("https://t4.ftcdn.net/jpg/02/94/26/33/360_F_294263329_1IgvqNgDbhmQNgDxkhlW433uOFuIDar4.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: white;
  text-align: center;
}

.section4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.section4-content {
  position: relative;
  z-index: 2;
}

.section4 h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.section4 p {
  font-size: 1.6rem;
}

.historybtn {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

.historybtn:hover {
  transition: all 0.5s ease-in-out;
}

.we-are-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
  height: 900px;
}

@media screen and (max-width: 860px) {
  .we-are-block {
    height: 2200px;
  }
}

@media screen and (max-width: 500px) {
  .we-are-block {
    height: 2300px;
  }
}

#about-us-section {
  background: #e25073;
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media screen and (max-width: 860px) {
  #about-us-section {
    flex-direction: column;
    justify-content: space-between;
  }
}

.about-us-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  overflow: hidden;
}

@media screen and (max-width: 860px) {
  .about-us-image {
    position: relative;
    width: 100%;
    height: 45%;
  }
}

@media screen and (max-width: 747px) {
  .about-us-image {
    height: 35%;
  }
}

@media screen and (max-width: 644px) {
  .about-us-image img {
    position: absolute;
    left: -220px;
  }
}

.about-us-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-evenly;
  width: 40%;
  height: 80%;
  margin-right: 850px;
  margin-left: 12px;
  z-index: 2;
}

@media screen and (max-width: 1353px) {
  .about-us-info {
    margin-right: 400px;
    width: 60%;
    background: #e25073;
    padding: 0px 25px 0px 0px;
  }
}

@media screen and (max-width: 1238px) {
  .about-us-info {
    margin-right: 340px;
    width: 100%;
  }
}

@media screen and (max-width: 1111px) {
  .about-us-info {
    margin-right: 270px;
  }
}

@media screen and (max-width: 910px) {
  .about-us-info {
    margin-right: 150px;
  }
}

@media screen and (max-width: 860px) {
  .about-us-info {
    margin: 0px 0px 0px 0px !important;
    padding: 0px 20px 0px 20px !important;
    width: 100%;
    height: 55%;
    align-items: center;
  }
}

@media screen and (max-width: 747px) {
  .about-us-info {
    height: 65%;
  }
}

.about-us-info h2 {
  color: white;
  font-size: 40pt;
  text-align: right;
}

@media screen and (max-width: 860px) {
  .about-us-info h2 {
    text-align: center;
  }
}

.about-us-info p {
  color: white;
  font-size: 14pt;
  text-align: right;
}

@media screen and (max-width: 860px) {
  .about-us-info p {
    text-align: center;
  }
}

.about-us-info a {
  background-color: white;
  color: #e25073;
  width: 180px;
  text-align: center;
  padding: 15px 0px 15px 0px;
  font-size: 14pt;
  box-shadow: rgba(226, 80, 115, 0.3) 0px 20px 30px -10px; /* Anpassung der Box-Schatten-Farbe */
}

.about-us-info a:hover {
  background: #404140;
  color: white;
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  transform: translateY(10px);
}

#history-section {
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media screen and (max-width: 860px) {
  #history-section {
    flex-direction: column;
    justify-content: space-between;
  }
}

.history-image {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 820px;
  height: 100%;
  overflow: hidden;
}

@media screen and (max-width: 860px) {
  .history-image {
    position: relative;
    width: 100%;
    height: 40%;
  }
}

@media screen and (max-width: 747px) {
  .history-image {
    height: 35%;
  }
}

@media screen and (max-width: 644px) {
  .history-image img {
    position: absolute;
    right: -220px;
  }
}

.history-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
  width: 40%;
  height: 80%;
  margin-left: 850px;
  margin-right: 12px;
  z-index: 2;
}

@media screen and (max-width: 1353px) {
  .history-info {
    margin-left: 400px;
    width: 60%;
    background: #ffffff99;
    padding: 0px 0px 0px 25px;
  }
}

@media screen and (max-width: 1238px) {
  .history-info {
    margin-left: 340px;
    width: 100%;
  }
}

@media screen and (max-width: 1111px) {
  .history-info {
    margin-left: 270px;
  }
}

@media screen and (max-width: 910px) {
  .history-info {
    margin-left: 150px;
  }
}

@media screen and (max-width: 860px) {
  .history-info {
    margin: 0px 0px 0px 0px !important;
    padding: 0px 40px 0px 40px !important;
    width: 100%;
    height: 60%;
    align-items: center;
  }
}

@media screen and (max-width: 747px) {
  .history-info {
    height: 65%;
  }
}

.history-info h2 {
  color: #ab1548;
  font-size: 40pt;
  text-align: left;
}

@media screen and (max-width: 860px) {
  .history-info h2 {
    text-align: center;
  }
}

.history-info p {
  color: #ab1548;
  font-size: 14pt;
  text-align: left;
}

@media screen and (max-width: 860px) {
  .history-info p {
    text-align: center;
  }
}

.history-info a {
  background-color: #ab1548;
  color: white;
  width: 180px;
  text-align: center;
  padding: 15px 0px 15px 0px;
  font-size: 14pt;
  box-shadow: rgba(171, 21, 72, 0.5) 0px 20px 30px -10px; /* Anpassung der Box-Schatten-Farbe */
}

.history-info a:hover {
  background: #e25073; /* Leicht dunkler als das Original */
  color: white;
  box-shadow: rgba(171, 21, 72, 0.8) 0px 22px 70px 4px; /* Anpassung der Box-Schatten-Farbe */
  transform: translateY(10px);
}


/* Media Query für mobile Geräte */
@media (max-width: 768px) {
  .section {
    height: auto; /* Ändere die Höhe auf auto, damit der Inhalt nicht abgeschnitten wird */
  }

  .card1,
  .card2 {
    width: 90%; /* Ändere die Breite der Karten, um sie auf kleinen Bildschirmen besser zu passen */
    margin: 2vh auto; /* Zentriere die Karten horizontal */
  }

  #result {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .foodcard {
    width: 100%;
  }

  .foodcard-image {
    width: 100%;
    height: auto;
  }

  .foodcard-text {
    margin: -30px auto;
    margin-bottom: -50px;
    height: auto;
    width: 100%;
    background-color: #1d1c20;
    color: #fff;
    padding: 20px;
  }
}
