/* ═══════════════════════════════════════════════
   boulder-shell.css — Shared Design System
   Pflege nur hier. Eingebunden via boulder-shell.js
   ═══════════════════════════════════════════════ */

/* ── Fonts ── */
@font-face {
  font-family: 'GT Standard S';
  src: url('../Schriften/GT-Standard-S-Standard-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal;
}
@font-face {
  font-family: 'GT Standard S';
  src: url('../Schriften/GT-Standard-S-Standard-Regular-Oblique.woff2') format('woff2');
  font-weight: 400; font-style: italic;
}
@font-face {
  font-family: 'GT Standard M';
  src: url('../Schriften/GT-Standard-M-Standard-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal;
}
@font-face {
  font-family: 'GT Standard M';
  src: url('../Schriften/GT-Standard-M-Standard-Regular-Oblique.woff2') format('woff2');
  font-weight: 400; font-style: italic;
}
@font-face {
  font-family: 'GT Standard L';
  src: url('../Schriften/GT-Standard-L-Standard-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal;
}
@font-face {
  font-family: 'GT Standard L';
  src: url('../Schriften/GT-Standard-L-Standard-Regular-Oblique.woff2') format('woff2');
  font-weight: 400; font-style: italic;
}
@font-face {
  font-family: 'GT Super';
  src: url('../Schriften/GT-Super-Display-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Design Tokens ── */
:root {
  --bg:     #121212;
  --fg:     #f2f1ed;
  --orange: #ED4B00;
  --muted:  rgba(242, 241, 237, 0.55);
  --border: rgba(242, 241, 237, 0.13);

  --sans-s: 'GT Standard S', sans-serif;
  --sans-m: 'GT Standard M', sans-serif;
  --sans-l: 'GT Standard L', sans-serif;
  --sans:   var(--sans-s);
  --serif:  'GT Super', Georgia, serif;
  --body:   var(--sans-s);

  --pad: clamp(32px, 5vw, 80px);
}

/* ── Body Defaults ── */
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
  transition: background 0.4s ease, color 0.4s ease;
}

/* ── Light Mode ── */
body.light-mode {
  --bg:     #faece2;
  --fg:     #121212;
  --muted:  rgba(18, 18, 18, 0.55);
  --border: rgba(18, 18, 18, 0.13);
}

/* ── Custom Cursor ── */
#c-blob {
  position: fixed; width: 44px; height: 44px;
  background: var(--orange); pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%); border-radius: 50%;
  transition: width .25s, height .25s;
  will-change: left, top, border-radius;
}
#c-dot {
  position: fixed; width: 5px; height: 5px;
  background: var(--fg); border-radius: 50%;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
}

/* ── Navigation ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 24px var(--pad);
  background: var(--bg);
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.4s ease;
}

.theme-toggle {
  background: none; border: none; color: var(--fg); cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.theme-toggle svg {
  width: 24px; height: 24px; position: absolute;
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.theme-toggle .moon-icon { opacity: 0; transform: rotate(-90deg) scale(0.5); }
body.light-mode .theme-toggle .sun-icon  { opacity: 0; transform: rotate(90deg) scale(0.5); }
body.light-mode .theme-toggle .moon-icon { opacity: 1; transform: rotate(0) scale(1); }

.logo {
  display: inline-flex; align-items: center; gap: 9px;
  text-decoration: none; color: var(--fg); font-family: var(--body);
  font-weight: 500; font-size: 1.05rem; letter-spacing: 0.01em;
}
.logo svg { height: 48px; width: auto; flex-shrink: 0; display: block; }
.logo-mobile { display: none !important; }

@media (max-width: 768px) {
  .logo-desktop { display: none !important; }
  .logo-mobile  { display: block !important; }
}

/* ── Pull-quote Highlight (shared across pages) ── */
.pq-highlight {
  font-family: var(--serif);
  color: var(--orange);
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .12s; }
.d2 { transition-delay: .24s; }
.d3 { transition-delay: .36s; }

/* ── Menu ── */
#menu-btn {
  position: fixed; bottom: 40px; right: 40px;
  width: 56px; height: 56px; background: transparent;
  cursor: pointer; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
}
#menu-btn svg {
  width: 32px; height: 32px;
  stroke: var(--orange); stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.4s ease;
}
#menu-overlay.open ~ #menu-btn svg { transform: rotate(90deg); }
#menu-btn:hover { transform: scale(1.06); }

#menu-overlay {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 999; pointer-events: none;
}

.menu-nav {
  position: absolute; bottom: 114px; right: 40px;
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 12px;
}

.menu-pill {
  display: inline-block; padding: 12px 32px;
  border: 1px solid var(--muted); border-radius: 100px;
  color: var(--fg); text-decoration: none;
  font-size: 1.05rem; font-family: var(--sans);
  transition: background 0.2s, color 0.2s, border-color 0.2s,
              transform 0.4s ease, opacity 0.4s ease;
  transform: translateY(16px); opacity: 0; pointer-events: none;
}
#menu-overlay.open .menu-pill {
  transform: translateY(0); opacity: 1; pointer-events: auto;
}
#menu-overlay.open .menu-pill:nth-child(1) { transition-delay: 0s; }
#menu-overlay.open .menu-pill:nth-child(2) { transition-delay: 0.04s; }
#menu-overlay.open .menu-pill:nth-child(3) { transition-delay: 0.08s; }
#menu-overlay.open .menu-pill:nth-child(4) { transition-delay: 0.12s; }
#menu-overlay.open .menu-pill:nth-child(5) { transition-delay: 0.16s; }
#menu-overlay.open .menu-pill:nth-child(6) { transition-delay: 0.20s; }

.menu-pill:hover { background: var(--orange); color: var(--fg); border-color: var(--orange); }

.lang-switcher {
  display: flex; gap: 14px; margin-top: 16px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: 0.24s;
}
#menu-overlay.open .lang-switcher { opacity: 1; transform: translateY(0); pointer-events: auto; }

.lang-btn {
  cursor: pointer; font-family: var(--sans-s); font-size: 1.05rem;
  color: var(--muted); transition: color 0.2s; background: none; border: none; outline: none;
}
.lang-btn.active { color: var(--orange); }
.lang-btn:hover  { color: var(--fg); }

/* ── Footer ── */
footer {
  background: transparent; color: var(--fg);
  padding: 60px var(--pad); position: relative;
  overflow: hidden; min-height: 520px;
  display: flex; flex-direction: column; justify-content: space-between;
}

.footer-icon-bg {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 480px; height: auto; pointer-events: none; z-index: 0;
  display: flex; flex-direction: column; align-items: center;
}

.footer-claim {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--fg); margin-top: -20px;
}

footer > * { position: relative; z-index: 1; }

.ft-brand { font-size: 1.05rem; font-weight: 500; margin-bottom: 18px; }
.ft-addr  { font-size: .9rem; line-height: 2; opacity: .9; }
.ft-contact { margin-top: 6px; font-size: .9rem; line-height: 2; opacity: .9; }

.ft-booking-btn {
  display: inline-block; margin-top: 18px; padding: 10px 22px;
  border: 1px solid var(--muted); border-radius: 100px;
  color: var(--fg); text-decoration: none;
  font-family: var(--body); font-size: .88rem; letter-spacing: 0.02em;
  transition: background .22s, color .22s, border-color .22s;
}
.ft-booking-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--fg); }

.ft-hours { text-align: right; }
.ft-hours-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; opacity: .6; margin-bottom: 10px;
}
.ft-hours-val { font-size: .9rem; line-height: 2; opacity: .9; }

.ft-legal { display: flex; flex-direction: column; gap: 6px; }
.ft-legal a {
  color: var(--fg); text-decoration: none; font-size: .88rem;
  opacity: .75; transition: opacity .2s, color .2s;
}
.ft-legal a:hover { opacity: 1; color: var(--orange); }

/* ── Responsive footer nav ── */
@media (max-width: 768px) {
  .ft-hours { text-align: left; }

  /* Footer logo background — scale down so it doesn't overflow */
  .footer-icon-bg {
    width: clamp(200px, 60vw, 320px);
  }

  .footer-claim {
    font-size: clamp(1.4rem, 6vw, 2.2rem);
    margin-top: -10px;
  }

  footer {
    min-height: auto;
    padding: 48px var(--pad);
    gap: 48px;
  }
}
