/* ========== Grundstyles ========== */
/* playfair-display-sc-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display SC';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/playfair-display-sc-v17-latin/playfair-display-sc-v17-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* playfair-display-sc-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display SC';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/playfair-display-sc-v17-latin/playfair-display-sc-v17-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/roboto-v47-latin/roboto-v47-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v47-latin/roboto-v47-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-family: 'Playfair var';
  src: url('../fonts/playfair/Playfair[opsz,wdth,wght].ttf') format('truetype');
  font-display: swap;
}





html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #fafafa;
  color: #000;
  width: 100%;
  max-width: 100%;
  height: calc(var(--vh) * 100);
}




/*=====================================*/
/*=====================================*/
/*=====================================*/

/* Navba mit html auf andere übertragen und header.js chekcne */

/*=====================================*/
/*=====================================*/
/*=====================================*/

.navbar-white {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  height: 12vh;
  z-index: 999;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  font-family: 'Playfair Display SC';
  padding-top: 2.5rem;
}
@media (max-width: 768px) {
  .navbar-white {
    height: 10vh;
  }
}

.navbar-white.initial-white {
  background-color: transparent;
  color: white;
  font-family: 'Playfair Display SC';
  
}

.navbar-white.scrolled {
  background-color: white;
  color: black;
  border-bottom: 1px solid black;
  height: 8vh;
  padding-top: 20px;
}

.navbar-white.menu-open .center-button-white {
  display: none;
}
.navbar-white.menu-open .mobile-nav-white {
  justify-content: space-between;
}

/* Mobile Navigation */
.mobile-nav-white {
  display: flex;
  width: 100%;
  justify-content: space-between;
  z-index: 1200;
  align-items: center;
  position: relative;
}

/* Desktop Navigation */
.navbar-white.initial-white .center-button-white {
  justify-self: center;
  border: 1px solid black;
  padding: 0.5rem 1rem;
  transition: 0.5s ease, opacity 0.5s ease;
  font-family: 'Playfair Display SC';
  font-weight: 200;
  background-color: black;
  color: white;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  min-width: max-content;
  white-space: nowrap;
  text-align: center;
}

.center-button-white:hover {
  border: 1px solid black;
  background-color: white !important;
  color: black !important;
  opacity: 1;
  cursor: pointer;
  pointer-events: auto !important;
}
.navbar-white.scrolled .center-button-white {
  opacity: 1;
  cursor: pointer;
  pointer-events: auto !important;
}

@media (max-width: 768px) {
  .center-button-white {
    padding: 0.2rem 1rem;
    opacity: 1;
    cursor: pointer;
    pointer-events: auto;
  }
}

.logo-place-white img {
  width: 3.5rem;
  height: 3.5rem;
  padding-top: 3px;
  transition: 0.3s ease;
}
.navbar-white.scrolled .logo-place-white img {
  width: 2.8rem;
  height: 2.8rem;
  padding-top: 3px;
  /* Passe hier ggf. weitere Abstände an */
}

.menu-toggle-container-white {
  display: flex;
  align-items: center;
  flex-direction: row;
  z-index: 1200;
}

/* Burger Menu */
.menu-toggle-white {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 2rem;
  height: 2rem;
  justify-content: center;
  align-items: center;
  align-self: flex-end;
  
}
.menu-toggle-white.active {
  align-self: flex-end;
}
.burger-white {
  width: 2.2rem;
  height: 0.33rem;
  background-color: none;
  transition: 0.4s;
  border-radius: 2rem;
  transform-origin: center;
  border: 1.3px solid black;
}


.menu-toggle-white.active .burger-white:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: none;
  border: 1.3px solid white;
}
.menu-toggle-white.active .burger-white:nth-child(2) {
  opacity: 0;
}
.menu-toggle-white.active .burger-white:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: black;
  border: 1.3px solid white;
}

/* Menü-Label */
.menu-label-white {
  right: 0.5rem;
  color: black; /* Von Anfang an schwarz */
  font-family: 'Playfair Display SC', sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  position: relative;
  text-align: center;
  justify-content: center;
  align-items: center;
  transition: 0.44s ease;
}
@media (max-width: 769px) {
  .menu-label-white {
    font-size: 0.9rem;
  }
}
.menu-label-white span {
  display: inline-block;
  transition: color 0.3s;
  position: relative;
}

/* Slide-out (nach oben raus) */
.slide-out {
  animation: slideOut 0.3s ease;
}

/* Slide-in (von oben rein) */
.slide-in {
  animation: slideIn 0.3s ease;
}

@keyframes slideOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Burger im scrolled Zustand (Farbe wechseln) */
.navbar-white.scrolled .burger-white {
  background-color: none;
  border: 1.3px solid black;
}
.navbar-white.scrolled .menu-label-white {
  color: black;
}

/* Ausklappbares Menü (Mobile) */
.nav-menu-white {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: black;
  transform: translateY(-100%);
  transition: 0.5s;
  opacity: 0;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left: 3rem;
}

.nav-menu-white.active {
  transform: translateY(0);
  opacity: 1;
}

/* Wrapper für die vier Spalten */
.menu-white-grid {
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding-top: 4rem;
}


@media (min-width: 480px) {
  .menu-white-grid {
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding-top: 4rem;
  }
  .nav-menu-white {
    justify-content: left;
    padding-left: 6rem !important;
  }
  .menu-column li {
    margin-bottom: 1.5rem !important;
  }
  .menu-column a {
    color: white;
    font-size: 2rem !important;
    text-transform: capitalize;
    font-family: 'Playfair Display SC';
    text-decoration: none;
    transition: 0.3s ease;
  }
}
/* Ab Tablet: vier Spalten nebeneinander */
@media (min-width: 1024px) {
  .menu-white-grid {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 6rem !important;
    margin-top: -2rem;
    padding: 2rem;
  }
  .nav-menu-white {
    justify-content: center;
    padding-left: 0rem !important;
  }
  .menu-column li {
    margin-bottom: 1.5rem;
  }
}


.menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-column li {
  margin-bottom: 1rem;
}

.menu-column a {
  color: white;
  font-size: 1.8rem;
  text-transform: uppercase;
  font-family: 'Playfair var';
  font-weight: 200;
  text-decoration: none;
  transition: 0.3s ease;
}

.menu-column a:hover {
  color: #ffffff8c;
}

/* Reservieren-Button */
.nav-menu-button-white {
  border: 1px solid black;
  background-color: white;
  color: black;
  text-align: center;
  font-size: 1.8rem;
  transition: 0.5s ease;
  font-family: 'Playfair var';
  font-weight: 200;
  text-transform: uppercase;
  display: inline-block;
  margin-top: -0.25rem;
  cursor: pointer;
  padding: 0.2rem 1.2rem;
}

.nav-menu-button-white:hover {
  border: 1px solid white;
  background-color: black;
  color: white !important;
}











/* ====================================
   Footer
==================================== */
.footer {
  background: #000;
  color: #fefefe;
  padding: 3rem 2rem;
  margin-top: 6rem;
  padding-bottom: 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #fefefe;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-family: 'Playfair Display SC';
}
.footer-section h5 {
  color: #fefefe;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-family: 'Playfair Display SC';
}

.footer-label {
  color: #fefefe;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  font-family: 'Roboto';
  margin: 0;
}

.footer-section ul {
  list-style: none;
  padding-left: 0;
  font-family: 'Roboto';
}

.footer-section ul li {
  margin-bottom: 0.5rem;
  font-family: 'Roboto';
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s ease;
  font-family: 'Roboto';
}
.footer-section ul li a:hover {
  color: #aaa;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-bottom p {
  padding: 0;
}











/* Ausgangspositionen */
.slide-in-left, .slide-in-right, .slide-in-top, .slide-in-bottom {
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: all 0.8s ease-out;
}

.slide-in-left {
  transform: translateX(-35px);
}
.slide-in-right {
  transform: translateX(35px);
}
.slide-in-top {
  transform: translateY(-35px);
}
.slide-in-bottom {
  transform: translateY(35px);
}

/* Optionale Verzögerung */
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}
.delay-6 {
  transition-delay: 0.6s;
}
.delay-7 {
  transition-delay: 0.7s;
}
.delay-8 {
  transition-delay: 0.8s;
}
.delay-9 {
  transition-delay: 0.9s;
}
.delay-10 {
  transition-delay: 1s;
}

/* Wenn sichtbar */
.animate-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}