@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  src: url('fonts/NotoSans-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Noto Sans SemiCondensed';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/NotoSans_SemiCondensed-Medium.ttf') format('truetype');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #faf4ee;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  color: #333;
}

body.jobs {
  padding-bottom: 4rem;
}

/* Logo-Bereich */
.logo-section {
  height: 25vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-section a {
  display: block;
}

.logo-section img {
  max-height: 120px;
  width: auto;
}

/* Bilder in einer Zeile */
.images-section {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  padding: 0 1rem;
}

.images-section img {
  flex: 1;
  min-width: 0;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* Textbereich */
.text-section {
  padding: 2rem 1rem;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

.text-section p {
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.text-section .headline {
  font-family: 'Noto Sans SemiCondensed', sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  color: #06488e;
  text-align: center;
}

.text-section .subheadline {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: #06488e;
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
}

.text-section .address {
  text-align: center;
  margin-top: 1.5rem;
  color: #06488e;
}

.text-section .menu-link {
  text-align: center;
  margin-top: 2rem;
}

.text-section .menu-link a {
  font-family: 'Noto Sans SemiCondensed', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #06488e;
  text-decoration: none;
  border: 1px solid #06488e;
  padding: 0.6rem 1.4rem;
  display: inline-block;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.text-section .menu-link a:hover {
  background-color: #06488e;
  color: #faf4ee;
}

/* Info / Öffnungszeiten */
.info-section {
  padding: 1rem 1rem 2rem;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

.info-card {
  border: 1px solid #ddd6cc;
  padding: 2rem 1.5rem;
  text-align: center;
  color: #333;
}

.info-title {
  font-family: 'Noto Sans SemiCondensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #06488e;
  margin-bottom: 1rem;
}

.info-hours {
  font-family: 'Noto Sans SemiCondensed', sans-serif;
  font-size: 1.15rem;
  color: #06488e;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.info-hours span {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 400;
  font-style: italic;
  color: #06488e;
  margin-top: 0.25rem;
}

.info-extra {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.info-address {
  font-size: 0.95rem;
  color: #06488e;
  margin-bottom: 1.5rem;
}

.info-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.info-button {
  font-family: 'Noto Sans SemiCondensed', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #faf4ee;
  background-color: #06488e;
  text-decoration: none;
  padding: 0.65rem 1.4rem;
  display: inline-block;
  border: 1px solid #06488e;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.info-button:hover {
  background-color: transparent;
  color: #06488e;
}

.info-phone {
  font-family: 'Noto Sans SemiCondensed', sans-serif;
  font-size: 1rem;
  color: #06488e;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.info-phone:hover {
  text-decoration: underline;
}

/* Reservierungen */
.reservation-section {
  padding: 0 1rem 2rem;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

.reservation-title {
  font-family: 'Noto Sans SemiCondensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #06488e;
  text-align: center;
  margin: 2rem 0 1.5rem;
}

.reservation-section iframe,
.reservation-section > * {
  max-width: 100%;
}

/* FAQ */
.faq-section {
  max-width: 700px;
  margin: 1rem auto 0;
  padding: 2rem 1.5rem 0;
  width: 100%;
  border-top: 1px solid #ddd6cc;
}

.faq-title {
  font-family: 'Noto Sans SemiCondensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #06488e;
  margin-bottom: 1.5rem;
}

.faq-item {
  border-top: 1px solid #ddd6cc;
}

.faq-section .faq-item:last-of-type {
  border-bottom: 1px solid #ddd6cc;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 0;
  font-family: 'Noto Sans SemiCondensed', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #06488e;
  letter-spacing: 0.02em;
  user-select: none;
  position: relative;
  padding-right: 1.5rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "›";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item p {
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
}

.faq-item a {
  color: #06488e;
}

/* Jobs */
main {
  max-width: 600px;
  margin: 2rem auto 0;
  padding: 2rem 1.5rem 0;
  width: 100%;
  border-top: 1px solid #ddd6cc;
}

h1 {
  font-family: 'Noto Sans SemiCondensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
  color: #06488e;
}

p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  margin-top: auto;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
}

body.jobs footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #faf4ee;
  margin-top: 0;
}

footer a {
  color: #333;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

footer a:hover {
  text-decoration: underline;
}

/* Job-Einträge */
.job {
  border-top: 1px solid #ddd6cc;
}

.job:last-child {
  border-bottom: 1px solid #ddd6cc;
}

.job summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.job summary::-webkit-details-marker {
  display: none;
}

.job-title {
  font-family: 'Noto Sans SemiCondensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  flex: 1;
  color: #06488e;
}

.job-arrow {
  font-size: 1rem;
  color: #999;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.job[open] .job-arrow {
  transform: rotate(90deg);
}

.job-body {
  padding-bottom: 2rem;
}

.job-subtitle {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 1.25rem;
}

.job-section {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

ul li {
  font-size: 0.95rem;
  line-height: 1.7;
  padding-left: 1.1rem;
  position: relative;
}

ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #999;
}

.apply-email {
  display: inline-block;
  margin-top: 0.25rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}

.apply-email:hover {
  text-decoration: underline;
}

.job-tagline {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #999;
  letter-spacing: 0.05em;
}

.apply-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #ddd6cc;
}

.apply-section .job-section {
  margin-top: 0;
}

.apply-closing {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Speisekarte */
body.menu {
  padding-bottom: 4rem;
}

.menu-main {
  max-width: 1100px;
  margin: 1rem auto 0;
  padding: 2rem 1.5rem 0;
  width: 100%;
  border-top: 1px solid #ddd6cc;
}

.menu-title {
  font-family: 'Noto Sans SemiCondensed', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.02em;
  color: #06488e;
  margin: 1rem 0 2.5rem;
}

.menu-title:not(:first-child) {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #ddd6cc;
}

.menu-title span {
  font-style: italic;
  font-weight: 400;
  margin-left: 0.5rem;
}

.menu-columns {
  columns: 2;
  column-gap: 3rem;
}

.menu-group {
  break-inside: avoid;
  margin-bottom: 2rem;
}

.menu-section {
  font-family: 'Noto Sans SemiCondensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #06488e;
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #ddd6cc;
}

.menu-subsection {
  font-size: 0.85rem;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.05em;
  margin: 1rem 0 0.5rem;
}

.menu-item {
  break-inside: avoid;
  margin-bottom: 0.9rem;
}

.menu-line {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.menu-name {
  color: #06488e;
  font-size: 1rem;
  line-height: 1.4;
  flex: 1;
}

.menu-price {
  color: #06488e;
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.menu-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #555;
  margin: 0.15rem 0 0;
}

.menu-note {
  font-size: 0.8rem;
  color: #999;
  margin: 0.25rem 0 0;
  font-style: italic;
}

/* Mobil: alles untereinander */
@media (max-width: 768px) {
  .logo-section {
    height: auto;
    padding: 2rem 1rem 1rem;
  }

  .images-section {
    flex-direction: column;
    padding: 0 1rem;
    gap: 0.5rem;
  }

  .images-section img {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .menu-columns {
    columns: 1;
  }
}
