/* ============================================
   DAS CLUTCH – Main Stylesheet v1.2
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;900&family=Barlow:wght@400;500;600&display=swap');

:root {
  --orange: #FF6B00;
  --orange-dark: #cc5500;
  --bg: #0f0f0f;
  --bg2: #161616;
  --bg3: #1e1e1e;
  --text: #f0f0f0;
  --muted: #888;
  --border: #2a2a2a;
}

/* ── NIGHTERY KOMPLETT ÜBERSCHREIBEN ─────────────────────────────────────── */
html, body {
  background: #0f0f0f !important;
  color: #f0f0f0 !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
}
/* Nightery header/footer/wrapper verstecken */
header.site-header, .site-header, #masthead,
.navbar, .nav-bar, .header-wrap, #header,
footer.site-footer, .site-footer, #colophon,
.footer-widgets { display: none !important; }

#page, #content, .site-content, .page-content,
.entry-content, main#main, .wp-site-blocks,
.page-wrapper, #wrapper, .site {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  background: #0f0f0f !important;
}

/* Alle Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  color: #f0f0f0 !important;
}

/* Alle Links zurücksetzen */
a { color: inherit !important; text-decoration: none !important; }
a:hover { color: inherit !important; }

/* ALLE blauen Buttons von Nightery/WordPress auf orange */
.wp-block-button__link,
.button, .btn-default, .btn-primary-nightery,
input[type="submit"],
button[type="submit"],
.wpcf7-submit,
.wpforms-submit,
a.button, a.btn {
  background: #FF6B00 !important;
  border-color: #FF6B00 !important;
  color: #fff !important;
  font-family: 'Barlow', sans-serif !important;
}
.wp-block-button__link:hover,
.button:hover, input[type="submit"]:hover,
button[type="submit"]:hover {
  background: #cc5500 !important;
  border-color: #cc5500 !important;
}

* { box-sizing: border-box; }
img { max-width: 100%; display: block; }
*, *::before, *::after { margin: 0; padding: 0; }

/* ── UTILITIES ───────────────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

.section-label {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: #FF6B00 !important;
  margin-bottom: 0.8rem !important;
  display: block !important;
  font-family: 'Barlow', sans-serif !important;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: clamp(2.2rem, 5vw, 3.5rem) !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  margin-bottom: 1.5rem !important;
  color: #f0f0f0 !important;
}
.section-title span { color: #FF6B00 !important; }

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block !important;
  padding: 0.75rem 1.8rem !important;
  border-radius: 4px !important;
  font-family: 'Barlow', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  transition: all 0.2s !important;
  cursor: pointer !important;
  border: none !important;
  text-decoration: none !important;
}
.btn-primary {
  background: #FF6B00 !important;
  color: #fff !important;
  border: none !important;
}
.btn-primary:hover {
  background: #cc5500 !important;
  color: #fff !important;
}
.btn-ghost {
  background: transparent !important;
  border: 1px solid #2a2a2a !important;
  color: #f0f0f0 !important;
}
.btn-ghost:hover {
  border-color: #FF6B00 !important;
  color: #FF6B00 !important;
}

/* ── NAV ─────────────────────────────────────────────────────────────────── */
.clutch-nav {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 9999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 2.5rem !important;
  height: 64px !important;
  background: rgba(15,15,15,0.97) !important;
  border-bottom: 1px solid #2a2a2a !important;
  backdrop-filter: blur(8px) !important;
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 900 !important;
  font-size: 1.4rem !important;
  letter-spacing: 0.05em !important;
  color: #f0f0f0 !important;
  text-decoration: none !important;
}
.nav-logo span { color: #FF6B00 !important; }
.nav-links { display: flex !important; gap: 2rem !important; align-items: center !important; }
.nav-links a {
  font-family: 'Barlow', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #888 !important;
  transition: color 0.2s !important;
  text-decoration: none !important;
}
.nav-links a:hover { color: #f0f0f0 !important; }
.nav-cta {
  background: #FF6B00 !important;
  color: #fff !important;
  padding: 0.45rem 1.2rem !important;
  border-radius: 4px !important;
}
.nav-cta:hover { background: #cc5500 !important; color: #fff !important; }

/* ── HERO (kleiner als vorher) ───────────────────────────────────────────── */
.clutch-hero {
  min-height: 70vh !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 7rem 2rem 5rem !important;
  position: relative !important;
  overflow: hidden !important;
  background: #0f0f0f !important;
}
.clutch-hero::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255,107,0,0.08) 0%, transparent 70%) !important;
  pointer-events: none !important;
}
.hero-eyebrow {
  font-family: 'Barlow', sans-serif !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: #FF6B00 !important;
  margin-bottom: 1rem !important;
  animation: fadeUp 0.6s ease both !important;
}
.clutch-hero h1 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: clamp(3.5rem, 10vw, 7rem) !important;
  font-weight: 900 !important;
  line-height: 0.9 !important;
  margin-bottom: 1.2rem !important;
  animation: fadeUp 0.6s 0.1s ease both !important;
  color: #f0f0f0 !important;
  text-transform: uppercase !important;
}
.clutch-hero h1 span { color: #FF6B00 !important; }
.hero-sub {
  font-family: 'Barlow', sans-serif !important;
  font-size: clamp(0.95rem, 2vw, 1.1rem) !important;
  color: #888 !important;
  max-width: 500px !important;
  margin: 0 auto 2rem !important;
  animation: fadeUp 0.6s 0.2s ease both !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
}
.hero-actions {
  display: flex !important;
  gap: 1rem !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  animation: fadeUp 0.6s 0.3s ease both !important;
}

/* ── ABOUT ───────────────────────────────────────────────────────────────── */
.clutch-about {
  background: #161616 !important;
  padding: 5rem 0 !important;
}
.about-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 4rem !important;
  align-items: center !important;
}
.about-text p {
  color: #888 !important;
  margin-bottom: 1rem !important;
  font-size: 1rem !important;
  font-family: 'Barlow', sans-serif !important;
  font-weight: 400 !important;
}
.about-text p strong { color: #f0f0f0 !important; font-weight: 600 !important; }
.about-hours {
  background: #1e1e1e !important;
  border: 1px solid #2a2a2a !important;
  border-left: 3px solid #FF6B00 !important;
  padding: 2rem !important;
  border-radius: 4px !important;
}
.about-hours h3 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 1.2rem !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 1rem !important;
  color: #FF6B00 !important;
  text-transform: uppercase !important;
}
.hours-row {
  display: flex !important;
  justify-content: space-between !important;
  padding: 0.5rem 0 !important;
  border-bottom: 1px solid #2a2a2a !important;
  font-size: 0.95rem !important;
  font-family: 'Barlow', sans-serif !important;
  color: #f0f0f0 !important;
}
.hours-row:last-of-type { border-bottom: none !important; }
.hours-note {
  margin-top: 1rem !important;
  font-size: 0.85rem !important;
  color: #888 !important;
  font-style: italic !important;
  font-family: 'Barlow', sans-serif !important;
}
.hours-member {
  margin-top: 1.5rem !important;
  padding-top: 1.5rem !important;
  border-top: 1px solid #2a2a2a !important;
}
.hours-member p { font-family: 'Barlow', sans-serif !important; color: #f0f0f0 !important; }
.hours-member p:first-child { font-size: 0.8rem !important; color: #888 !important; margin-bottom: 0.4rem !important; }

/* ── EVENT TYPES ─────────────────────────────────────────────────────────── */
.clutch-events {
  background: #0f0f0f !important;
  padding: 5rem 0 !important;
}
.events-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem !important;
  margin-top: 2.5rem !important;
}
.event-type-card {
  background: #161616 !important;
  border: 1px solid #2a2a2a !important;
  border-top: 3px solid #FF6B00 !important;
  padding: 1.8rem 1.5rem !important;
  border-radius: 4px !important;
  transition: transform 0.2s !important;
}
.event-type-card:hover { transform: translateY(-4px) !important; }
.event-icon { font-size: 1.8rem !important; margin-bottom: 0.8rem !important; }
.event-type-card h3 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  margin-bottom: 0.5rem !important;
  color: #f0f0f0 !important;
}
.event-type-card p {
  color: #888 !important;
  font-size: 0.88rem !important;
  line-height: 1.5 !important;
  font-family: 'Barlow', sans-serif !important;
  font-weight: 400 !important;
}

/* ── COMMUNITY ───────────────────────────────────────────────────────────── */
.clutch-community {
  background: #161616 !important;
  padding: 5rem 0 !important;
}
.community-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 4rem !important;
  align-items: center !important;
}
.community-img {
  aspect-ratio: 4/3 !important;
  background: #1e1e1e !important;
  border: 1px solid #2a2a2a !important;
  border-radius: 8px !important;
  overflow: hidden !important;
}
.community-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
.community-text p {
  color: #888 !important;
  margin-bottom: 1rem !important;
  font-size: 1rem !important;
  font-family: 'Barlow', sans-serif !important;
  font-weight: 400 !important;
}
.community-tags { margin: 1.2rem 0 !important; }
.tag {
  display: inline-block !important;
  background: rgba(255,107,0,0.12) !important;
  color: #FF6B00 !important;
  border: 1px solid rgba(255,107,0,0.3) !important;
  padding: 0.25rem 0.75rem !important;
  border-radius: 2px !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  margin: 0.2rem 0.2rem 0.2rem 0 !important;
  font-family: 'Barlow', sans-serif !important;
}

/* ── FOOD ────────────────────────────────────────────────────────────────── */
.clutch-food {
  background: #0f0f0f !important;
  padding: 5rem 0 !important;
}
.food-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 4rem !important;
  align-items: center !important;
}
.food-text p {
  color: #888 !important;
  margin-bottom: 1rem !important;
  font-size: 1rem !important;
  font-family: 'Barlow', sans-serif !important;
  font-weight: 400 !important;
}
.food-categories {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1rem !important;
  margin-top: 1.5rem !important;
}
.food-cat {
  background: #161616 !important;
  border: 1px solid #2a2a2a !important;
  padding: 1rem !important;
  border-radius: 4px !important;
}
.food-cat h4 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 1rem !important;
  letter-spacing: 0.05em !important;
  color: #FF6B00 !important;
  margin-bottom: 0.3rem !important;
  text-transform: uppercase !important;
}
.food-cat p {
  font-size: 0.82rem !important;
  color: #888 !important;
  font-family: 'Barlow', sans-serif !important;
}
.food-img {
  aspect-ratio: 3/4 !important;
  background: #1e1e1e !important;
  border: 1px solid #2a2a2a !important;
  border-radius: 8px !important;
  overflow: hidden !important;
}
.food-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* ── KALENDER ────────────────────────────────────────────────────────────── */
.clutch-kalender {
  background: #161616 !important;
  padding: 5rem 0 !important;
}
.filter-bar {
  display: flex !important;
  gap: 0.6rem !important;
  margin: 1.5rem 0 !important;
  flex-wrap: wrap !important;
}
.filter-btn {
  padding: 0.35rem 0.9rem !important;
  border: 1px solid #2a2a2a !important;
  border-radius: 20px !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  background: transparent !important;
  color: #888 !important;
  transition: all 0.2s !important;
}
.filter-btn.active, .filter-btn:hover {
  background: #FF6B00 !important;
  border-color: #FF6B00 !important;
  color: #fff !important;
}
.events-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 1px !important;
  background: #2a2a2a !important;
}
.event-row {
  background: #161616 !important;
  display: grid !important;
  grid-template-columns: 70px 1fr auto !important;
  gap: 1.2rem !important;
  align-items: center !important;
  padding: 1rem 1.2rem !important;
  transition: background 0.2s !important;
}
.event-row:hover { background: #1e1e1e !important; }
.event-date { text-align: center !important; }
.event-date .day {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 900 !important;
  font-size: 1.8rem !important;
  line-height: 1 !important;
  color: #FF6B00 !important;
}
.event-date .month {
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #888 !important;
  font-family: 'Barlow', sans-serif !important;
}
.event-info h4 {
  font-family: 'Barlow', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  margin-bottom: 0.2rem !important;
  color: #f0f0f0 !important;
  text-transform: none !important;
  line-height: 1.3 !important;
}
.event-info p {
  font-size: 0.82rem !important;
  color: #888 !important;
  font-family: 'Barlow', sans-serif !important;
  font-weight: 400 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 500px !important;
}
.event-badge {
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 0.25rem 0.6rem !important;
  border-radius: 2px !important;
  white-space: nowrap !important;
  font-family: 'Barlow', sans-serif !important;
}
.badge-special { background: rgba(255,107,0,0.15) !important; color: #FF6B00 !important; border: 1px solid rgba(255,107,0,0.3) !important; }
.badge-community { background: rgba(100,200,100,0.1) !important; color: #6fc76f !important; border: 1px solid rgba(100,200,100,0.25) !important; }
.badge-regular { background: rgba(255,255,255,0.05) !important; color: #888 !important; border: 1px solid #2a2a2a !important; }
.kalender-cta { text-align: center !important; margin-top: 2rem !important; }

/* ── KONTAKT ─────────────────────────────────────────────────────────────── */
.clutch-kontakt {
  background: #0f0f0f !important;
  padding: 5rem 0 !important;
}
.kontakt-grid {
  display: grid !important;
  grid-template-columns: 1fr 1.4fr !important;
  gap: 4rem !important;
}
.kontakt-info {
  color: #888 !important;
  margin-bottom: 1.5rem !important;
  font-family: 'Barlow', sans-serif !important;
}
.kontakt-detail {
  display: flex !important;
  gap: 1rem !important;
  align-items: flex-start !important;
  margin-bottom: 1rem !important;
}
.kontakt-detail-icon {
  width: 34px !important; height: 34px !important;
  background: rgba(255,107,0,0.1) !important;
  border: 1px solid rgba(255,107,0,0.2) !important;
  border-radius: 4px !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  flex-shrink: 0 !important;
}
.kontakt-detail-text strong {
  display: block !important;
  color: #f0f0f0 !important;
  font-weight: 600 !important;
  margin-bottom: 0.1rem !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: 0.9rem !important;
  text-transform: none !important;
}
.kontakt-detail-text span {
  color: #888 !important;
  font-size: 0.88rem !important;
  font-family: 'Barlow', sans-serif !important;
}
.form-group { margin-bottom: 1rem !important; }
.form-group label {
  display: block !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #888 !important;
  margin-bottom: 0.4rem !important;
  font-family: 'Barlow', sans-serif !important;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100% !important;
  background: #161616 !important;
  border: 1px solid #2a2a2a !important;
  border-radius: 4px !important;
  padding: 0.7rem 0.9rem !important;
  color: #f0f0f0 !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: 0.9rem !important;
  transition: border-color 0.2s !important;
  outline: none !important;
  -webkit-appearance: none !important;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #FF6B00 !important; }
.form-group textarea { resize: vertical !important; min-height: 90px !important; }
.form-row { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 1rem !important; }
.form-submit { width: 100% !important; text-align: center !important; border: none !important; }
#form-feedback { font-family: 'Barlow', sans-serif !important; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.clutch-footer {
  background: #161616 !important;
  border-top: 1px solid #2a2a2a !important;
  padding: 3rem 0 2rem !important;
  display: block !important;
}
.footer-top {
  display: grid !important;
  grid-template-columns: 1.5fr 1fr 1fr !important;
  gap: 3rem !important;
  margin-bottom: 2rem !important;
  padding-bottom: 2rem !important;
  border-bottom: 1px solid #2a2a2a !important;
}
.footer-brand h3 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 1.4rem !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 0.75rem !important;
  color: #f0f0f0 !important;
  text-transform: uppercase !important;
}
.footer-brand h3 span { color: #FF6B00 !important; }
.footer-brand p {
  color: #888 !important;
  font-size: 0.88rem !important;
  font-family: 'Barlow', sans-serif !important;
  font-weight: 400 !important;
  text-transform: none !important;
  line-height: 1.6 !important;
}
.footer-col h4 {
  font-family: 'Barlow', sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #FF6B00 !important;
  margin-bottom: 1rem !important;
}
.footer-col a {
  display: block !important;
  color: #888 !important;
  font-size: 0.88rem !important;
  margin-bottom: 0.5rem !important;
  font-family: 'Barlow', sans-serif !important;
  text-decoration: none !important;
  text-transform: none !important;
}
.footer-col a:hover { color: #f0f0f0 !important; }
.footer-bottom {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
}
.footer-bottom p {
  font-size: 0.78rem !important;
  color: #888 !important;
  font-family: 'Barlow', sans-serif !important;
  text-transform: none !important;
  font-weight: 400 !important;
}
.social-links { display: flex !important; gap: 0.75rem !important; margin-top: 1.2rem !important; }
.social-link {
  width: 34px !important; height: 34px !important;
  border: 1px solid #2a2a2a !important;
  border-radius: 4px !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  color: #888 !important;
  transition: all 0.2s !important;
  background: transparent !important;
}
.social-link:hover { border-color: #FF6B00 !important; color: #FF6B00 !important; }

/* ── ANIMATIONS ──────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid, .community-grid, .food-grid, .kontakt-grid { grid-template-columns: 1fr !important; }
  .events-grid { grid-template-columns: 1fr 1fr !important; }
  .footer-top { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 600px) {
  .clutch-nav { padding: 0 1.2rem !important; }
  .nav-links { display: none !important; }
  .events-grid { grid-template-columns: 1fr !important; }
  .food-categories { grid-template-columns: 1fr !important; }
  .form-row { grid-template-columns: 1fr !important; }
  .footer-top { grid-template-columns: 1fr !important; }
  .event-row { grid-template-columns: 55px 1fr !important; }
  .event-badge { display: none !important; }
  .clutch-hero { min-height: 60vh !important; }
}

/* ── EVENT EXPAND ────────────────────────────────────────────────────────── */
.event-row.has-desc { cursor: pointer !important; }
.event-row.has-desc:hover { background: #1e1e1e !important; }

.event-info-top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem !important;
}
.event-info-top h4 {
  margin-bottom: 0 !important;
  flex: 1 !important;
}
.event-time {
  font-weight: 400 !important;
  color: #888 !important;
  font-size: 0.85rem !important;
}
.event-toggle-icon {
  font-size: 1.1rem !important;
  color: #FF6B00 !important;
  font-weight: 700 !important;
  flex-shrink: 0 !important;
  transition: transform 0.25s !important;
  display: inline-block !important;
  line-height: 1 !important;
  font-family: 'Barlow', sans-serif !important;
  text-transform: none !important;
}
.event-toggle-icon.open {
  transform: rotate(45deg) !important;
}

.event-desc {
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.35s ease, padding 0.25s ease !important;
}
.event-desc.open {
  max-height: 300px !important;
  padding-top: 0.6rem !important;
}
.event-desc p {
  font-size: 0.88rem !important;
  color: #aaa !important;
  line-height: 1.6 !important;
  font-family: 'Barlow', sans-serif !important;
  font-weight: 400 !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
  max-width: none !important;
}

/* Getränkekarte Seite */
.page-template-page-getraenkekarte .clutch-nav { background: rgba(15,15,15,0.97) !important; }

/* ── LEGAL PAGES ─────────────────────────────────────────────────────────── */
.legal-block h3 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: #FF6B00 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin: 2rem 0 0.5rem !important;
  padding-top: 1.5rem !important;
  border-top: 1px solid #2a2a2a !important;
}
.legal-block h3:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: none !important;
}
.legal-block p {
  color: #aaa !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
  font-weight: 400 !important;
  text-transform: none !important;
  margin-bottom: 0.5rem !important;
}
.legal-block a {
  color: #FF6B00 !important;
  text-decoration: underline !important;
}
.legal-block a:hover { color: #cc5500 !important; }

/* ── HAMBURGER MENU ──────────────────────────────────────────────────────── */
.nav-hamburger {
  display: none !important;
  flex-direction: column !important;
  gap: 5px !important;
  cursor: pointer !important;
  padding: 4px !important;
  background: none !important;
  border: none !important;
}
.nav-hamburger span {
  display: block !important;
  width: 22px !important;
  height: 2px !important;
  background: #f0f0f0 !important;
  transition: all 0.25s !important;
  border-radius: 2px !important;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg) !important; }
.nav-hamburger.open span:nth-child(2) { opacity: 0 !important; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) !important; }

.nav-mobile {
  display: none !important;
  position: fixed !important;
  top: 64px !important;
  left: 0 !important; right: 0 !important;
  background: rgba(15,15,15,0.98) !important;
  border-bottom: 1px solid #2a2a2a !important;
  padding: 1.5rem 2rem !important;
  z-index: 9998 !important;
  flex-direction: column !important;
  gap: 0 !important;
  backdrop-filter: blur(8px) !important;
}
.nav-mobile.open { display: flex !important; }
.nav-mobile a {
  font-family: 'Barlow', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #888 !important;
  padding: 0.9rem 0 !important;
  border-bottom: 1px solid #2a2a2a !important;
  display: block !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
}
.nav-mobile a:last-child { border-bottom: none !important; }
.nav-mobile a:hover, .nav-mobile a.nav-cta { color: #FF6B00 !important; }
.nav-mobile a.nav-cta {
  background: none !important;
  padding-top: 1rem !important;
  font-size: 1rem !important;
}

@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex !important; }
}

/* ── DATE PICKER ─────────────────────────────────────────────────────────── */
.date-picker-wrap { position: relative !important; }
.date-picker-wrap input[type="text"] { cursor: pointer !important; }

.clutch-cal {
  position: absolute !important;
  top: calc(100% + 6px) !important;
  left: 0 !important;
  z-index: 999 !important;
  background: #1e1e1e !important;
  border: 1px solid #2a2a2a !important;
  border-radius: 8px !important;
  padding: 1rem !important;
  width: 280px !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4) !important;
  display: none !important;
}
.clutch-cal.open { display: block !important; }
.cal-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 0.75rem !important;
}
.cal-header span {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: #f0f0f0 !important;
}
.cal-nav {
  background: none !important;
  border: none !important;
  color: #FF6B00 !important;
  font-size: 1.1rem !important;
  cursor: pointer !important;
  padding: 0 0.3rem !important;
  line-height: 1 !important;
}
.cal-weekdays {
  display: grid !important;
  grid-template-columns: repeat(7, 1fr) !important;
  gap: 2px !important;
  margin-bottom: 4px !important;
}
.cal-weekdays span {
  text-align: center !important;
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #888 !important;
  font-family: 'Barlow', sans-serif !important;
  padding: 2px 0 !important;
}
.cal-days {
  display: grid !important;
  grid-template-columns: repeat(7, 1fr) !important;
  gap: 2px !important;
}
.cal-day {
  text-align: center !important;
  padding: 6px 2px !important;
  font-size: 0.82rem !important;
  font-family: 'Barlow', sans-serif !important;
  cursor: pointer !important;
  border-radius: 4px !important;
  color: #f0f0f0 !important;
  background: none !important;
  border: none !important;
  transition: background 0.15s !important;
}
.cal-day:hover { background: rgba(255,107,0,0.15) !important; color: #FF6B00 !important; }
.cal-day.selected { background: #FF6B00 !important; color: #fff !important; }
.cal-day.today { border: 1px solid #FF6B00 !important; }
.cal-day.other-month { color: #444 !important; }
.cal-day.disabled { color: #333 !important; cursor: default !important; pointer-events: none !important; }

/* ── GALERIE ─────────────────────────────────────────────────────────────── */
.clutch-galerie {
  background: #0f0f0f !important;
  padding: 0 0 5rem !important;
}
.galerie-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1rem !important;
  margin-top: 2.5rem !important;
}
.galerie-item {
  position: relative !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  aspect-ratio: 4/3 !important;
}
.galerie-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.4s ease !important;
}
.galerie-item:hover img { transform: scale(1.04) !important; }
.galerie-label {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  padding: 0.6rem 1rem !important;
  background: linear-gradient(transparent, rgba(15,15,15,0.85)) !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  color: #f0f0f0 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

@media (max-width: 768px) {
  .galerie-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 500px) {
  .galerie-grid { grid-template-columns: 1fr !important; }
}

/* ── LIGHTBOX ────────────────────────────────────────────────────────────── */
.clutch-lightbox {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  background: rgba(0,0,0,0.92) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 2rem !important;
  animation: lbFadeIn 0.2s ease !important;
  cursor: pointer !important;
}
.clutch-lightbox img {
  max-width: 100% !important;
  max-height: 90vh !important;
  object-fit: contain !important;
  border-radius: 8px !important;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6) !important;
  animation: lbZoomIn 0.25s ease !important;
  cursor: default !important;
}
.clutch-lightbox-close {
  position: absolute !important;
  top: 1.5rem !important;
  right: 1.5rem !important;
  width: 40px !important;
  height: 40px !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 4px !important;
  background: rgba(255,255,255,0.05) !important;
  color: #fff !important;
  font-size: 1.2rem !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.2s !important;
}
.clutch-lightbox-close:hover { background: rgba(255,107,0,0.3) !important; }
.clutch-lightbox-caption {
  position: absolute !important;
  bottom: 2rem !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.5) !important;
  white-space: nowrap !important;
}
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes lbZoomIn { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ════════════════════════════════════════════════════════════
   IMMERSIVE UPGRADE v2 — Vibe der Bar auf der Website
   ════════════════════════════════════════════════════════════ */

/* ── HERO mit Foto-Hintergrund ──────────────────────────────── */
.clutch-hero {
  position: relative !important;
  min-height: 88vh !important;
  overflow: hidden !important;
}
.hero-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
}
.hero-bg img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  animation: heroSlowZoom 24s ease-in-out infinite alternate !important;
}
.hero-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background:
    linear-gradient(180deg, rgba(15,15,15,0.82) 0%, rgba(15,15,15,0.68) 45%, rgba(15,15,15,0.94) 100%),
    radial-gradient(ellipse 70% 50% at 50% 42%, rgba(255,107,0,0.14) 0%, transparent 70%) !important;
}
.clutch-hero > *:not(.hero-bg):not(.hero-overlay):not(.hero-led) {
  position: relative !important;
  z-index: 2 !important;
}
@keyframes heroSlowZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

/* Neon-Glow auf dem Hero-Titel — wie die Schilder in der Bar */
.clutch-hero h1 span {
  color: #FF6B00 !important;
  text-shadow:
    0 0 18px rgba(255,107,0,0.55),
    0 0 50px rgba(255,107,0,0.28) !important;
}

/* LED-Strip am unteren Hero-Rand — wie eure echten LED-Leisten */
.hero-led {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 3px !important;
  z-index: 3 !important;
  background: linear-gradient(90deg,
    #FF6B00 0%, #b44bff 25%, #4b7bff 50%, #b44bff 75%, #FF6B00 100%) !important;
  background-size: 200% 100% !important;
  animation: ledFlow 8s linear infinite !important;
  opacity: 0.85 !important;
}
@keyframes ledFlow {
  from { background-position: 0% 0; }
  to   { background-position: 200% 0; }
}

/* ── Neon-Akzent auf allen Section-Titles ───────────────────── */
.section-title span {
  text-shadow: 0 0 14px rgba(255,107,0,0.4) !important;
}

/* ── Scroll-Reveal Animationen ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Event-Cards: Glow beim Hover ───────────────────────────── */
.event-type-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}
.event-type-card:hover {
  transform: translateY(-6px) !important;
  border-color: #FF6B00 !important;
  box-shadow: 0 12px 32px rgba(255,107,0,0.12), 0 0 0 1px rgba(255,107,0,0.25) !important;
}

/* ── Galerie: Glow + LED-Border beim Hover ──────────────────── */
.galerie-item {
  transition: box-shadow 0.3s ease !important;
}
.galerie-item:hover {
  box-shadow: 0 8px 32px rgba(255,107,0,0.18), 0 0 0 1px rgba(255,107,0,0.3) !important;
}

/* ── Buttons: Glow ──────────────────────────────────────────── */
.btn-primary {
  box-shadow: 0 4px 18px rgba(255,107,0,0.25) !important;
  transition: all 0.25s ease !important;
}
.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(255,107,0,0.45) !important;
  transform: translateY(-1px) !important;
}
.btn-ghost:hover {
  box-shadow: 0 0 18px rgba(255,107,0,0.15) !important;
}

/* ── Nav: LED-Linie unten ───────────────────────────────────── */
.clutch-nav::after {
  content: '' !important;
  position: absolute !important;
  bottom: -1px !important;
  left: 0 !important;
  right: 0 !important;
  height: 1px !important;
  background: linear-gradient(90deg,
    transparent 0%, rgba(255,107,0,0.5) 30%, rgba(180,75,255,0.5) 70%, transparent 100%) !important;
  background-size: 200% 100% !important;
  animation: ledFlow 12s linear infinite !important;
}

/* ── Kalender Event-Rows: Hover-Akzent ──────────────────────── */
.event-row {
  border-left: 2px solid transparent !important;
  transition: background 0.2s ease, border-color 0.2s ease !important;
}
.event-row:hover {
  border-left-color: #FF6B00 !important;
}

/* ── Sektions-Übergänge: dezente Trennlinien mit Glow ───────── */
.clutch-about, .clutch-community, .clutch-kalender {
  position: relative !important;
}
.clutch-about::before,
.clutch-community::before,
.clutch-kalender::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 60% !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,0.25), transparent) !important;
}

/* ── Subtiles Grain für Atmosphäre ──────────────────────────── */
body::after {
  content: '' !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 99998 !important;
  pointer-events: none !important;
  opacity: 0.025 !important;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E") !important;
}

/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
  .hero-bg img, .hero-led, .clutch-nav::after { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
