html {
    scroll-behavior: smooth;
} 

body {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    background-color: #560b19;
    color: #f8e9d2;
}
  
.hero {
    text-align: center;
    padding: 60px 20px;
    background: url('images/hintergrund.png') center center / cover no-repeat fixed;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(86, 11, 25, 2) 0%, rgba(86, 11, 25, 1) 40%, rgba(86, 11, 25, 0.7) 80%, transparent 100%);
    z-index: -1;
}
  
.logo {
    width: 300px;
    height: auto;
    margin-bottom: 4px;
}
  
h1 {
    font-size: 60px;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: #f8e9d2;
}
  
.subtitle {
    margin-top: 8px;
    margin-bottom: 16px;
    font-size: 19px;
}
  
.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
  
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid #d4af6d; /* gold */
    color: #d4af6d;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 6px;
    background: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
}
  
.btn:hover {
    background-color: rgba(212, 175, 109, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 175, 109, 0.3);
}
  
.icon {
    width: 20px;
    height: 20px;
    stroke: #d4af6d;
    fill: none;
}

.category-icon {
  width: 28px;
  height: 28px;
}

.unsere-kueche {
    background-color: #f8f0e6;
    color: #3b1f1f;
    text-align: center;
    padding: 80px 20px;
}
  
.unsere-kueche h2 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
  
.unsere-kueche p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}
  
.gerichte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.gerichte-marquee {
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.gerichte-track {
  display: flex;
  width: fit-content;
  animation: scrollSpeisen 30s linear infinite;
  gap: 30px;
}

.gerichte-track img {
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  -webkit-box-reflect: below 6px linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

/* Keyframes */
@keyframes scrollSpeisen {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
  
.gericht img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    -webkit-box-reflect: below 6px linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

/* RESERVIERUNG */
.reservation {
  background: url('images/hintergrund.png') center center / cover no-repeat fixed;
  color: #fff;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 20px;
}

.reservation::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(86, 11, 25, 0.6);
  z-index: -1;
}

.reservation h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.reservation p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 20px auto;
  line-height: 1.6;
  text-align: center;
}

.reservation .btn {
  display: inline-block;
  margin: 20px auto 0 auto;
}

/* ÜBER UNS */
.about {
  background-color: #560b19;
  color: #f8e9d2;
  padding: 80px 20px;
}

.about-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-wrapper img {
  width: 450px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  align-self: flex-start;
  margin-top: 80px;
}

.about-text {
  flex: 1 1 500px;
  max-width: 600px;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
}

/* SPEISEKARTE-SEITE */
.speisekarte {
  background-color: #560b19;
  color: #f8e9d2;
  text-align: center;
  padding: 80px 20px;
}

.speisekarte h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.speisekarte p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.speisekarte .btn {
  padding: 12px 24px;
  font-size: 16px;
  border: 1.5px solid #d4af6d;
  color: #d4af6d;
  text-decoration: none;
  border-radius: 6px;
  background: transparent;
  transition: background-color 0.3s ease;
}

.speisekarte .btn:hover {
  background-color: rgba(212, 175, 109, 0.1);
}

/* NEUE REGELN FÜR SPEISEKARTE */
.speisekarte-sektion {
  background-color: #560b19;
  color: #f8e9d2;
  text-align: center;
  padding: 60px 20px;
}

.speisekarte-sektion.beige {
  background-color: #f8f0e6;
  color: #3b1f1f;
}

.speisekarte-sektion h2 {
  color: #d4af6d;
  font-size: 32px;
  margin-bottom: 10px;
  position: relative;
}

.speisekarte-sektion h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 14px;
  background: url('icons/olive-divider.svg') center center no-repeat;
  background-size: contain;
  margin: 10px auto 20px auto;
}

/* ANFAHRT / MAP */
.anfahrt {
  background-color: #f8f0e6;
  color: #3b1f1f;
  text-align: center;
  padding: 80px 20px;
}

.anfahrt h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.anfahrt p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.map-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about .divider {
  width: 50%;
  display: flex;
  justify-content: flex-start;
  margin: 10px 0 30px 0;
}

.about-text .divider {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.about-text .divider img {
  height: 14px;
  opacity: 0.7;
  max-width: 140px;
}

.divider {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.divider img {
  height: 14px;
  opacity: 0.7;
}

.gericht-preis {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: inherit;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .gerichte-grid {
    grid-template-columns: 1fr;
  }

  .unsere-kueche p,
  .reservation p,
  .about-text p,
  .speisekarte p,
  .anfahrt p {
    padding: 0 10px;
  }

  .reservation h2,
  .about-text h2,
  .speisekarte h2,
  .anfahrt h2 {
    font-size: 28px;
  }

  .logo {
    width: 220px;
  }

  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2,
  .about-text p {
    text-align: center;
  }

  /* NEUE REGELN FÜR RESPONSIVE DESIGN */
  .speisekarte-sektion {
    padding: 30px 15px;
  }

  .speisekarte-sektion h2 {
    font-size: 24px;
  }

  .speisekarte-sektion ul {
    font-size: 16px;
  }
}

/* Modal Fenster */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #560b19;
  color: #d4af6d;
  margin: 10% auto;
  padding: 40px 30px;
  border: 1.5px solid #d4af6d;
  border-radius: 8px;
  max-width: 600px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  font-size: 16px;
}

.modal-content h3 {
  margin-top: 0;
  font-size: 22px;
  color: #d4af6d;
}

.modal-content p {
  color: #f8e9d2;
  line-height: 1.6;
}

.modal .close {
  color: #d4af6d;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.modal .close:hover {
  transform: scale(1.2);
}

/* Links im Footer */
.site-footer a {
  color: #d4af6d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #f8e9d2;
}

.site-footer {
  background-color: #560b19;
  color: #d4af6d;
  text-align: center;
  padding: 40px 20px;
  font-size: 16px;
}

.site-footer .footer-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.site-footer .footer-logo {
  width: 160px;
  height: auto;
  margin-bottom: 20px;
}

.site-footer .social-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.site-footer .social-icons img {
  width: 28px;
  height: 28px;
  filter: brightness(0) saturate(100%) invert(76%) sepia(36%) saturate(412%) hue-rotate(4deg) brightness(93%) contrast(93%);
  transition: transform 0.3s ease;
}

.site-footer .social-icons img:hover {
  transform: scale(1.1);
}

/* Animation fürs Modal */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-content {
  animation: fadeIn 0.3s ease-out;
}

.gerichteliste {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.gerichteliste li {
  margin-bottom: 24px;
  text-align: left;
  padding: 0 10px;
  line-height: 1.6;
}

.gericht-name {
  display: block;
  font-weight: 600;
  font-size: 18px;
  color: #d4af6d;
  margin-bottom: 4px;
}

.speisekarte-sektion.beige .gericht-name {
  color: #560b19;
}

.gericht-beschreibung {
  display: block;
  font-size: 16px;
  color: inherit;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-header img,
.section-header svg {
  display: block;
  margin: 0 auto;
}

.section-header h2 {
  margin: 0;
  font-size: 28px;
  color: #d4af6d;
}

.section-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.section-gallery .section-image {
    width: 280px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

.section-gallery .section-image:hover {
    transform: none;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.section-image {
    width: 280px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
    display: block;
    margin: 20px auto;
}

.section-image:hover {
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.back-button-wrapper {
  text-align: center;
  margin: 40px 0;
}