* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

h2 {
  font-size: 48px;
  font-family: Playfair Display, serif;
  color: #24211C;
  margin-bottom: 20px;
  font-weight: 700;
}

p {
  font-size: 18px;
  font-family: sans-serif;
  color: #444;
  line-height: 1.6;
}
/* Buttons */
.btn {
  background-color: #d48806;
  color: white;
  padding: 10px 18px;
  border-radius: 4px;
  display: inline-block;
  margin: 5px 10px 0 0;
  transition: background 0.3s;
}
.btn:hover {
  background-color: #d48806;
}
.btn.dark {
  background-color: #444;
}

#toTopBtn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: transparent; /* Gold passend zu deiner CI */
  backdrop-filter: blur(15px);
  border: 2px solid #d48806;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  display: none; /* wird erst beim Scrollen sichtbar */
  z-index: 999;
}

#toTopBtn:hover {
  cursor: pointer;
}


/* Container allgemein */
.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 60px 20px;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* === Navbar Basis (Desktop & Tablet) === */
.navbar {
  background: transparent !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  z-index: 10;
}

.menu-toggle {
  display: none; /* nur mobil sichtbar */
}

.logo a {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-family: "Playfair Display", serif;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #f5a623;
}

.cta .btn-cta {
  backdrop-filter: blur(5px);
  background-color: transparent;
  color: #fff;
  padding: 10px 20px;
  border-radius: 32px;
  border: 1px solid #d48806;
  font-weight: 600;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta .btn-cta:hover {
  background-color: #d48806;
  transform: scale(1.05);
}

/* === Tablet: 768px–1023px === */
@media (max-width: 1023px) and (min-width: 768px) {
  .navbar {
    padding: 15px 40px;
  }

  .nav-links {
    gap: 25px;
  }

  .logo a {
    font-size: 1.5rem;
  }
}

/* === Smartphone: max-width: 767px === */
@media (max-width: 767px) {
  .navbar {
    position: absolute; /* bleibt über dem Hintergrundbild */
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px 15px 20px;
    background: transparent;
    z-index: 10;
  }

  /* Toggle links */
  .menu-toggle {
    display: block;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
  }

  /* Logo exakt zentriert */
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .logo a {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
  }

  /* CTA rechts außen */
  .cta {
    display: block;
    margin-left: auto;
  }

  .cta .btn-cta {
    padding: 8px 14px;
    font-size: 0.8rem;
    border-radius: 24px;
  }

  /* Menü Overlay bleibt gleich */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
  }
}




.hero {
  background: url("images/hero-bg.webp") no-repeat center center/cover;
  height: 100vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  z-index: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  z-index: 1;
  max-width: 80%;
  margin-top: -2rem;
}

.hero-text {
  margin-bottom: 2rem;
  max-width: 70%;
  align-self: center;
}

.hero-heading {
  font-family: "Playfair Display", serif;
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero-subline {
  font-size: 1.5rem;
  color: #e0dbdb;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-main,
.btn-sec {
  padding: 16px 32px;
  border-radius: 32px;
  font-weight: 700;
  transition: transform 0.4s ease;
  font-size: 1rem;
}

.btn-main:hover,
.btn-sec:hover {
  transform: scale(1.05);
}

.btn-sec {
  backdrop-filter: blur(10px);
  background-color: transparent;
  border: 2px solid #fff;
  transition: all 0.4s ease;
}

.btn-sec:hover {
  background-color: #fff;
  color: #24211c;
}

.arrow-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: float 3s ease-in-out infinite;
  cursor: pointer;
  z-index: 2;
}

.arrow-down svg {
  width: 32px;
  height: 32px;
  color: white;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.arrow-down:hover svg {
  opacity: 1;
  transform: scale(1.1);
}

@keyframes float {
  0%, 100% {
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* === Tablet (768px–1023px) === */
@media (max-width: 1023px) {
  .hero {
    height: 80vh;
    padding: 0 40px;
  }

  .hero-heading {
    font-size: 3rem;
  }

  .hero-subline {
    font-size: 1.25rem;
    max-width: 80%;
    margin: 0 auto;
  }

  .hero-text {
    max-width: 90%;
  }

  .btn-main,
  .btn-sec {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .arrow-down {
    bottom: 30px;
  }
}

/* === Smartphone (max-width: 767px) === */
@media (max-width: 767px) {
  .hero {
    height: auto;
    min-height: 90vh;
    padding: 100px 20px 60px;
    background-position: center;
  }

  .hero-content {
    margin-top: 0;
    max-width: 100%;
  }

  .hero-heading {
    font-size: 2.2rem;
    line-height: 1.2;
    padding: 0 0.5rem;
  }

  .hero-subline {
    font-size: 1rem;
    color: #e0dbdb;
    margin-bottom: 2rem;
  }

  .hero-text {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-main,
  .btn-sec {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 14px 0;
  }

  .arrow-down {
    bottom: 20px;
  }

  .arrow-down svg {
    width: 28px;
    height: 28px;
  }
}

/* === Kleine Smartphones (max-width: 480px) === */
@media (max-width: 480px) {
  .hero-heading {
    font-size: 1.9rem;
  }

  .hero-subline {
    font-size: 0.95rem;
  }

  .btn-main,
  .btn-sec {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
}


/* Philosophie Sektion */
.philosophie {
  background-color: #faf8f5;
  padding: 60px 0;
}

.philosophie-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
  
}

.image-wrapper {
  height: 600px;
  width: 584px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  object-fit: cover;
}

.philosophie-text {
  flex: 1;
  min-width: 280px;
}

.philosophie-text h2 {
  font-size: 48px;
  font-family: Playfair Display, serif;
  color: #24211C;
  margin-bottom: 20px;
  font-weight: 700;
}

.philosophie-text p {
  font-size: 18px;
  font-family: sans-serif;
  color: #444;
  line-height: 1.6;
}


.philosophie-text .link {
  font-size: 18px;
  font-family: sans-serif;
  color: #f5a623;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.philosophie-text .link:hover {
  color: #c78200;
}

/* === Tablet: 768px–1023px === */
@media (max-width: 1023px) and (min-width: 768px) {
  .philosophie {
    padding: 50px 0;
  }

  .philosophie-grid {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .image-wrapper {
    width: 100%;
    height: 450px;
  }

  .philosophie-text h2 {
    font-size: 40px;
  }

  .philosophie-text p {
    font-size: 17px;
  }
}

/* === Smartphone: max-width: 767px === */
@media (max-width: 767px) {
  .philosophie {
    padding: 40px 0;
  }

  .philosophie-grid {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .image-wrapper {
    width: 100%;
    height: 320px;
  }

  .image-wrapper img {
    border-radius: 10px;
  }

  .philosophie-text {
    padding: 0 20px;
  }

  .philosophie-text h2 {
    font-size: 35px;
    margin-bottom: 16px;
  }

  .philosophie-text p {
    font-size: 16px;
    line-height: 1.6;
  }

  .philosophie-text .link {
    font-size: 16px;
  }
}


/* Signature Dishes */
.dishes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}


.dishes-header{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 42rem;
  margin-bottom: 64px;
}

.dishes-header h2{
  margin: 0;
}
.dish-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  font-family: 'Segoe UI', sans-serif;
  padding: 0 0 20px 0;
  max-width: 380px;
  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dish-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.image-wrap {
  aspect-ratio: 4 / 3; /* ✅ Verhältnis beibehalten */
  width: 100%;
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ✅ Kein Stretching, kein Weißraum */
  display: block;
  border-radius: 8px 8px 0 0;
}
.dish-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 16px 20px 6px;
  font-family: 'Georgia', serif; /* Oder eine edle Serifenschrift */
}

.dish-card p {
  color: #666;
  font-size: 16px;
  margin: 0 20px 10px;
  line-height: 1.4;
}

.price {
  margin: 0 20px;
  font-weight: 700;
  font-size: 24px;
  color: #c28800; /* statt knalligem Orange */
}

.menu-btn {
  margin-top: 3rem;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  background-color: #24211c;
  border-radius: 48px;
  color: white;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.menu-btn:hover {
  transform: scale(1.05);
}

/* === Tablet: 768px–1023px === */
@media (max-width: 1023px) and (min-width: 768px) {
  .dishes {
    justify-content: center;
    gap: 24px;
  }

  .dish-card {
    flex: 1 1 45%;
    max-width: 45%;
    max-height: none;
  }

  .dish-card h3 {
    font-size: 22px;
  }

  .dish-card p {
    font-size: 15px;
  }

  .price {
    font-size: 22px;
  }

  .dishes-header {
    margin-bottom: 50px;
    max-width: 36rem;
  }
}

/* === Smartphone: max-width: 767px === */
@media (max-width: 767px) {

  .dishes {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
  }
  .image-wrap {
    width: 100%;
    height: auto;
  }

  .image-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain; /* oder cover, je nach gewünschtem Stil */
    border-radius: 8px 8px 0 0;
  }

  .dish-card {
    width: 100%;
    max-width: 340px;
    height: auto; /* Damit die Karte mitwächst */
  }

  .dish-card h3 {
    font-size: 20px;
  }

  .dish-card p {
    font-size: 15px;
  }

  .price {
    font-size: 20px;
  }

  .dishes-header {
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .dishes-header h2 {
    font-size: 35px;
  }

  .dishes-header p {
    font-size: 16px;
    color: #555;
  }

  .menu-btn {
    margin-top: 2rem;
    font-size: 1rem;
    padding: 0.9rem 1.8rem;
  }
}



/* Dining area */
/* === Base Styles (Desktop) === */
.dining-bg {
  position: relative;
  height: 70vh;
  background: url('images/location.webp') no-repeat center center/cover;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: 1;
  overflow: hidden;
}

.dining-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  z-index: 0;
}

.dining-bg > * {
  position: relative;
  z-index: 1;
}

.dining-text {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.dining-text h2 {
  color: #fff;
  font-size: 3.75rem; /* 60px */
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.dining-text p {
  color: #dfdfdf;
  font-size: 1.5rem; /* 24px */
}


/* === Tablet: 768px–1023px === */
@media (max-width: 1023px) and (min-width: 768px) {
  .dining-bg {
    height: 60vh;
    padding: 80px 40px;
  }

  .dining-text {
    max-width: 70%;
  }

  .dining-text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .dining-text p {
    font-size: 1.25rem;
  }
}


/* === Smartphone: max-width: 767px === */
@media (max-width: 767px) {
  .dining-bg {
    height: 70vh;
    padding: 60px 20px;
    background-position: center right; /* Etwas Fokus auf oberen Bildbereich */
  }

  .dining-text {
    max-width: 100%;
  }

  .dining-text h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .dining-text p {
    font-size: 1rem;
    line-height: 1.5;
    color: #f0f0f0;
  }
}


/* Kontaktbereich */
.contact {
  background-color: #fefaf5;
  padding: 80px 20px;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  margin: 0;
  font-size: 2.5rem;
}

.contact-header p {
  font-size: 1.2rem;
  color: #666;
  margin-top: 0.5rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.contact-box {
  flex: 1 1 400px;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
  line-height: 1.6;
  max-width: 450px;
  background-color: #fff;
}

.contact-box.white {
  background-color: #fff;
}

.contact-box.gold {
  background-color: #b57e00;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* verteilt oberen & unteren Teil gleichmäßig */
  text-align: center;
  padding: 2.5rem;
  border-radius: 16px;
  min-height: 100%;
  max-width: 450px;
}

/* Inhalt gezielt strukturieren */
.contact-box.gold h3,
.contact-box.gold p:first-of-type {
  margin-bottom: 1.5rem;
}

/* Unterer Teil mit Button und Telefonnummer */
.contact-box.gold .bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}


.contact-box h3 {
  font-size: 1.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-box p {
  margin: 10px 0;
  font-size: 1rem;
}

.icon {
  color: #c28800;
  margin-right: 8px;
  font-size: 1.1rem;
}

.reserve-btn {
  margin-top: 1rem;
  background-color: #fff;
  color: #000;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.reserve-btn:hover {
  transform: scale(1.05);
  background-color: #f0f0f0;
}

.call-note {
  font-weight: 600;
  color: #fff;
  display: inline-block;
  margin-top: 0.5rem;
}

/* === Karte === */
.map {
  margin: auto;
  margin-top: 60px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  width: 70%;
}

.map iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: none;
}

/* === Tablet: 768px–1023px === */
@media (max-width: 1023px) and (min-width: 768px) {
  .contact {
    padding: 60px 30px;
  }

  .contact-header h2 {
    font-size: 2.2rem;
  }

  .contact-header p {
    font-size: 1.1rem;
  }

  .contact-grid {
    gap: 20px;
  }

  .contact-box {
    flex: 1 1 45%;
    max-width: 45%;
  }

  .map {
    width: 85%;
  }
}

/* === Smartphone: max-width: 767px === */
@media (max-width: 767px) {
  .contact {
    padding: 50px 15px;
  }

  .contact-header h2 {
    font-size: 2rem;
  }

  .contact-header p {
    font-size: 1rem;
  }

  .contact-grid {
    flex-direction: column;
    gap: 20px;
  }

  .contact-box {
    width: 100%;
    max-width: 380px;
  }

  .contact-box.gold {
    padding: 2rem 1.5rem;
  }

  .reserve-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .map {
    width: 100%;
    margin-top: 40px;
  }

  .map iframe {
    height: 300px;
  }
}



/* Footer */
.footer {
  background-color: #24211C; /* dunkler Hintergrund für starken Kontrast */
  color: #fff;
  padding: 4rem 2rem 2rem;
  font-family: 'Montserrat', sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
}

.footer-col h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #f5d48a; /* Gold-Akzent */
}

.footer-col p {
  color: #d8d6d0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-logo {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: #f5d48a;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: #d8d6d0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #f5d48a;
}

.social-icons a {
  display: inline-block;
  margin-right: 0.75rem;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #aaa;
}

