:root {
  --bg: #f5f7f8;
  --surface: #ffffff;
  --ink: #0f2730;
  --ink-soft: #395863;
  --accent: #0d9aa5;
  --accent-deep: #066a72;
  --sand: #f0e3cc;
  --line: #d3e2e5;
  --shadow: 0 14px 35px rgba(10, 38, 46, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 10% 0%, #e3f2f2 0%, var(--bg) 42%),
    linear-gradient(180deg, #f8fafb 0%, #f1f4f5 100%);
  color: var(--ink);
  line-height: 1.6;
}

.hero {
  min-height: 100vh;
  background-color: #0a1f26;
  background-image: linear-gradient(160deg, rgba(6, 106, 114, 0.5), rgba(13, 154, 165, 0.28)),
    url("images/Hintergrund.jpg");
  background-position: center, center top;
  background-size: 100% 100%, contain;
  background-repeat: no-repeat, no-repeat;
  background-attachment: scroll, scroll;
  color: #fff;
  padding: 1rem clamp(1rem, 2vw, 2rem) 4rem;
  position: relative;
  overflow: hidden;
}

.hero-small {
  min-height: 60vh;
}

.hero::after {
  display: none;
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  text-decoration: none;
  color: #fff;
  font-family: "Prata", serif;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.menu-btn {
  display: none;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}

.hero-content {
  max-width: 1100px;
  margin: 5rem auto 0;
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 800;
  opacity: 0.9;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0;
}

h1,
h2 {
  font-family: "Prata", serif;
}

h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  max-width: 16ch;
  margin: 0.7rem 0;
}

.subtitle {
  max-width: 60ch;
  font-size: 1.08rem;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 160ms ease, background-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--sand);
  color: #12313a;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 2vw, 2rem);
}

.section-heading {
  margin-bottom: 1.1rem;
}

.about p {
  max-width: 72ch;
  color: var(--ink-soft);
}

.menu-sheets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.menu-sheet {
  position: relative;
  background: #fff;
  border: 1px solid #ccd7da;
  border-radius: 14px;
  padding: 1.4rem 4.7rem 1.4rem 1.2rem;
  box-shadow: var(--shadow);
}

.menu-sheet h3 {
  font-family: "Prata", serif;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  margin-bottom: 0.9rem;
}

.menu-sheet h4 {
  margin: 1.1rem 0 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.92rem;
}

.sheet-brand {
  position: absolute;
  right: 0.8rem;
  top: 1rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #0d56b0;
  font-family: "Prata", serif;
  font-size: clamp(1.8rem, 2vw, 2.35rem);
  line-height: 1;
}

.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.9rem;
  align-items: baseline;
  border-bottom: 1px dashed #dae3e5;
  padding-bottom: 0.34rem;
}

.price-list span {
  color: #1e2f35;
}

.price-list strong {
  white-space: nowrap;
  font-size: 0.95rem;
}

.menu-note {
  margin: 1rem 0 0;
  color: #b24242;
  font-weight: 700;
}

.menu-link-section p {
  color: var(--ink-soft);
  max-width: 60ch;
}

.menu-link-btn {
  margin-top: 0.7rem;
  display: inline-block;
  background: var(--accent-deep);
  color: #fff;
}

.menu-categories {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.menu-overview {
  max-width: 920px;
  margin: 0 auto 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.menu-overview a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  color: #15424c;
  background: #eaf2f4;
  border: 1px solid #cfe0e4;
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
}

.menu-page .menu-categories {
  grid-template-columns: 1fr;
  max-width: 920px;
  margin: 0 auto;
  gap: 1rem;
}

.menu-page .menu-sheet {
  padding: 1.3rem 1.2rem;
  border-radius: 12px;
}

.menu-page .sheet-brand {
  display: none;
}

.menu-page .menu-sheet h3 {
  text-decoration: none;
  border-bottom: 2px solid #d5e4e7;
  padding-bottom: 0.45rem;
  margin-bottom: 0.8rem;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.menu-page .menu-sheet h4 {
  margin-top: 1rem;
  color: #28464f;
}

.menu-page .price-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 0.8rem;
}

.menu-page .price-list strong {
  text-align: right;
}

.single-view {
  display: flex;
  justify-content: center;
}

.single-view-image {
  width: min(900px, 100%);
  border: 1px solid #c8d8dc;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.hours-large {
  width: min(900px, 100%);
  background: #fff;
  border: 1px solid #c8d8dc;
  border-radius: 14px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.hours-large h2 {
  margin-bottom: 1rem;
}

.hours-large ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-large li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px dashed #d9e3e6;
  padding: 0.65rem 0;
}

.hours-large li strong {
  font-size: 1.02rem;
}

.menu-gallery {
  margin-top: 2rem;
}

.menu-gallery h3 {
  margin-bottom: 0.9rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #cfdbde;
  box-shadow: var(--shadow);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.panel {
  background: linear-gradient(180deg, #ffffff, #f6fbfc);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.3rem;
}

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

.panel li {
  margin-bottom: 0.45rem;
}

.panel a {
  color: var(--accent-deep);
  text-decoration: none;
  font-weight: 700;
}

.footer {
  text-align: center;
  padding: 1.5rem 1rem 2.4rem;
  color: #4a666f;
}

.floating-lunch {
  position: fixed;
  left: 50%;
  top: 50%;
  width: min(420px, calc(100vw - 2rem));
  background: #fff;
  border: 1px solid #c9d8dd;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(6, 40, 49, 0.26);
  padding: 0.8rem;
  z-index: 40;
  transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease, width 220ms ease;
}

.floating-lunch.visible {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.floating-lunch h3 {
  margin: 0.2rem 0 0.6rem;
  font-size: 1rem;
}

.floating-lunch img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #d4e0e3;
  cursor: zoom-in;
}

.floating-lunch.expanded {
  width: min(900px, calc(100vw - 2rem));
}

.floating-lunch.expanded img {
  cursor: zoom-out;
}

.floating-lunch-close {
  position: absolute;
  top: 0.25rem;
  right: 0.35rem;
  border: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f0f5f6;
  color: #203c45;
  font-size: 1.2rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 850px) {
  .menu-sheets,
  .menu-categories,
  .gallery-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .menu-btn {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    right: 1rem;
    top: 4rem;
    background: rgba(6, 106, 114, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem;
    border-radius: 10px;
    flex-direction: column;
    width: 220px;
    transform: scale(0.98);
    transform-origin: top right;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .menu-sheet {
    padding-right: 3.8rem;
  }

  .floating-lunch {
    width: calc(100vw - 1.2rem);
  }

  .floating-lunch.expanded {
    width: calc(100vw - 0.6rem);
  }

  .hours-large li {
    flex-direction: column;
    gap: 0.2rem;
  }

  .menu-overview {
    gap: 0.45rem;
  }

  .menu-overview a {
    font-size: 0.82rem;
    padding: 0.38rem 0.65rem;
  }
}

