:root {
  --bg-light: #f4f4f4;
  --bg-dark: #101010;
  --text-dark: #151515;
  --text-light: #f8f8f8;
  --muted: #707070;
  --accent: #c9ac72;
  --card: #ffffff;
  --shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.narrow {
  width: min(760px, calc(100% - 2rem));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-wrap {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-dark);
}

.logo-image {
  height: 84px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 1.3rem;
}

.main-nav a {
  text-decoration: none;
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #222;
  font-size: 0.92rem;
}

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

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  padding: 0.35rem 0.6rem;
  font-size: 1.1rem;
}

.section {
  position: relative;
  padding: 5.5rem 0;
}

.section h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: "Oswald", Arial, sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-intro {
  margin: 1.2rem auto 0;
  text-align: center;
  color: #4f4f4f;
  max-width: 700px;
  line-height: 1.7;
}

.section-intro.dark {
  color: #e0e0e0;
}

.section-light {
  background: var(--bg-light);
}

.section-dark {
  color: var(--text-light);
}

.hero {
  min-height: 84vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(12, 12, 12, 0.6), rgba(12, 12, 12, 0.6)),
    url("assets/hero-shop.png") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  font-size: 0.8rem;
}

.hero h1 {
  margin: 0.9rem 0 0;
  font-size: clamp(2.5rem, 8vw, 6.2rem);
  font-family: "Oswald", Arial, sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-subtext {
  font-size: 1.1rem;
  opacity: 0.94;
}

.btn {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Oswald", Arial, sans-serif;
  letter-spacing: 0.06em;
  padding: 0.85rem 1.4rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.card-grid {
  margin-top: 2.8rem;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  background: var(--card);
  border-radius: 4px;
  padding: 1.8rem 1.2rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.feature-card h3 {
  margin: 0 0 0.8rem;
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
}

.feature-card p {
  margin: 0;
  color: #545454;
  line-height: 1.65;
}

.menu-section {
  background:
    linear-gradient(rgba(8, 8, 8, 0.66), rgba(8, 8, 8, 0.66)),
    url("https://images.unsplash.com/photo-1622286342621-4bd786c2447c?auto=format&fit=crop&w=2000&q=80")
      center / cover no-repeat;
}

.menu-overlay {
  position: absolute;
  inset: 0;
}

.price-grid {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem 2rem;
}

.price-item {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.28);
  padding-bottom: 0.9rem;
}

.price-item h3 {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: baseline;
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-item span {
  color: var(--accent);
}

.price-item p {
  margin: 0.6rem 0 0;
  color: #d8d8d8;
}

.booking-section {
  background:
    linear-gradient(rgba(245, 245, 245, 0.88), rgba(245, 245, 245, 0.88)),
    url("https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=2000&q=80")
      center top / cover no-repeat;
}

.booking-wrap {
  margin-top: 2rem;
}

.booking-wrap iframe {
  width: 100%;
  min-height: 720px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  background: #fff;
}

.gallery-grid {
  margin-top: 2.4rem;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-bottom: 0.4rem;
}

.gallery-card,
.star-card {
  margin: 0;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Immer quadratisch: Breite der Karte = Kantenlänge (wichtig fürs Handy). */
.gallery-card img,
.star-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery-card figcaption,
.star-card figcaption {
  padding: 0.75rem 0.9rem;
  font-family: "Oswald", Arial, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.fun-section {
  background: linear-gradient(rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.92));
}

.fun-disclaimer {
  margin: 1rem auto 0;
  max-width: 760px;
  background: rgba(201, 172, 114, 0.14);
  border: 1px solid rgba(201, 172, 114, 0.35);
  color: #f0e4ce;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  line-height: 1.6;
  text-align: center;
}

.stars-grid {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-bottom: 0.4rem;
}

.star-card {
  background: #161616;
  position: relative;
  isolation: isolate;
  transform: translateZ(0);
}

.gallery-card {
  position: relative;
  isolation: isolate;
  transform: translateZ(0);
  flex: 0 0 min(320px, 82vw);
  scroll-snap-align: start;
}

.gallery-card img {
  filter: contrast(1.2) saturate(1.12) brightness(1.03) sepia(0.05);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 6, 6, 0.03) 0%,
    rgba(6, 6, 6, 0.18) 56%,
    rgba(6, 6, 6, 0.28) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: -18% -12%;
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 255, 255, 0.32), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(201, 172, 114, 0.26), transparent 34%),
    radial-gradient(circle at 50% 0%, rgba(255, 246, 219, 0.14), transparent 34%),
    linear-gradient(
      118deg,
      transparent 0%,
      rgba(255, 255, 255, 0.14) 42%,
      transparent 58%
    );
  mix-blend-mode: screen;
  z-index: 1;
  pointer-events: none;
}

.gallery-card figcaption {
  position: relative;
  z-index: 3;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.45);
}

.gallery-card:nth-child(2n) img {
  filter: contrast(1.22) saturate(1.08) brightness(1.02) sepia(0.06);
}

.gallery-card:nth-child(3n) img {
  filter: contrast(1.18) saturate(1.14) brightness(1.04);
}

.gallery-card:hover img {
  filter: contrast(1.24) saturate(1.2) brightness(1.08);
  transform: scale(1.04);
}

.gallery-card .grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.32;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.28) 0.6px, transparent 0.6px),
    radial-gradient(rgba(0, 0, 0, 0.16) 0.6px, transparent 0.6px);
  background-position: 0 0, 1.5px 1.5px;
  background-size: 3px 3px;
}

.gallery-card .frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 0 0 0 1px rgba(201, 172, 114, 0.28),
    inset 0 -44px 58px rgba(0, 0, 0, 0.24),
    0 14px 30px rgba(0, 0, 0, 0.24);
}

.star-card figcaption {
  color: #f0f0f0;
  position: relative;
  z-index: 3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.star-card {
  flex: 0 0 min(320px, 82vw);
  scroll-snap-align: start;
}

.star-card img {
  filter: contrast(1.22) saturate(1.12) brightness(1.04) sepia(0.05);
}

.star-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 8, 0.03) 0%,
    rgba(8, 8, 8, 0.22) 60%,
    rgba(8, 8, 8, 0.36) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.star-card::before {
  content: "";
  position: absolute;
  inset: -18% -12%;
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 255, 255, 0.34), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(201, 172, 114, 0.28), transparent 34%),
    radial-gradient(circle at 50% 0%, rgba(255, 246, 219, 0.16), transparent 34%),
    linear-gradient(
      118deg,
      transparent 0%,
      rgba(255, 255, 255, 0.16) 42%,
      transparent 58%
    );
  mix-blend-mode: screen;
  z-index: 1;
  pointer-events: none;
}

.star-card:nth-child(2n) img {
  filter: contrast(1.24) saturate(1.06) brightness(1.02) sepia(0.05);
}

.star-card:nth-child(3n) img {
  filter: contrast(1.2) saturate(1.12) brightness(1.05);
}

/* Subtle film grain layer for texture. */
.star-card .grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.35;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.3) 0.6px, transparent 0.6px),
    radial-gradient(rgba(0, 0, 0, 0.22) 0.6px, transparent 0.6px);
  background-position: 0 0, 1.5px 1.5px;
  background-size: 3px 3px;
}

/* Light border + inner glow gives premium poster vibe. */
.star-card .frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 0 0 1px rgba(201, 172, 114, 0.3),
    inset 0 -52px 74px rgba(0, 0, 0, 0.26),
    0 16px 30px rgba(0, 0, 0, 0.28);
}

.star-card:hover img {
  filter: contrast(1.26) saturate(1.22) brightness(1.08);
  transform: scale(1.042);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.star-card:hover::before {
  opacity: 1;
}

.star-card img {
  transition: transform 0.35s ease, filter 0.35s ease;
}

.site-footer {
  background: #0b0b0b;
  color: #efefef;
  padding: 3rem 0 1.8rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.site-footer h3 {
  margin-top: 0;
  text-transform: uppercase;
  font-family: "Oswald", Arial, sans-serif;
  letter-spacing: 0.05em;
}

.footer-logo {
  height: 84px;
  width: auto;
  display: block;
  margin-bottom: 0.55rem;
  filter: invert(1) brightness(1.55) contrast(1.1);
}

.site-footer p {
  color: #c9c9c9;
  line-height: 1.65;
}

.site-footer a {
  color: var(--accent);
  text-decoration: none;
}

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

.site-footer .footer-social-link:hover {
  text-decoration: none;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  list-style: none;
  margin: 0.95rem 0 0;
  padding: 0;
}

.footer-social li {
  margin: 0;
  padding: 0;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-social-link:hover {
  transform: scale(1.06);
  background: rgba(201, 172, 114, 0.22);
  color: #e8d4a8;
  text-decoration: none;
}

.footer-social-link svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.copyright {
  margin: 1.8rem 0 0;
  text-align: center;
  color: #9d9d9d;
  font-size: 0.9rem;
}

.legal-links {
  margin: 1.2rem 0 0;
  text-align: center;
  font-size: 0.95rem;
}

.legal-links a {
  color: #d9d9d9;
  text-decoration: none;
}

.legal-links a:hover {
  color: var(--accent);
}

.legal-main {
  padding: 3.5rem 0 4rem;
}

.legal-box {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 2rem 1.4rem;
}

.legal-box h1,
.legal-box h2 {
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-box h1 {
  margin-top: 0;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.legal-box h2 {
  margin-top: 1.8rem;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
}

.legal-box p,
.legal-box li {
  line-height: 1.72;
  color: #333;
}

.legal-box ul {
  padding-left: 1.2rem;
}

.back-link {
  display: inline-block;
  margin-top: 1.2rem;
  color: #222;
  text-decoration: none;
  font-weight: 600;
}

.back-link:hover {
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
}

.cookie-content {
  margin: 0 auto;
  max-width: 980px;
  background: rgba(16, 16, 16, 0.96);
  color: #f2f2f2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
  padding: 1rem 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  line-height: 1.6;
  color: #e8e8e8;
}

.cookie-content a {
  color: var(--accent);
  text-decoration: none;
}

.cookie-content a:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.cookie-btn {
  border: 0;
  border-radius: 8px;
  padding: 0.55rem 0.9rem;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
}

.cookie-btn-ghost {
  background: transparent;
  color: #f2f2f2;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.cookie-btn-light {
  background: #2f2f2f;
  color: #f7f7f7;
}

.cookie-btn-primary {
  background: var(--accent);
  color: #fff;
}

.cookie-btn:hover {
  filter: brightness(1.06);
}

@media (max-width: 980px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .star-card {
    flex-basis: min(300px, 82vw);
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    min-height: 88px;
  }

  .logo-image {
    height: 68px;
  }

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

  .main-nav {
    position: absolute;
    top: 88px;
    right: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem;
    min-width: 210px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: 0.25s ease;
  }

  .main-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .card-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .star-card {
    flex-basis: 82vw;
  }

  .section {
    padding: 4rem 0;
  }

  .booking-wrap iframe {
    min-height: 620px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
  }
}
