/* ----------------------------------------------------------
   Grundlayout & Reset
---------------------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Alegreya Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #222;
  background: #f7f5f2;
}

/* ----------------------------------------------------------
   Typografie
---------------------------------------------------------- */

h1, h2, h3 {
  font-family: "Alegreya Sans", serif;
  font-weight: 700;
  margin-bottom: .5rem;
  color: #5a1a1a;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.6rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #b5162b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ----------------------------------------------------------
   Header & Navigation
---------------------------------------------------------- */

.header {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.header-top {
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.header-logo-large {
  max-width: 350px;
}

.header-logo-small {
  display: none;
  max-width: 120px;
}

/* Navigation */

.nav {
  background: #b5162b;
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  padding: 1rem;
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: .7rem 0;
}

.nav-list a {
  color: #fff;
  font-weight: 600;
  padding: .4rem .8rem;
  border-radius: 4px;
}

.nav-list a:hover,
.nav-list .active > a {
  background: #8e1122;
}

.has-sub {
  position: relative;
}

.sub-menu {
  display: none;
  position: absolute;
  background: #8e1122;
  padding: .5rem 0;
  border-radius: 4px;
  top: 2.4rem;
  left: 0;
  min-width: 160px;
}

.sub-menu li {
  padding: .3rem .8rem;
}

.sub-menu a {
  display: block;
}

.has-sub:hover .sub-menu {
  display: block;
}

/* Mobile Navigation */

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 0;
  }

  .nav-list.open {
    display: flex;
  }

  .sub-menu {
    position: static;
    background: #8e1122;
    margin-top: .5rem;
  }

  .header-logo-large {
    display: none;
  }

  .header-logo-small {
    display: block;
  }
}

/* ----------------------------------------------------------
   Hero-Bereich
---------------------------------------------------------- */

.hero {
  height: 45vh;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.hero-overlay {
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,.6), rgba(0,0,0,0));
  color: #fff;
}

.hero-overlay h1 {
  color: #fff;
  margin-bottom: .3rem;
}

.hero-overlay p {
  color: #f0f0f0;
}

/* ----------------------------------------------------------
   Seitenlayout
---------------------------------------------------------- */

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem;
}

.intro {
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  background: #b5162b;
  color: #fff;
  padding: .6rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 1rem;
}

.btn:hover {
  background: #8e1122;
}

/* ----------------------------------------------------------
   Speisekarte
---------------------------------------------------------- */

.menu-section {
  margin-bottom: 2rem;
}

.menu-list {
  list-style: none;
  margin-top: 1rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  padding: .7rem 0;
  border-bottom: 1px solid #ddd;
  gap: 1rem;
}

.menu-item__text {
  max-width: 70%;
}

.menu-item__price {
  white-space: nowrap;
  font-weight: 700;
  color: #5a1a1a;
}

.menu-note {
  background: #fff7e6;
  border-left: 4px solid #b5162b;
  padding: .8rem 1rem;
  margin: 1rem 0;
  border-radius: 4px;
}

/* Mobile Anpassung */

@media (max-width: 700px) {
  .menu-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-item__text {
    max-width: 100%;
  }
}

/* ----------------------------------------------------------
   Formulare
---------------------------------------------------------- */

.form {
  background: #fff;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
}

.form-row {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.form-row label {
  font-weight: 600;
  margin-bottom: .3rem;
}

.form-row input,
.form-row textarea {
  padding: .6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: #b5162b;
  outline: none;
}

/* ----------------------------------------------------------
   Footer
---------------------------------------------------------- */

.footer {
  background: #333;
  color: #eee;
  padding: 2rem 1rem;
  margin-top: 3rem;
}

.footer-block {
  margin-bottom: 1.5rem;
}

.footer-logo {
  max-width: 70px;
  margin-bottom: .5rem;
}

.footer-icon {
  max-width: 60px;
  margin-bottom: .5rem;
}

.footer-phone {
  font-size: 1.2rem;
  font-weight: 700;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}

.footer .highlight {
  background: #444;
  padding: 1rem;
  border-radius: 4px;
}

/* Desktop Footer */

@media (min-width: 900px) {
  .footer {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
  }

  .footer-block {
    flex: 1;
  }
}/* ----------------------------------------------------------
   Grundlayout & Reset
---------------------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Alegreya Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #222;
  background: #f7f5f2;
}

/* ----------------------------------------------------------
   Typografie
---------------------------------------------------------- */

h1, h2, h3 {
  font-family: "Alegreya Sans", serif;
  font-weight: 700;
  margin-bottom: .5rem;
  color: #5a1a1a;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.6rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #b5162b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ----------------------------------------------------------
   Header & Navigation
---------------------------------------------------------- */

.header {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.header-top {
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.header-logo-large {
  max-width: 350px;
}

.header-logo-small {
  display: none;
  max-width: 120px;
}

/* Navigation */

.nav {
  background: #b5162b;
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  padding: 1rem;
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: .7rem 0;
}

.nav-list a {
  color: #fff;
  font-weight: 600;
  padding: .4rem .8rem;
  border-radius: 4px;
}

.nav-list a:hover,
.nav-list .active > a {
  background: #8e1122;
}

.has-sub {
  position: relative;
}

.sub-menu {
  display: none;
  position: absolute;
  background: #8e1122;
  padding: .5rem 0;
  border-radius: 4px;
  top: 2.4rem;
  left: 0;
  min-width: 160px;
}

.sub-menu li {
  padding: .3rem .8rem;
}

.sub-menu a {
  display: block;
}

.has-sub:hover .sub-menu {
  display: block;
}

/* Mobile Navigation */

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 0;
  }

  .nav-list.open {
    display: flex;
  }

  .sub-menu {
    position: static;
    background: #8e1122;
    margin-top: .5rem;
  }

  .header-logo-large {
    display: none;
  }

  .header-logo-small {
    display: block;
  }
}

/* ----------------------------------------------------------
   Hero-Bereich
---------------------------------------------------------- */

.hero {
  height: 45vh;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.hero-overlay {
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,.6), rgba(0,0,0,0));
  color: #fff;
}

.hero-overlay h1 {
  color: #fff;
  margin-bottom: .3rem;
}

.hero-overlay p {
  color: #f0f0f0;
}

/* ----------------------------------------------------------
   Seitenlayout
---------------------------------------------------------- */

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem;
}

.intro {
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  background: #b5162b;
  color: #fff;
  padding: .6rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 1rem;
}

.btn:hover {
  background: #8e1122;
}

/* ----------------------------------------------------------
   Speisekarte
---------------------------------------------------------- */

.menu-section {
  margin-bottom: 2rem;
}

.menu-list {
  list-style: none;
  margin-top: 1rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  padding: .7rem 0;
  border-bottom: 1px solid #ddd;
  gap: 1rem;
}

.menu-item__text {
  max-width: 70%;
}

.menu-item__price {
  white-space: nowrap;
  font-weight: 700;
  color: #5a1a1a;
}

.menu-note {
  background: #fff7e6;
  border-left: 4px solid #b5162b;
  padding: .8rem 1rem;
  margin: 1rem 0;
  border-radius: 4px;
}

/* Mobile Anpassung */

@media (max-width: 700px) {
  .menu-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-item__text {
    max-width: 100%;
  }
}

/* ----------------------------------------------------------
   Formulare
---------------------------------------------------------- */

.form {
  background: #fff;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
}

.form-row {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.form-row label {
  font-weight: 600;
  margin-bottom: .3rem;
}

.form-row input,
.form-row textarea {
  padding: .6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: #b5162b;
  outline: none;
}

/* ----------------------------------------------------------
   Footer
---------------------------------------------------------- */

.footer {
  background: #333;
  color: #eee;
  padding: 2rem 1rem;
  margin-top: 3rem;
}

.footer-block {
  margin-bottom: 1.5rem;
}

.footer-logo {
  max-width: 70px;
  margin-bottom: .5rem;
}

.footer-icon {
  max-width: 60px;
  margin-bottom: .5rem;
}

.footer-phone {
  font-size: 1.2rem;
  font-weight: 700;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}

.footer .highlight {
  background: #444;
  padding: 1rem;
  border-radius: 4px;
}

/* Desktop Footer */

@media (min-width: 900px) {
  .footer {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
  }

  .footer-block {
    flex: 1;
  }
}