/* ============================================================
   See Café Därligen — Stylesheet
   Farben abgeleitet vom Logo: Seeblau, Eisblau, Creme, Kaffeebraun
   ============================================================ */

:root {
  --lake:       #1F4F6E;   /* tiefes Seeblau (Logo-Schrift) */
  --lake-deep:  #12354C;   /* dunkles Blau für Footer/Hero */
  --ice:        #BFD9E4;   /* helles Eisblau (Wasser) */
  --ice-soft:   #E4EFF4;   /* sehr helles Blau für Flächen */
  --cream:      #F9F6F0;   /* Hintergrund, wie Logo-Grund */
  --coffee:     #7C4E2C;   /* Kaffeebraun (Tasse/Bohne) */
  --coffee-soft:#A9805F;
  --sage:       #7E9B7A;   /* Blattgrün, dezenter Akzent */
  --ink:        #22333F;   /* Textfarbe */
  --white:      #FFFFFF;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body:    "Jost", "Segoe UI", sans-serif;

  --radius: 18px;
  --shadow: 0 18px 45px rgba(18, 53, 76, 0.12);
  --transition: 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--lake); text-decoration: none; }

/* ---------- Typografie ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--lake);
  line-height: 1.15;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.45rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--coffee);
  margin-bottom: 0.9rem;
}

.eyebrow::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 1px;
  background: var(--coffee-soft);
  margin-left: 14px;
  vertical-align: middle;
}

/* ---------- Layout ---------- */

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

section { padding: 96px 0; }

/* ---------- Navigation ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(31, 79, 110, 0.08);
  transition: box-shadow var(--transition), padding var(--transition);
}

/* Weichzeichner liegt auf einem Pseudo-Element, damit das
   Handy-Menü (position: fixed) nicht im Header eingesperrt wird */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
}

.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(18, 53, 76, 0.1);
  padding: 10px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--lake);
}

.nav-brand img { height: 52px; width: auto; }

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--ink);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--coffee);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--lake);
  margin: 6px 0;
  transition: var(--transition);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(18,53,76,0.6) 0%, rgba(18,53,76,0.45) 45%, rgba(18,53,76,0.7) 100%),
    url("../images/galerie-2.png") center/cover no-repeat,
    linear-gradient(180deg, var(--lake) 0%, var(--lake-deep) 100%);
  overflow: hidden;
}

.hero-inner { position: relative; z-index: 2; padding: 120px 20px 160px; }

.hero .eyebrow { color: var(--ice); }
.hero .eyebrow::after { background: var(--ice); }

.hero h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
}

.hero p {
  max-width: 560px;
  margin: 0 auto 2.4rem;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-buttons { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* Sanft aufsteigende Hero-Elemente beim Laden */
.hero [data-hero] {
  opacity: 0;
  transform: translateY(26px);
  animation: heroRise 1s var(--transition) forwards;
}
.hero [data-hero="1"] { animation-delay: 0.15s; }
.hero [data-hero="2"] { animation-delay: 0.35s; }
.hero [data-hero="3"] { animation-delay: 0.55s; }
.hero [data-hero="4"] { animation-delay: 0.75s; }

@keyframes heroRise {
  to { opacity: 1; transform: translateY(0); }
}

/* Wellen am unteren Hero-Rand — Signatur der Seite */
.waves {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

.waves svg { width: 100%; height: 110px; display: block; }

.wave-move { animation: waveDrift 9s ease-in-out infinite alternate; }
.wave-move.slow { animation-duration: 14s; animation-direction: alternate-reverse; }

@keyframes waveDrift {
  from { transform: translateX(0); }
  to   { transform: translateX(-48px); }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn-primary {
  background: var(--coffee);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(124, 78, 44, 0.35);
}

.btn-primary:hover { transform: translateY(-3px); background: #8f5c36; }

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  color: var(--white);
}

.btn-outline:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-3px); }

.btn-outline-dark {
  border: 1.5px solid var(--lake);
  color: var(--lake);
}

.btn-outline-dark:hover { background: var(--lake); color: var(--white); transform: translateY(-3px); }

/* ---------- Scroll-Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
}

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

.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }

/* ---------- Startseite: Über uns / See ---------- */

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.split-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--ice) 0%, var(--ice-soft) 100%);
}

.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--transition);
}

.split-image:hover img { transform: scale(1.05); }

.split-text p { margin-bottom: 1.1rem; color: #45555f; }

/* ---------- Highlights (Karten) ---------- */

.section-tinted { background: var(--ice-soft); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 54px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 42px 34px;
  box-shadow: 0 8px 26px rgba(18, 53, 76, 0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }

.card-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ice-soft);
  margin-bottom: 22px;
}

.card-icon svg { width: 28px; height: 28px; stroke: var(--lake); }

.card h3 { margin-bottom: 0.7rem; }
.card p { color: #45555f; font-size: 0.98rem; }

/* ---------- Öffnungszeiten-Band ---------- */

.hours-band {
  background: linear-gradient(160deg, var(--lake) 0%, var(--lake-deep) 100%);
  color: var(--white);
  text-align: center;
}

.hours-band h2 { color: var(--white); }
.hours-band .eyebrow { color: var(--ice); }
.hours-band .eyebrow::after { background: var(--ice); }

.hours-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 44px;
}

.hours-item {
  min-width: 220px;
  padding: 30px 40px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}

.hours-item .day {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.hours-item .time { color: var(--ice); letter-spacing: 0.08em; }

/* ---------- Galerie ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  position: relative;
  background: linear-gradient(160deg, var(--ice) 0%, var(--ice-soft) 100%);
  box-shadow: 0 8px 26px rgba(18, 53, 76, 0.08);
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--transition), filter 1s var(--transition);
}

.gallery-item:hover img { transform: scale(1.07); filter: brightness(1.06); }

.gallery-item.wide { grid-column: span 2; aspect-ratio: auto; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(18, 53, 76, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.open { opacity: 1; pointer-events: auto; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 26px; right: 34px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Speisekarte ---------- */

.menu-intro { text-align: center; max-width: 620px; margin: 0 auto; }

.menu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 80px;
  margin-top: 60px;
}

.menu-section h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.7rem;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ice);
}

.menu-section h3 svg { width: 26px; height: 26px; stroke: var(--coffee); flex-shrink: 0; }

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 7px 0;
}

.menu-item .name { white-space: nowrap; }

.menu-item .dots {
  flex: 1;
  border-bottom: 1.5px dotted var(--ice);
  transform: translateY(-4px);
}

.menu-item .price {
  font-weight: 500;
  color: var(--coffee);
  white-space: nowrap;
}

.menu-note {
  text-align: center;
  margin-top: 70px;
  font-size: 0.92rem;
  color: #6b7a84;
  font-style: italic;
}

/* ---------- Kontakt ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 54px;
  align-items: start;
}

.contact-list { list-style: none; }

.contact-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--ice);
}

.contact-list li:last-child { border-bottom: none; }

.contact-icon {
  width: 50px; height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--ice-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg { width: 24px; height: 24px; stroke: var(--lake); }

.contact-list h3 { font-size: 1.2rem; margin-bottom: 2px; }
.contact-list a:hover { color: var(--coffee); }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 420px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

/* ---------- Seiten-Header (Unterseiten) ---------- */

.page-hero {
  position: relative;
  padding: 190px 0 150px;
  text-align: center;
  color: var(--white);
  background: linear-gradient(160deg, var(--lake) 0%, var(--lake-deep) 100%);
  overflow: hidden;
}

.page-hero h1 { color: var(--white); }
.page-hero .eyebrow { color: var(--ice); }
.page-hero .eyebrow::after { background: var(--ice); }

/* ---------- CTA-Band ---------- */

.cta-band {
  text-align: center;
  background: var(--white);
}

.cta-band p { max-width: 520px; margin: 0.8rem auto 2rem; color: #45555f; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--lake-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 30px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 12px;
}

.site-footer h4 {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--ice);
  margin-bottom: 18px;
}

.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255, 255, 255, 0.75); transition: color var(--transition); }
.site-footer a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  section { padding: 70px 0; }

  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cards { grid-template-columns: 1fr; }
  .menu-columns { grid-template-columns: 1fr; gap: 50px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .nav-toggle { display: block; }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 105;
    background: var(--lake-deep);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.5s var(--transition);
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links a { color: var(--white) !important; font-size: 1.3rem; }

  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--white); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--white); }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .hours-grid { gap: 20px; }
  .menu-item .name { white-space: normal; }
}

/* ---------- Reduzierte Bewegung ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero [data-hero] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Bilder auf allen Seiten ---------- */

/* Seiten-Header mit Hintergrundbild */
.page-hero-menu {
  background-image: linear-gradient(160deg, rgba(18,53,76,0.78) 0%, rgba(18,53,76,0.62) 100%), url("../images/galerie-1.png");
  background-size: cover;
  background-position: center;
}

.page-hero-galerie {
  background-image: linear-gradient(160deg, rgba(18,53,76,0.78) 0%, rgba(18,53,76,0.62) 100%), url("../images/galerie-5.png");
  background-size: cover;
  background-position: center;
}

.page-hero-kontakt {
  background-image: linear-gradient(160deg, rgba(18,53,76,0.78) 0%, rgba(18,53,76,0.62) 100%), url("../images/galerie-3.png");
  background-size: cover;
  background-position: center;
}

/* Karten mit Bild oben */
.card { padding: 0; overflow: hidden; }

.card-img {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--ice) 0%, var(--ice-soft) 100%);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--transition);
}

.card:hover .card-img img { transform: scale(1.06); }

.card-body { padding: 30px 34px 40px; }

/* CTA-Band mit Hintergrundbild */
.cta-band.cta-image {
  background: linear-gradient(rgba(18,53,76,0.72), rgba(18,53,76,0.72)), url("../images/galerie-7.png") center/cover no-repeat fixed;
  color: var(--white);
}

.cta-band.cta-image h2 { color: var(--white); }
.cta-band.cta-image p { color: rgba(255,255,255,0.88); }
.cta-band.cta-image .eyebrow { color: var(--ice); }
.cta-band.cta-image .eyebrow::after { background: var(--ice); }

/* Bildband auf der Getränkekarte */
.menu-image-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 70px;
}

.menu-image-band .band-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 8px 26px rgba(18, 53, 76, 0.08);
  background: linear-gradient(160deg, var(--ice) 0%, var(--ice-soft) 100%);
}

.menu-image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--transition);
}

.menu-image-band .band-img:hover img { transform: scale(1.05); }

@media (max-width: 700px) {
  .menu-image-band { grid-template-columns: 1fr; }
  .cta-band.cta-image { background-attachment: scroll; }
}

/* ---------- Erweiterte Animationen ---------- */

/* Sanftes Einblenden jeder Seite beim Laden */
body {
  animation: pageFade 0.8s ease-out;
}

@keyframes pageFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Buttons: Lichtstreifen beim Hover */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.btn:hover::before { left: 130%; }

/* Getränkekarte: Positionen erscheinen nacheinander */
.menu-section .menu-item {
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.menu-section.visible .menu-item {
  opacity: 1;
  transform: translateX(0);
}

.menu-section.visible .menu-item:nth-child(2)  { transition-delay: 0.05s; }
.menu-section.visible .menu-item:nth-child(3)  { transition-delay: 0.10s; }
.menu-section.visible .menu-item:nth-child(4)  { transition-delay: 0.15s; }
.menu-section.visible .menu-item:nth-child(5)  { transition-delay: 0.20s; }
.menu-section.visible .menu-item:nth-child(6)  { transition-delay: 0.25s; }
.menu-section.visible .menu-item:nth-child(7)  { transition-delay: 0.30s; }
.menu-section.visible .menu-item:nth-child(8)  { transition-delay: 0.35s; }
.menu-section.visible .menu-item:nth-child(9)  { transition-delay: 0.40s; }
.menu-section.visible .menu-item:nth-child(10) { transition-delay: 0.45s; }
.menu-section.visible .menu-item:nth-child(11) { transition-delay: 0.50s; }
.menu-section.visible .menu-item:nth-child(12) { transition-delay: 0.55s; }

/* Galerie: Bilder erscheinen mit sanftem Zoom */
.gallery-item.reveal {
  transform: translateY(34px) scale(0.96);
}

.gallery-item.reveal.visible {
  transform: translateY(0) scale(1);
}

/* Öffnungszeiten: Karten heben sich beim Hover */
.hours-item {
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.hours-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
}

/* Logo: dezente Drehung beim Hover */
.nav-brand img {
  transition: transform 0.6s var(--transition);
}

.nav-brand:hover img { transform: rotate(-8deg) scale(1.06); }

/* Hero: langsames Hineinzoomen des Hintergrunds */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  animation: heroZoom 18s ease-out forwards;
  z-index: 0;
}

.hero-inner { z-index: 2; }

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

/* Nach-oben-Knopf */
.to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--coffee);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(124, 78, 44, 0.35);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
  z-index: 90;
}

.to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.to-top:hover { background: #8f5c36; transform: translateY(-4px); }

/* ---------- Lesbarkeit im Hero ---------- */

/* Weicher dunkler Schein hinter dem Text — kein harter Kasten */
.hero-inner::before {
  content: "";
  position: absolute;
  inset: -60px -120px;
  background: radial-gradient(ellipse at center, rgba(12, 38, 56, 0.62) 0%, rgba(12, 38, 56, 0.35) 45%, rgba(12, 38, 56, 0) 72%);
  z-index: -1;
  pointer-events: none;
}

.hero .eyebrow,
.hero h1,
.hero p {
  text-shadow: 0 2px 22px rgba(8, 28, 42, 0.65), 0 1px 4px rgba(8, 28, 42, 0.5);
}

.page-hero h1,
.page-hero .eyebrow {
  text-shadow: 0 2px 22px rgba(8, 28, 42, 0.65), 0 1px 4px rgba(8, 28, 42, 0.5);
}

/* ---------- Handy-Optimierung ---------- */

@media (max-width: 900px) {
  body { font-size: 16px; }

  .hero { min-height: 100svh; }

  .nav-brand span { font-size: 1.1rem; }
  .nav-brand img { height: 44px; }
}

@media (max-width: 560px) {
  section { padding: 56px 0; }

  .hero-inner { padding: 130px 16px 150px; }

  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1.02rem; }

  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 320px; text-align: center; }

  .hero-inner::before { inset: -40px -30px; }

  .page-hero { padding: 140px 0 110px; }

  h2 { font-size: 1.8rem; }

  .split-text .btn { display: block; text-align: center; max-width: 320px; }

  .card-img { height: 175px; }
  .card-body { padding: 26px 24px 32px; }

  .hours-item { min-width: 0; width: 100%; padding: 24px; }

  .menu-section h3 { font-size: 1.45rem; }
  .menu-columns { gap: 44px; margin-top: 44px; }

  .map-frame, .map-frame iframe { min-height: 300px; }

  .waves svg { height: 60px; }

  .to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; }

  .footer-grid { gap: 30px; margin-bottom: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Parallax auf Handys deaktivieren (spart Akku und ruckelt sonst) */
@media (max-width: 900px) {
  .cta-band.cta-image { background-attachment: scroll; }
}

/* ---------- Sprachumschalter ---------- */

.lang-switch { position: relative; }

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1.5px solid var(--ice);
  border-radius: 999px;
  padding: 7px 13px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  transition: border-color var(--transition), background var(--transition);
}

.lang-btn:hover { border-color: var(--lake); background: var(--ice-soft); }

.flag { width: 20px; height: 14px; border-radius: 2.5px; display: block; box-shadow: 0 0 0 1px rgba(18,53,76,0.12); }

.lang-btn .chev { width: 10px; height: 10px; stroke: var(--ink); transition: transform 0.3s ease; }
.lang-switch.open .chev { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  list-style: none;
  padding: 8px;
  min-width: 175px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 120;
}

.lang-switch.open .lang-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 12px;
  border-radius: 9px;
  color: var(--ink);
  font-size: 0.92rem;
  transition: background 0.25s ease;
}

.lang-menu a:hover { background: var(--ice-soft); }
.lang-menu a.current { background: var(--ice-soft); font-weight: 500; }

@media (max-width: 900px) {
  .lang-switch { margin-left: auto; margin-right: 16px; }
  .nav-links { z-index: 105; }
}

/* ---------- RTL (Arabisch) ---------- */

[dir="rtl"] .eyebrow::after { margin-left: 0; margin-right: 14px; }
[dir="rtl"] .lang-menu { right: auto; left: 0; }
[dir="rtl"] .menu-section .menu-item { transform: translateX(14px); }
[dir="rtl"] .menu-section.visible .menu-item { transform: translateX(0); }
