/* Schmid's Bar Handel — Design tokens & base */
@font-face {
  font-family: "Oswald";
  src: url("/fonts/oswald.woff2") format("woff2");
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/inter.woff2") format("woff2");
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Caveat";
  src: url("/fonts/caveat.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #231F20;
  --bg-alt: #2B2627;
  --text: #E8E6E3;
  --white: #FFFFFF;
  --accent: #F9A70D;
  --accent-lt: #FAB22A;
  --line: rgba(255, 255, 255, 0.08);
  --maxw: 1200px;
  --pad: 20px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: clip; max-width: 100%; }
html { scroll-behavior: smooth; scroll-padding-top: 74px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
img, video, svg { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-lt); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

h1, h2, h3 {
  font-family: "Oswald", Impact, sans-serif;
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: 0.5px;
}
h1 { font-size: clamp(36px, 6vw, 64px); text-transform: uppercase; }
h2 { font-size: clamp(28px, 4.2vw, 44px); text-transform: uppercase; }
h3 { font-size: clamp(20px, 2.4vw, 24px); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
p { margin: 0 0 16px; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

section { padding: 72px 0; }
@media (min-width: 768px) { section { padding: 96px 0; } }
@media (min-width: 1024px) { section { padding: 112px 0; } }

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

/* Divider line above headlines */
.rule {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--accent);
  border: 0;
  margin: 0 0 24px;
}

.eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: var(--accent);
  margin: 0 0 12px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 22px;
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 2px;
  border: 2px solid var(--accent);
  transition: background-color .15s, color .15s, border-color .15s;
  cursor: pointer;
}
.btn-primary { background: var(--accent); color: #231F20; }
.btn-primary:hover { background: var(--accent-lt); border-color: var(--accent-lt); color: #231F20; }
.btn-outline { background: transparent; color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #231F20; }
.btn + .btn { margin-left: 12px; }

/* Sticky top nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #231F20;
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.nav-brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.nav-brand img { height: 44px; width: auto; display: block; }
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
}
.nav-list a {
  color: var(--text);
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-list a:hover { color: var(--accent); }

/* Burger button (mobile) */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
  padding: 0;
}
.nav-toggle:hover { color: var(--accent); }
.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle .bar::before,
.nav-toggle .bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform .2s ease;
}
.nav-toggle .bar::before { top: -7px; }
.nav-toggle .bar::after  { top: 7px; }
.nav-toggle[aria-expanded="true"] .bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .bar::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar::after  { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown panel */
.nav-panel {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: rgba(35, 31, 32, 0.98);
  border-bottom: 1px solid var(--line);
  padding: 8px var(--pad) 20px;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav-panel.is-open { opacity: 1; visibility: visible; transform: none; }
.nav-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.nav-panel a {
  display: block;
  padding: 14px 4px;
  color: var(--white);
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.nav-panel a:hover { color: var(--accent); }

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-panel { display: none; }
}
@media (max-width: 767px) {
  .nav-list { display: none; }
}

/* Header / hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(35, 31, 32, 0.72);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  width: 100%;
}
.hero img.hero-logo { height: 96px; width: auto; margin-bottom: 28px; display: block; }
.hero h1 { max-width: 18ch; color: var(--white); }
.hero .lead { max-width: 42ch; font-size: 18px; color: var(--text); margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions .btn + .btn { margin-left: 0; }

/* Two-column layout */
.two-col {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 768px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.two-col img { width: 100%; height: auto; border-radius: 2px; }

.script {
  font-family: "Caveat", cursive;
  font-weight: 600;
  color: var(--accent);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
  margin: 0 0 12px;
  display: block;
}

/* Drinks columns */
.drinks {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .drinks { grid-template-columns: repeat(3, 1fr); gap: 48px; }
}
.drinks h3 {
  color: var(--accent);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--accent);
  margin-bottom: 16px;
}
.drinks ul { list-style: none; padding: 0; margin: 0; }
.drinks li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--text);
}

/* Equipment grid */
.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 40px;
}
@media (min-width: 1024px) {
  .grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
.tile { background: var(--bg-alt); border: 1px solid var(--line); overflow: hidden; min-width: 0; }
.tile * { min-width: 0; overflow-wrap: anywhere; word-break: break-word; }
.tile-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(120% 90% at 50% 20%, rgba(230,144,45,0.18), transparent 60%),
    radial-gradient(140% 100% at 50% 100%, rgba(0,0,0,0.55), transparent 70%),
    linear-gradient(160deg, #2a2426 0%, #1a1718 60%, #141112 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  overflow: hidden;
}
.tile-img::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% 110%, rgba(0,0,0,0.45), transparent 55%);
  pointer-events: none;
}
.tile-img img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.tile:hover .tile-img img { transform: scale(1.04); }
.tile-body { padding: 20px; }
.tile h3 { color: var(--white); margin: 0 0 8px; font-size: 18px; letter-spacing: 0.5px; }
.tile p { margin: 0; color: var(--text); font-size: 15px; }

/* Contact block */
.contact-cta {
  background: var(--accent);
  color: #231F20;
  padding: 56px 0;
}
.contact-cta h2 { color: #231F20; }
.contact-cta p { color: #231F20; }
.contact-cta a { color: #231F20; text-decoration: underline; }
.contact-cta a:hover { color: #000; }
.contact-grid {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 20px 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-grid li {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-grid .ci {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #231F20;
  color: var(--accent);
  border-radius: 2px;
  text-decoration: none;
  transition: background-color .15s;
}
.contact-grid .ci:hover { background: #000; color: var(--accent-lt); }
.contact-grid .ci svg { width: 22px; height: 22px; display: block; }
.contact-grid .cl {
  display: block;
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: #231F20;
  opacity: 0.7;
  margin-bottom: 2px;
}
.contact-grid a:not(.ci),
.contact-grid .ct {
  font-family: "Oswald", Impact, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #231F20;
  text-decoration: none;
  user-select: text;
  -webkit-user-select: text;
}
.contact-grid a:not(.ci):hover { color: #000; text-decoration: underline; }

/* Footer */
.footer {
  padding: 32px 0 96px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: 14px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 24px; flex-wrap: wrap; }
.footer a { color: var(--text); }
.footer a:hover { color: var(--accent); }


/* Text container for legal pages */
.prose { max-width: 720px; }
.prose h1 { font-size: clamp(28px, 7.5vw, 44px); line-height: 1.1; overflow-wrap: break-word; hyphens: auto; }

.prose h2 { margin-top: 40px; }
.prose h3 { color: var(--white); margin-top: 24px; }
.prose p, .prose li { color: var(--text); }
.prose ul { padding-left: 20px; }
.prose a { color: var(--accent); }

/* Tabellen auf Rechtstext-Seiten (z. B. Cookie-Liste) */
.table-wrap { overflow-x: auto; margin: 20px 0; -webkit-overflow-scrolling: touch; }
.data-table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 460px; }
.data-table caption { text-align: left; color: var(--text); font-size: 14px; padding-bottom: 10px; }
.data-table th,
.data-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  vertical-align: top;
  overflow-wrap: anywhere;
}
.data-table th {
  color: var(--white);
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 13px;
  background: rgba(255,255,255,.04);
}
.data-table td { color: var(--text); }
.data-table tr:last-child td { border-bottom: none; }


/* Video wrap */
.video-wrap { background: #000; }
.video-wrap video { width: 100%; height: auto; display: block; }

/* Fade in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease-out, transform .6s ease-out;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
