/* ============================================================
   Beats & Reben 2026 – Stylesheet
   beats-und-reben.at
   ============================================================ */

/* ── RESET & CUSTOM PROPERTIES ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow:     #F2B800;
  --yellow2:    #FFD04D;
  --yellow-dim: rgba(242,184,0,.12);
  --black:      #0a0a0a;
  --dark:       #111111;
  --mid:        #1c1c1c;
  --white:      #ffffff;
  --gray:       #888888;
  --light:      #f5f5f5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .3s, border-color .3s;
}
nav.scrolled {
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(242,184,0,.2);
}
.nav-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  color: var(--yellow);
  letter-spacing: .02em;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--yellow); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 60px 24px 80px;
  position: relative;
  background: var(--black);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 10%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(242,184,0,.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Logo Badge */
.logo-badge {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(242,184,0,.2);
}
.logo-badge img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Hero typography */
.eyebrow {
  font-size: .7rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 16px;
}
h1 {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 1;
  color: var(--yellow);
  text-shadow: 0 0 60px rgba(242,184,0,.3);
  margin-bottom: 12px;
}
h1 .amp { font-size: .75em; }
.tagline {
  font-size: clamp(.95rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
  margin-bottom: 32px;
}
.tagline strong { color: var(--white); font-weight: 600; }

/* Date strip */
.date-strip {
  display: inline-flex;
  border: 1px solid rgba(242,184,0,.4);
  border-radius: 2px;
  overflow: hidden;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 40px;
}
.date-strip span { padding: 10px 20px; background: rgba(242,184,0,.07); }
.date-strip span + span { border-left: 1px solid rgba(242,184,0,.3); }

/* Countdown */
#countdown {
  display: flex; gap: 18px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 44px;
}
.cd-item { text-align: center; min-width: 60px; }
.cd-num { font-size: 2.8rem; line-height: 1; font-weight: 700; color: var(--yellow); }
.cd-label {
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-top: 4px;
}
.cd-sep { font-size: 2rem; color: rgba(242,184,0,.3); align-self: flex-start; padding-top: 4px; }

/* CTA Buttons */
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 34px;
  border-radius: 2px; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; font-weight: 600;
  transition: all .22s; cursor: pointer; border: none;
}
.btn-primary { background: var(--yellow); color: var(--black); }
.btn-primary:hover {
  background: var(--yellow2); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(242,184,0,.35);
}
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.25); }
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.2); font-size: .65rem;
  letter-spacing: .14em; text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── SECTIONS (shared) ──────────────────────────────────────── */
section { padding: 96px 24px; max-width: 1100px; margin: 0 auto; }
section.full { max-width: 100%; padding: 0; }

.section-tag {
  font-size: .68rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 14px;
}
h2 {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.1; color: var(--white); margin-bottom: 20px;
}
h2 em { color: var(--yellow); font-style: normal; }

.divider {
  width: 44px; height: 3px;
  background: var(--yellow);
  margin-bottom: 36px; border-radius: 2px;
}

/* ── KONZEPT CARDS ──────────────────────────────────────────── */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2px; margin-top: 48px;
}
.concept-card {
  background: var(--mid);
  padding: 36px 28px;
  border-top: 3px solid transparent;
  transition: border-color .25s, background .25s;
}
.concept-card:hover { border-color: var(--yellow); background: #222; }
.concept-icon { font-size: 2rem; margin-bottom: 16px; }
.concept-card h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--white); margin-bottom: 10px; letter-spacing: .02em;
}
.concept-card p { font-size: .88rem; line-height: 1.75; color: rgba(255,255,255,.5); }

/* ── LOCATION / STATS BAND ──────────────────────────────────── */
.photo-band {
  background: var(--mid);
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 80px 24px;
  text-align: center;
}
.photo-band h2 { color: var(--white); }
.photo-band p {
  max-width: 620px; margin: 0 auto;
  font-size: 1rem; line-height: 1.85; color: rgba(255,255,255,.55);
}
.stat-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  margin: 56px auto 0; max-width: 800px;
  border: 1px solid #2a2a2a;
}
.stat-item {
  flex: 1; min-width: 160px;
  padding: 28px 20px; text-align: center;
  border-right: 1px solid #2a2a2a;
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2.4rem; font-weight: 700; color: var(--yellow); line-height: 1; }
.stat-label {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-top: 6px;
}
.map-box {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; margin: 48px auto 0; max-width: 800px; height: 300px;
  background: #161616; border: 1px solid #2a2a2a;
  color: rgba(255,255,255,.2); font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase;
}

/* ── INNENHOF TABELLE ───────────────────────────────────────── */
.innenhof-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 900px;
  margin: 12px auto 0;
}
.innenhof-col {
  background: var(--mid);
  padding: 24px 22px 28px;
  border-top: 3px solid rgba(242,184,0,.25);
}
.innenhof-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #2a2a2a;
}
.innenhof-num {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--yellow); color: var(--black);
  font-size: .85rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: .04em;
}
.innenhof-header strong {
  display: block; font-size: .88rem; font-weight: 700;
  color: var(--white); margin-bottom: 2px;
}
.innenhof-header span {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.innenhof-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.innenhof-list li {
  font-size: .85rem; color: rgba(255,255,255,.6);
  padding-left: 14px; position: relative; line-height: 1.4;
}
.innenhof-list li::before {
  content: '–';
  position: absolute; left: 0;
  color: var(--yellow); opacity: .6;
}
@media (max-width: 700px) {
  .innenhof-table { grid-template-columns: 1fr; }
}
/* ── WINZER GRID ────────────────────────────────────────────── */
.winzer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px; margin-top: 48px;
}
.winzer-card {
  background: var(--mid);
  border-top: 3px solid transparent;
  transition: border-color .22s, background .22s;
  overflow: hidden;
}
.winzer-card:hover { border-color: var(--yellow); background: #202020; }
.winzer-card:hover .winzer-img-overlay { opacity: 1; }

.winzer-img-wrap {
  position: relative; width: 100%; aspect-ratio: 4 / 3;
  background: #1a1a1a; overflow: hidden;
}
.winzer-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  object-position: center;
  filter: grayscale(20%); transition: transform .4s, filter .4s;
}
.winzer-card:hover .winzer-img-wrap img { transform: scale(1.04); filter: grayscale(0%); }

.winzer-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  color: rgba(255,255,255,.15);
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
}
.winzer-img-placeholder svg { width: 32px; opacity: .2; }

.winzer-img-overlay {
  position: absolute; inset: 0;
  background: rgba(242,184,0,.08);
  opacity: 0; transition: opacity .3s;
}
.winzer-info { padding: 20px 22px 24px; }
.winzer-info strong {
  display: block; font-size: 1rem; font-weight: 700;
  color: var(--white); line-height: 1.3; margin-bottom: 10px;
}
.winzer-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--yellow); text-decoration: none;
  border-bottom: 1px solid rgba(242,184,0,.3);
  padding-bottom: 1px; transition: border-color .2s;
}
.winzer-link:hover { border-color: var(--yellow); }
.winzer-link svg { width: 10px; }

/* ── PROGRAMM ───────────────────────────────────────────────── */
.programm-table {
  margin-top: 36px;
  border: 1px solid #2a2a2a;
  border-radius: 2px;
  overflow: hidden;
}
.programm-row {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid #222;
  transition: background .2s;
}
.programm-row:last-child { border-bottom: none; }
.programm-row:not(.programm-header):hover { background: #222; }
 
.programm-header {
  background: #1a1a1a;
  border-bottom: 2px solid rgba(242,184,0,.25) !important;
}
.programm-header span {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.3); padding: 12px 20px; font-weight: 600;
}
 
.prog-time {
  padding: 18px 20px;
  font-size: .82rem; font-weight: 700;
  color: var(--yellow); letter-spacing: .02em;
  border-right: 1px solid #222;
  display: flex; align-items: center;
  font-variant-numeric: tabular-nums;
}
.prog-act {
  padding: 18px 20px;
  border-right: 1px solid #222;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.prog-act strong {
  font-size: .95rem; color: var(--white); font-weight: 600;
}
.prog-ort {
  padding: 18px 20px;
  font-size: .85rem; color: rgba(255,255,255,.45);
  display: flex; align-items: center; line-height: 1.5;
}
.prog-badge {
  font-size: .6rem; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(242,184,0,.15); color: var(--yellow);
  border: 1px solid rgba(242,184,0,.3);
  padding: 2px 8px; border-radius: 2px; white-space: nowrap;
}
 
@media (max-width: 700px) {
  .programm-row { grid-template-columns: 1fr; }
  .prog-time { border-right: none; border-bottom: 1px solid #222;
    padding: 12px 16px; }
  .prog-act { border-right: none; padding: 10px 16px; }
  .prog-ort { padding: 10px 16px 14px; }
  .programm-header { display: none; }
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { margin-top: 48px; }
details { border-bottom: 1px solid #222; }
details:first-of-type { border-top: 1px solid #222; }
summary {
  padding: 22px 0; font-size: .97rem; font-weight: 500;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  list-style: none; color: var(--white); transition: color .2s;
}
summary::-webkit-details-marker { display: none; }
summary:hover,
details[open] summary { color: var(--yellow); }
.faq-arrow { font-size: .75rem; transition: transform .25s; }
details[open] .faq-arrow { transform: rotate(180deg); }
.faq-body {
  padding-bottom: 22px; font-size: .9rem; line-height: 1.8;
  color: rgba(255,255,255,.5); max-width: 720px;
}

/* Partner */
.partner-section {
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  padding: 28px 24px;
  margin: 16px 0;
}
.partner-label {
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 20px;
}
.partner-row {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.partner-item {
  display: flex; align-items: center; justify-content: center;
  width: 140px; height: 70px;
  background: #222; border: 1px solid #2e2e2e;
  border-radius: 4px; padding: 10px 14px;
  opacity: .8; transition: opacity .2s, border-color .2s;
  text-decoration: none;
}
.partner-item:hover { opacity: 1; border-color: rgba(242,184,0,.3); }
.partner-item img {
  width: 100%; height: 100%;
  object-fit: contain;
}

/* ── NEWSLETTER ─────────────────────────────────────────────── */
.newsletter-band {
  background: var(--yellow);
  padding: 96px 24px; text-align: center;
}
.newsletter-band h2   { color: var(--black); }
.newsletter-band p    { color: rgba(0,0,0,.6); font-size: .97rem; margin-bottom: 36px; }
.newsletter-form {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap; max-width: 500px; margin: 0 auto;
}
.newsletter-form input {
  flex: 1; min-width: 220px; padding: 14px 18px;
  background: rgba(0,0,0,.12); border: 1px solid rgba(0,0,0,.2);
  border-radius: 2px; color: var(--black);
  font-size: .9rem; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color .2s;
}
.newsletter-form input::placeholder { color: rgba(0,0,0,.4); }
.newsletter-form input:focus { border-color: var(--black); }
.btn-dark {
  background: var(--black); color: var(--yellow);
  border: none; padding: 14px 28px;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 2px; cursor: pointer; transition: all .22s;
}
.btn-dark:hover { background: #222; transform: translateY(-2px); }
.form-note { margin-top: 14px; font-size: .72rem; color: rgba(0,0,0,.4); }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid #1a1a1a;
  padding: 44px 24px; text-align: center;
}
.footer-inner {
  max-width: 700px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.footer-logo { font-family: 'Dancing Script', cursive; font-size: 2rem; color: var(--yellow); }
.social-row { display: flex; gap: 24px; justify-content: center; }
.social-row a {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s;
}
.social-row a:hover { color: var(--yellow); }
.footer-legal { font-size: .75rem; color: rgba(255,255,255,.2); }
.footer-legal a { color: rgba(242,184,0,.4); text-decoration: none; }
.footer-legal a:hover { color: var(--yellow); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 620px) {
  .nav-links { display: none; }
}
@media (max-width: 700px) {
  .winzer-grid { grid-template-columns: 1fr; }
}
@media (min-width: 701px) and (max-width: 960px) {
  .winzer-grid { grid-template-columns: repeat(2, 1fr); }
}
