:root {
  --bg-main: #e9a79a;
  --bg-soft: #d98f84;

  --ink: #8b1e1e;
  --accent: #a83232;

  --cream: #fff4ef;
  --cream-soft: #f7e6df;

  --line: rgba(139, 30, 30, 0.2);
  --shadow: rgba(0, 0, 0, 0.18);

  --radius: 14px;
  --radius-lg: 22px;

  --maxw: 1140px;
  --header-h: 76px;

  --coffee-blue: #2f6fa3;
  --coffee-blue-light: #4f8fc4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: var(--bg-main);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body {
  position: relative;
}

/* Hintergrund-Schriftzug */
.bg-logo {
  position: fixed;
  inset: 0;
  background-image: url("/static/img/noorhaus-logo-darkred-transparent.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.2s ease;
}

/* Inhalt immer über dem Hintergrund */
.site-header,
main,
footer,
section {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header / Navbar */
.site-header {
  position: sticky;
  top: 0;
  height: var(--header-h);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  background: transparent;
  border-bottom: none;
  z-index: 1000;
}

.site-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.95;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.site-nav a:hover {
  color: var(--accent);
}

.site-nav a.active {
  opacity: 0.4;
}

/* Optional, falls du doch wieder Buttons nutzt */
.btn {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--accent);
}

.btn:hover {
  background: var(--accent);
  color: var(--bg-main);
}

/* Layout */
main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px 32px;
}

.section {
  padding: 72px 0;
}

.hero {
  min-height: 100vh;
  padding: 0;
}

#home,
#hours,
#menu,
#dropby,
#contact {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.display {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.section-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 60ch;
  color: var(--cream);
}

p,
.site-nav a,
.field label,
.field input,
.field textarea {
  font-size: 1rem;
}

/* Hero */
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  align-items: center;
  width: 100%;
}

.hero-placeholder {
  border: 2px dashed rgba(139, 30, 30, 0.25);
  border-radius: var(--radius);
  height: 340px;
  display: grid;
  place-items: center;
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-placeholder {
    height: 260px;
  }
}

/* Öffnungszeiten */
/* Öffnungszeiten */
.hours {
  display: grid;
  gap: 0;
}

.hours-head,
.hours-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
  column-gap: 28px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.hours-head {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

/* Zeiten rechtsbündig */
.hours-row span:nth-child(2),
.hours-row span:nth-child(3),
.hours-head span:nth-child(2),
.hours-head span:nth-child(3) {
  text-align: right;
}

@media (max-width: 760px) {

  .hours-head,
  .hours-row {
    grid-template-columns: 1fr 1fr;
    row-gap: 4px;
  }

  .hours-head span:nth-child(3) {
    display: none;
  }

  .hours-row span:nth-child(3) {
    font-size: 0.85rem;
    opacity: 0.7;
  }

  .hours-row span:nth-child(2),
  .hours-row span:nth-child(3) {
    text-align: right;
  }
}

/* MENU OVERVIEW */
/* MENU OVERVIEW */
/* MENU OVERVIEW */
.menu-overview {
  display: grid;
  gap: 64px;
}

.menu-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.menu-feature-reverse .menu-copy {
  order: 2;
}

.menu-feature-reverse .menu-visual {
  order: 1;
}

.menu-copy {
  display: grid;
  gap: 20px;
}

.menu-block-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}

.menu-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.menu-items li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  color: var(--ink);
}

/* Container neben der Liste */
.menu-visual {
  width: 100%;
  max-width: 340px;
  /* kontrolliert Gesamtgröße */
}

/* 2x2 Grid */
.menu-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  /* minimaler Abstand */
}

/* Images */
.menu-visual-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;

  border-radius: 10px;

  transition: transform 0.3s ease, box-shadow 0.3s ease;

  filter: saturate(0.95) contrast(1.05);
}

/* Subtiler Hover */
.menu-visual-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.menu-feature-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.menu-feature-image:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
  filter: saturate(1.03) contrast(1.02);
}

@media (max-width: 860px) {
  .menu-feature {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .menu-feature-reverse .menu-copy,
  .menu-feature-reverse .menu-visual {
    order: initial;
  }

  .menu-feature-image {
    height: 320px;
  }

  .menu-block {
    grid-template-columns: 1fr;
  }

  .menu-visual {
    max-width: 100%;
  }

  .menu-visual-grid {
    gap: 4px;
  }
}

.menu-items-detail li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.6;
}

.menu-items-detail strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: var(--ink);
}

.menu-items-detail {
  font-size: 0.95rem;
  color: var(--ink);
  opacity: 0.9;
}

/* Drop By */
/* Drop By */
.dropby {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 110vh;
  text-align: center;
  padding-top: 120px;
  gap: 0;
}

.dropby .lead {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--accent);
  opacity: 0.9;
  max-width: 28ch;
  text-align: center;
}

.direction-ball {
  position: relative;
  margin-top: 140px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.2;
  color: var(--bg-main);
  background: var(--coffee-blue-light);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    background 0.25s ease;
  cursor: pointer;
  z-index: 5;
}

.direction-ball:hover {
  transform: scale(2);
  background: var(--coffee-blue);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.dropby-slider-wrap {
  width: 100%;
  margin-top: 220px;
}

.dropby-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
  cursor: grab;
  scrollbar-width: none;
}

.dropby-slider::-webkit-scrollbar {
  display: none;
}

.dropby-slider.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.dropby-image {
  flex: 0 0 min(62vw, 360px);
  width: min(62vw, 360px);
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  scroll-snap-align: start;
  user-select: none;
  -webkit-user-drag: none;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.dropby-image:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
  filter: saturate(1.03) contrast(1.02);
}

/* Contact */
.contact-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 760px;
}

.contact-intro {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--cream);
  max-width: 32ch;
  margin: 0;
}

.contact-list {
  display: grid;
  gap: 16px;
  max-width: 500px;
}

.contact-card {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(139, 30, 30, 0.08);
  box-shadow: 0 10px 24px var(--shadow);
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
  border-color: var(--coffee-blue);
  background: var(--coffee-blue-light);
}

.contact-card.copied {
  border-color: var(--accent);
  background: rgba(168, 50, 50, 0.12);
}

.contact-label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
  flex: 0 0 auto;
}

.contact-value {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 600;
  line-height: 1.2;
  text-align: right;
  color: var(--cream);
  word-break: break-word;
}

.copy-hint {
  font-size: 0.95rem;
  color: var(--accent);
  opacity: 0.85;
  margin: 0;
}

/* Contact links + icons */
.contact-link {
  text-decoration: none;
}

.contact-link:hover {
  border-color: var(--coffee-blue);
  background: var(--coffee-blue-light);
}

.contact-value-with-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.instagram-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  transition: transform 0.25s ease;
}

.instagram-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: inline-flex;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-link.instagram:hover .instagram-icon {
  transform: scale(1.15);
}

/* Footer */
.site-footer {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.site-footer a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

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

/* Mobile */
@media (max-width: 860px) {

  .menu-grid-2,
  .menu-grid-3 {
    grid-template-columns: 1fr;
  }

  .menu-image {
    height: 260px;
  }
}

@media (max-width: 760px) {
  .direction-ball {
    width: 110px;
    height: 110px;
  }

  .direction-ball:hover {
    transform: scale(1.4);
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-value {
    text-align: left;
  }

  .contact-value-with-icon {
    justify-content: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    gap: 16px;
  }

  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  @media (max-width: 860px) {
    .dropby {
      min-height: 95vh;
      padding-top: 100px;
    }

    .direction-ball {
      margin-top: 120px;
    }

    .dropby-slider-wrap {
      margin-top: 140px;
    }

    .dropby-image {
      flex: 0 0 72vw;
      width: 72vw;
      height: 200px;
      object-fit: contain;
    }
  }
}

/* Desktop default for menu button */
.nav-toggle {
  display: none;
}

.legal-page {
  max-width: 760px;
}

.legal-page-plain {
  position: relative;
  z-index: 2;
}

.legal-page-transparent {
  position: relative;
  z-index: 2;
}

.legal-content {
  gap: 22px;
}

.legal-content h3 {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.legal-content p {
  margin: 0;
  line-height: 1.75;
  opacity: 0.9;
}

body.legal-view .bg-logo {
  opacity: 0.12;
}