:root {
  --white: #fff;
  --black: #000;
  --red: #b21b17;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--white);
  color: var(--black);
}

/*ToTop Button--------*/
#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 9999; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: var(--red); /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px 30px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 16px; /* Increase font size */
	line-height: 24px; /* Set the line-height for better alignment inside the box */
	text-decoration: none;
  box-shadow: 0px 0px 10px rgba(255,255,255,0.5);
  transition: 0.5s ease;
}

#myBtn:hover {
  transform: scale(1.1);
	text-decoration: none;
}

.ersterVP {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.firstsight {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* HEADER */
header {
  border-bottom: 2px solid var(--red);
  flex: 0 0 auto;
  position: sticky;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
}

.top-bar {
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  font-size: 0.85rem;
  padding: 6px 0;
  letter-spacing: 0.05em;
}

.nav-container {
  width: 100%;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

/* LOGO */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.logo span {
  color: var(--black);
}

/* NAVIGATION */

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin-bottom: 0;
}

nav a {
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 4px;
}

nav a:hover {
  color: #000;
  text-decoration: none;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--red);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/*Hamburger Menu */
.menu_btn {
	display: none;
	height: 35px;
	width: 35px;
	position: relative;
	z-index: 9999;
}

.navbar {
  display: none;
}

/* CTA BUTTON */
.cta {
  border: 2px solid var(--red);
  padding: 10px 18px;
  text-decoration: none;
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}

.cta:hover {
  background-color: var(--red);
  color: var(--white);
  text-decoration: none;
}


/* Hero */

.hero {
    width: 100%;
    display: flex;
    flex: 1;
}

.bs_klein {
  display: none;
}

.hero_rechts {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 0px 15px;
    flex: 1;
}

.hero_rechts .text {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.oeffnungszeiten {
  background: url(../images/pinselstrich.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  padding: 20px;
}

.oeffnungszeiten h4 {
  font-size: 24px;
}

.oeffnungszeiten h4, .oeffnungszeiten h5, .oeffnungszeiten p {
  color: #fff;
}

.text h2, .text h3 {
  animation: auftauchen 2s;
}

.hero_links {
    flex: 1;
}

.hero_links video {
  width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    text-align: center;
    color: var(--red);
    font-family: 'Playfair Display';
    font-size: clamp(2.2rem, 7vw, 4rem);
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    animation: typing 1s steps(16);
}

h2 {
  text-align: center;
    color: var(--red);
    font-family: 'Playfair Display';
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    letter-spacing: 0.02em;
}

h3 {
      font-size: clamp(0.5rem, 3vw, 2.2rem);
}

h4 {
        font-size: clamp(0.6rem, 3.5vw, 1rem);
    color: var(--red);
}

p {
  font-size: clamp(0.5rem, 0.8rem + 0.5vw, 1.55rem);
}

.services {
    width: 100%;
    padding: 0 24px;

    display: flex;
    justify-content: center;
}

.services p {
  font-size: clamp(10px, 2vw, 0.7rem) !important;
}

.row_self {
    width: 32%;
    height: 30vh;
    display: flex;
    justify-content: space-evenly;
    margin: 20px 0px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--red);
  border-radius: 16px;
  text-align: center;
  padding: 30px 0;
  margin: 0px 10px;
  width: 50%;

  display: flex;
  flex-direction: column;
  justify-content: center;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.service-icon {
  overflow: hidden;
  width: 100%;
  height: 30%;
}

.service-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--red);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}


/* Galerie */
#galerie {
  width: 100%;
  min-height: 100vh;
  margin-bottom: -1px !important;
  background-image: url(../images/Welle.svg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.galerie_wrapper {
  width: 95%;
  height: 100%;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
}

.galerie_inhalt {
  display: flex;
}

.c1, .c2, .c3 {
  height: 50vh;
}

.c1 {
  width: 35%;
}
.c2 {
  width: 25%;
}
.c3 {
  width: 40%;
}

.c4 {
  height: 250px;
  width: 100%;
}

.unten {
  height: 50%;
  width: 100%;
}

.item-large, .item-small, .item-xsmall, .item-30 {
  padding: 5px;
}

.item-small {
  width: 100%;
  height: 50%;
}

.item-large {
  width: 100%;
  height: 100%;
}

.item-xsmall {
  width: 50%;
  height: 100%;
}

.item-30 {
  width: calc(100%/3);
  height: 100%;
  overflow: hidden;
}

.item-30 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#galerie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(1.1);
}

#galerie img, #galerie video {
    transition: 0.5s ease;
}

#galerie img:hover, #galerie video:hover {
  transform:scale(1.03);
}

.galerie_button {
 width: 250px;
  height: clamp(40px, 6vh, 80px);
  color: var(--red);
  font-size: clamp(14px, 0.2vw + 0.8rem, 3vw);
  border: none;
  background: #fff;
  transition: 0.5s ease;
}

.galerie_button:hover {
    box-shadow: 0px 0px 15px #fff;
    transform: translateY(-5px);
}

.vertikalertext span{
  font-size: 60px;
  font-weight: 700;
  font-family: 'Playfair Display';
}

/*About*/
#about {
  background: var(--red);
  overflow: hidden;
  position: relative;
  color: #fff !important;
  margin-bottom: -1px !important;
}

.about_wrapper {
  width: 95%;
  height: 100%;
  margin: 0 auto;
  display: flex;
}

#about h2 {
  color: #fff;
  text-align: left;
  font-size: clamp(20px, 9vw, 44px);
}

#about h3 {
  font-size: clamp(16px, 7vw, 34px);
}

.about_text {
  width: 70%;
}

.about_content {
  display: flex;
  position: relative;
}

.about_chef {
  position: relative;
  width: 30%;
}

#about .about_chef img {
  width: calc(22vw + 13em);
  transform: rotate(-45deg);
  position: absolute;
  right: -65%;
  top: 15px;
  z-index: 999;
}

/*Entdecken-------*/
#entdecken {
  background: var(--red);
  color: #fff; 
  overflow: hidden;
  margin-bottom: -1px !important;
}

#entdecken a, #bar a {
  text-decoration: none;
  color:var(--red);
}

#entdecken h2 {
  color: #fff;
  text-align: left;
  font-size: clamp(14px, 6vw, 30px);
}

.bg_wave {
  height: 300px;
  width: 100%;
  background: url(../images/welle2.svg);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

#entdecken img {
  filter: drop-shadow(0 18px 25px rgba(255, 255, 255, 0.75));
  transition: 0.5s ease;
}

#entdecken img:hover {
  transform: rotate(15deg);
}

.grafiken {
  width:clamp(150px, 25vw, 600px);
  display: block;
}

/*Bar*/

#bar {
background-color: #0f0f0d;
  color: #fff;
  min-height: 100vh;
}

#bar h3 {
  font-size: clamp(14px, 5vw, 30px);
}

.bar_wrapper {
  width: 95%;
  height: 100%;
  margin: 0 auto;
}

#bar h2 {
  color: #fff;
  text-align: left;
  font-size: clamp(20px, 7vw, 35px);
  border-bottom: 5px solid;
  border-image: linear-gradient(45deg, var(--red), #0f0f0d) 1;
}

#bar img {
    display: block;
  box-shadow:
    0 0 10px rgba(255,255,255,0.15);
  transition: 0.5s ease;
}

.bar_button {
 width: 250px;
  height: clamp(40px, 6vh, 80px);
  color: #0f0f0d;
  font-size: clamp(14px, 0.2vw + 0.8rem, 3vw);
  border: none;
  background: #fff;
  transition: 0.5s ease;
}

.bar_button:hover {
  box-shadow: 0px 0px 15px #fff;
    transform: translateY(-5px);
}

/* Kontakt */

#kontakt {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

.kontakt_wrapper {
  width: 90%;
  height: 100%;
  margin: 0 auto;
}
.logo_k {
  width: 80%;
}

#kontakt i {
  transition: 0.5s ease;
}

#kontakt i:hover {
  transform: scale(1.2);
}

#kontakt a{
  text-decoration: none;
  color:#0f0f0d;
}

.kontakt_k i {
  padding-top: 15px;
}

.kontaktMaps {
  position: relative;
  height: 100%;
}

#kontakt .embed-responsive {
  overflow: visible !important;
}

#kontakt iframe {
  box-shadow: 0px 0px 15px #0f0f0d !important;
}

.kontaktGrafikPizza {
  position: absolute;
  top: 10%;
  right: 0px;
  width: clamp(100px, 15vw, 400px);
}

.kontaktGrafikLoewe {
  position: absolute;
  top: 50%;
  left: 0;
  width: clamp(80px, 11vw, 400px);
}

.kontaktGrafikTomate {
  position: absolute;
  top: -10%;
  left: 10%;
  width: clamp(100px, 13vw, 400px);
}

.form_button {
  padding: 10px 30px;
  background: var(--red);
  color: #fff;
  border: none;
  transition: 0.5s ease;
}

.form_button:hover {
  transform: scale(1.1);
}

footer {
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
}

footer a {
  text-decoration: none;
  color: #fff;
  padding: 0px 15px;
}

footer a:hover {
  text-decoration: underline;
  color: #fff;
}

    @keyframes typing{
        from {
            width: 0;
        }
    }


    @keyframes auftauchen {
      0% {
        opacity: 0%;
      }

      50% {
        opacity: 0%;
      }

      100% {
        opacity: 100%;
      }
    }

@media(max-width: 425px) {
  .cta {
    padding: 5px 10px;
  }

  .oeffnungszeiten h4 {
    font-size: 14px;
  }

  .oeffnungszeiten h5 {
    font-size: 12px;
  }

  #myBtn {
    padding: 10px 20px;
    font-size: 10px;
    right: 15px;
  }
}

@media (max-width: 768px) {

footer {
  font-size: 12px;
}

.oeffnungszeiten {
  background-size: contain;
}

.hero_rechts .text {
  margin-bottom: 0;
}

.galerie_button {
  width: 150px !important;
}

.c4 {
    flex-direction: column;
    width: 100%;
    height: 350px;
  }

  .c4 .item-30:nth-child(2) {
    display: none;
  }

  .c4 .item-30 {
    width: 100%;
  }

  
.galerie_wrapper, .about_wrapper {
  flex-direction: column !important;
}

.galerie_inhalt {
  flex-direction: column;
}

.about_content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about_chef {
  order: -1;
  width: 100%;
  position: static;
  display: flex;
  justify-content: center;
}

.about_text {
  width: 100%;
  order: 1;
}

.about_chef img {
  position: static !important;
  transform: rotate(0deg) !important;
}

.vertikalertext {
  display: flex !important;
  flex-direction: row !important;
}

#kontakt .salamigrafik, .fischgrafik {
  display: block !important;
  position: absolute;
  width: clamp(50px, 20vw, 400px);
}

.salamigrafik {
  top: 3%;
  left: 3%;
}

.fischgrafik {
  top: 30%;
  right: 5%;
  transform: rotate(90deg);
}

#kontakt h2 {
  font-size: 26px;
}
}

    /* RESPONSIVE */
@media (max-width: 1024px) {
  nav ul {
    display: none;
  }

  .hero {
    flex-direction: column;
  }

  .menu_btn {
    display: block;
  }

  .services {
    flex-direction: column;
  }

  .services .row_self {
    width: 100%;
  }

  .hero_links {
    height: 35vh;
  }

  .hero_rechts {
    height: 65vh;
    padding: 10px 15px;
  }

  .text {
    width: 100%;
  }

  .hero_links, .hero_rechts {
    width: 100%;
  }
  
.menu_btn .bar, .menu_btn:before {
    content: '';
    display: block;
    cursor: pointer;
	  margin: 7px 0px;
    width: 100%;
    height: 2px;
    background: #000;
    transition: 0.5s;
}

.menu_btn:after {
	content: '';
    display: block;
    cursor: pointer;
	  margin: 7px 0px;
    width: 75%;
    height: 2px;
    background: #000;
    transition: 0.5s;
}

.menu_btn.is-active {
  position: fixed;
  top: 25px;
  right: 25px;
}

.menu_btn.is-active:before {
    transform: rotate(-45deg) translate(-3px, 7px);
    background: #fff;
}

.menu_btn.is-active:after {
    transform: rotate(45deg) translate(-6px, -9px);
	width: 100%;
  background: #fff;
}

.menu_btn.is-active .bar {
    opacity: 0;
}

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  max-width: 320px;
  height: 100%;
  background-color: #000;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateX(100%);

  z-index: 9999;
}

.navbar li {
  list-style: none;
  margin: 18px 0;
}

.navbar a {
   
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: white;
  text-decoration: none;
  position: relative;
}

.navbar a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
}

.navbar.is-active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.c1, .c3 {
    width: 100% !important;
  }

  .unten .item-xsmall:nth-child(2) {
    display: none !important;
  }

  .unten .item-xsmall {
    width: 100%;
  }

  .c2, .c2 .item-large{
    display: none !important;
   }
  
  .vertikalertext span{
  font-weight: 300 !important;
  font-family: 'Playfair Display', serif;
}

.service-card {
  width: 40%;
}

.galerie_button {
  width: 220px;
}

#bar h2 {
  margin-top: 20px;
}

#bar .bar_galerie {
  padding: 10px !important;
}

#kontakt .logo_k{
  width: 50%;
}

#reservieren img {
  display: none;
}
}