/* ===== MSC HUB - Mozart Symphonies Challenge ===== */
/* Palette from danielecamiz.com main site */

:root {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0f;
  --bg-surface: #141419;
  --accent-gold: #cba135;
  --accent-gold-light: #e6c46a;
  --accent-gold-dark: #a07d1c;
  --gold-glow: rgba(212, 175, 55, 0.2);
  --text-primary: #fffbe9;
  --text-secondary: rgba(244, 238, 212, 0.85);
  --text-meta: rgba(212, 175, 55, 0.8);
  --border-subtle: rgba(212, 175, 55, 0.2);
  --border-hover: rgba(212, 175, 55, 0.45);
  --gradient-gold: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
  --card-bg: linear-gradient(135deg, rgba(25,25,25,0.95), rgba(35,35,35,0.92));
  --font-content: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 64px; }

body {
  font-family: var(--font-content);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  height: 56px;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo {
  height: 23px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

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

.lang-switch {
  display: flex;
  gap: 0.25rem;
  margin-left: 0.5rem;
  border-left: 1px solid var(--border-subtle);
  padding-left: 1rem;
}

.lang-btn {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  text-decoration: none;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.lang-btn.active {
  color: #fff;
  font-weight: 700;
  background: rgba(203, 161, 53, 0.2);
  pointer-events: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(203, 161, 53, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(203, 161, 53, 0.05) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.hero-logo {
  max-width: min(500px, 80vw);
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 4px 30px rgba(203, 161, 53, 0.3));
}

.hero-title {
  font-family: var(--font-ui);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.1;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-family: var(--font-content);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
  font-weight: 400;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Counter ring */
.hero-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.counter-ring {
  position: relative;
  width: 160px;
  height: 160px;
}

.counter-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.counter-track {
  fill: none;
  stroke: rgba(203, 161, 53, 0.15);
  stroke-width: 6;
}

.counter-fill {
  fill: none;
  stroke: var(--accent-gold);
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dashoffset 2s ease-out;
}

.counter-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
}

.counter-number {
  font-family: var(--font-ui);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.counter-separator {
  font-family: var(--font-ui);
  font-size: 1.5rem;
  color: var(--text-meta);
  margin: 0 0.1rem;
}

.counter-total {
  font-family: var(--font-ui);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-meta);
}

.counter-label {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}

.hero-scroll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-top: 3rem;
  color: var(--accent-gold);
  font-size: 1.2rem;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s;
  animation: bounce 2s infinite;
}

.hero-scroll-btn:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===== SECTIONS ===== */
.section {
  padding: 3rem 0;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.section-title {
  font-family: var(--font-ui);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== PROJECT ===== */
.project-text {
  max-width: 750px;
  margin: 0 auto;
}

.project-text p {
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

/* ===== TIMELINE ===== */
.section-timeline { background: var(--bg-secondary); }

.timeline {
  position: relative;
  padding-left: 56px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-gold), var(--border-subtle), var(--accent-gold));
}

/* Year marker */
.timeline-year {
  position: relative;
  margin: 2.5rem 0 1.5rem;
}

.timeline-year span {
  font-family: var(--font-ui);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-gold);
  background: var(--bg-secondary);
  padding: 0.4rem 1.2rem;
  position: relative;
  left: -16px;
  border: 1px solid rgba(203, 161, 53, 0.25);
  border-radius: 6px;
  letter-spacing: 0.05em;
}

/* COVID gap */
.timeline-gap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  padding-left: 0;
  position: relative;
  left: -10px;
}

.timeline-gap-line {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(203, 161, 53, 0.4),
    rgba(203, 161, 53, 0.4) 8px,
    transparent 8px,
    transparent 16px
  );
}

.timeline-gap-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-meta);
  white-space: nowrap;
}

/* Timeline card */
.timeline-card {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-dot {
  position: absolute;
  left: -47px;
  top: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 3px solid var(--bg-secondary);
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(203, 161, 53, 0.2), 0 2px 8px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dot-number {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 800;
  color: #000;
  line-height: 1;
}

.timeline-card.has-hero .timeline-dot {
  top: 1.5rem;
}

.timeline-card-inner {
  background: var(--card-bg);
  border: 1.5px solid var(--border-subtle);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-card-inner:hover {
  border-color: var(--border-hover);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 50px var(--gold-glow);
  transform: translateY(-3px);
}

/* Card hero image */
.card-hero {
  position: relative;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-hero img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-card-inner:hover .card-hero img {
  transform: scale(1.03);
}

.timeline-card-header {
  display: none; /* legacy — kept for compat */
}

/* ===== NEW CARD LAYOUT: poster left + content right ===== */
.card-layout {
  display: flex;
  gap: 0;
}

.card-poster {
  flex-shrink: 0;
  width: 160px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem 0.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.card-poster img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.card-content {
  flex: 1;
  min-width: 0;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Identity: big number + date */
.card-identity {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.challenge-num {
  font-family: var(--font-ui);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.challenge-date {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--text-meta);
  font-weight: 500;
}

/* Program (symphonies) — prominent */
.challenge-program {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.program-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.35rem 0;
}

.program-title {
  font-family: var(--font-content);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
}

.program-kochel {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  background: rgba(203, 161, 53, 0.15);
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.program-key {
  font-family: var(--font-content);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-secondary);
}

/* ── Main row: program left + video right ── */
.card-main-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.card-main-row .challenge-program {
  flex: 1;
}

/* Video buttons — column on the right of program */
.card-videos {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 0.2rem;
}

.video-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255, 0, 0, 0.12);
  color: #ff6b6b;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.video-btn:hover {
  background: rgba(255, 0, 0, 0.25);
  color: #ff8a8a;
  transform: translateY(-1px);
}

.video-btn--secondary {
  background: rgba(203, 161, 53, 0.10);
  color: var(--accent-gold);
}

.video-btn--secondary:hover {
  background: rgba(203, 161, 53, 0.22);
}

.video-btn i {
  font-size: 1rem;
}

/* ── Notes — legible ── */
.challenge-notes {
  padding: 0.6rem 0.8rem;
  background: rgba(255, 255, 255, 0.025);
  border-radius: 6px;
  border-left: 3px solid rgba(203, 161, 53, 0.3);
}

.challenge-notes p {
  font-family: var(--font-content);
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ── Media section: photos + album ── */
.card-media {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Album: cover + buttons side by side */
.card-album {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.album-cover {
  flex-shrink: 0;
}

.album-cover img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s;
}

.album-cover img:hover {
  border-color: rgba(203, 161, 53, 0.4);
}

.album-btns {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

/* Landing page link in card */
.card-content > .link-row {
  margin-top: auto;
}

/* Photo strip (max 4-5 visible) */
.photos-strip {
  display: flex;
  gap: 0.5rem;
}

.photos-strip .photo-thumb {
  flex: 1;
  min-width: 0;
}

/* "+N more" overlay on last visible photo */
.photo-thumb--more {
  position: relative;
}

.photo-thumb--more img {
  filter: brightness(0.4);
}

.photo-more-count {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  z-index: 1;
  letter-spacing: 0.03em;
}

.photo-thumb--more::after {
  display: none;
}

/* Keep old grid class for backward compat */
.photos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
}

.photo-thumb {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}

.photo-thumb::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  color: var(--accent-gold);
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.photo-thumb:hover {
  border-color: var(--accent-gold);
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.photo-thumb:hover::after {
  opacity: 1;
}

.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Album CTA: cover + action buttons */
.album-cta {
  margin-top: 1rem;
}

.album-cta-cover {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.album-cta-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.album-cta-cover:hover img {
  transform: scale(1.04);
  filter: brightness(0.7);
}

.album-cta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.album-cta-cover:hover .album-cta-overlay {
  opacity: 1;
}

.album-cta-overlay i {
  font-size: 1.8rem;
  color: #fff;
}

.album-cta-overlay span {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.album-cta-buttons {
  display: flex;
  gap: 0.6rem;
}

.album-cta--compact {
  margin-top: 0;
}

.album-cta--compact .album-cta-buttons {
  flex-direction: column;
  gap: 0;
}

.album-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 0;
}

.album-btn span {
  flex: 1;
}

.album-btn i:first-child {
  font-size: 1.1rem;
  width: 1.4rem;
  text-align: center;
}

.album-btn-arrow {
  font-size: 0.65rem;
  opacity: 0.5;
  transition: transform 0.3s, opacity 0.3s;
}

.album-btn:hover .album-btn-arrow {
  transform: translateX(3px);
  opacity: 1;
}

/* Facebook button */
.album-btn--facebook {
  background: rgba(66, 103, 178, 0.12);
  color: #8ba6d4;
}

.album-btn--facebook:hover {
  background: rgba(66, 103, 178, 0.25);
  color: #a8c0e8;
}

/* Amazon button */
.album-btn--amazon {
  background: rgba(255, 153, 0, 0.10);
  color: #e8a840;
}

.album-btn--amazon:hover {
  background: rgba(255, 153, 0, 0.22);
  color: #ffb84d;
}

/* Links in card - Premium full-width rows */
.challenge-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.link-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.7rem 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  border-radius: 0;
}

.link-row:last-child {
  border-bottom: none;
}

.link-row i.link-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.link-row span {
  flex: 1;
}

.link-row .link-arrow {
  font-size: 0.7rem;
  opacity: 0.4;
  transition: all 0.3s;
}

.link-row:hover {
  padding-left: 1.1rem;
}

.link-row:hover .link-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* Landing page link */
.link-row--landing {
  color: var(--accent-gold);
}
.link-row--landing i.link-icon {
  background: rgba(203, 161, 53, 0.15);
  color: var(--accent-gold);
}
.link-row--landing:hover {
  background: rgba(203, 161, 53, 0.06);
}

/* YouTube concert link */
.link-row--youtube {
  color: #ff4444;
}
.link-row--youtube i.link-icon {
  background: rgba(255, 68, 68, 0.12);
  color: #ff4444;
}
.link-row--youtube:hover {
  background: rgba(255, 68, 68, 0.06);
}

/* YouTube rehearsal link */
.link-row--rehearsal {
  color: var(--accent-gold-light);
}
.link-row--rehearsal i.link-icon {
  background: rgba(230, 196, 106, 0.12);
  color: var(--accent-gold-light);
}
.link-row--rehearsal:hover {
  background: rgba(230, 196, 106, 0.06);
}

/* Facebook link */
.link-row--facebook {
  color: #4267B2;
}
.link-row--facebook i.link-icon {
  background: rgba(66, 103, 178, 0.12);
  color: #4267B2;
}
.link-row--facebook:hover {
  background: rgba(66, 103, 178, 0.06);
}

/* Amazon Photos link */
.link-row--amazon {
  color: #FF9900;
}
.link-row--amazon i.link-icon {
  background: rgba(255, 153, 0, 0.12);
  color: #FF9900;
}
.link-row--amazon:hover {
  background: rgba(255, 153, 0, 0.06);
}

/* ===== STATS ===== */
.section-stats { background: var(--bg-surface); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(26, 26, 26, 0.6) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f0d478);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--border-hover);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(26, 26, 26, 0.8) 100%);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 60px var(--gold-glow);
}

.stat-card:hover::before { transform: scaleX(1); }

.stat-number {
  font-family: var(--font-ui);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== NEXT CONCERT ===== */
.next-concert-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.next-poster img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.next-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.next-badge {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.next-title {
  font-family: var(--font-ui);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.next-subtitle {
  font-family: var(--font-content);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.next-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.next-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.next-detail i { color: var(--accent-gold); width: 20px; }

.next-program {
  margin-bottom: 1.5rem;
}

.next-program h4 {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-meta);
  margin-bottom: 0.5rem;
}

.next-program p {
  font-family: var(--font-content);
  font-size: 1rem;
  color: var(--text-primary);
}

.next-program .kochel {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--accent-gold);
  margin-left: 0.3rem;
}

.next-actions { display: flex; gap: 0.75rem; }

.project-complete {
  text-align: center;
  padding: 3rem;
}

.project-complete i {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.project-complete p {
  font-family: var(--font-content);
  font-size: 1.3rem;
  color: var(--text-secondary);
}

/* ===== YOUTUBE ===== */
.section-youtube { text-align: center; min-height: 60vh; }

.youtube-text {
  font-family: var(--font-content);
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.youtube-embed {
  max-width: 720px;
  margin: 0 auto 2rem;
}

.youtube-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.youtube-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
  color: #000;
}

.btn-gold:hover {
  box-shadow: 0 4px 20px rgba(203, 161, 53, 0.4);
  transform: translateY(-2px);
}

.btn-youtube {
  background: #ff0000;
  color: #fff;
}

.btn-youtube:hover {
  background: #cc0000;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--accent-gold);
  padding: 1.25rem 0 1rem;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-img {
  height: 14px;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.3;
}

.footer-links-col {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-links-col a {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links-col a:hover { color: var(--accent-gold); }

.footer-bottom {
  text-align: center;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.footer-admin-link {
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  font-size: 0.6rem;
  transition: color 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
}

.footer-admin-link:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

/* Hero photo lightbox trigger */
.card-hero--clickable {
  cursor: pointer;
}

.card-hero--clickable .card-hero-zoom {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}

.card-hero--clickable:hover .card-hero-zoom {
  opacity: 1;
}

/* ===== LIGHTBOX ===== */
.msc-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.msc-lightbox.active {
  display: flex;
}

.msc-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
}

.msc-lightbox__content {
  position: relative;
  z-index: 1;
  max-width: 95vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.msc-lightbox__img {
  max-width: 95vw;
  max-height: 85vh;
  border-radius: 10px;
  border: 3px solid var(--accent-gold);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8);
  object-fit: contain;
  transition: opacity 0.25s ease;
}

.msc-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  color: #000;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: 300;
  line-height: 1;
  font-family: Arial, sans-serif;
}

.msc-lightbox__close:hover {
  background: #f0f0f0;
  transform: scale(1.1) rotate(90deg);
}

.msc-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(203, 161, 53, 0.3);
  color: var(--accent-gold);
  font-size: 1.4rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.msc-lightbox__arrow:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: var(--accent-gold);
  transform: translateY(-50%) scale(1.1);
}

.msc-lightbox__arrow--left {
  left: 2%;
}

.msc-lightbox__arrow--right {
  right: 2%;
}

.msc-lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-gold);
  background: rgba(0, 0, 0, 0.6);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

/* Desktop: wider poster */
@media (min-width: 900px) {
  .card-poster { width: 200px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 1.5rem;
    gap: 0.75rem;
  }

  .nav-links.open { display: flex; }

  .lang-switch {
    border-left: none;
    border-top: 1px solid var(--border-subtle);
    padding-left: 0;
    padding-top: 0.75rem;
    margin-left: 0;
  }

  .section { padding: 4rem 0; }

  .timeline {
    padding-left: 46px;
  }

  .timeline::before { left: 13px; }
  .timeline-dot { left: -40px; width: 32px; height: 32px; }
  .dot-number { font-size: 0.7rem; }

  .card-layout {
    flex-direction: column;
  }

  .card-poster {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    padding: 1rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .card-content {
    padding: 1rem;
  }

  .challenge-num {
    font-size: 1.6rem;
  }

  .card-main-row {
    flex-direction: column;
    gap: 0.6rem;
  }

  .card-videos {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-album {
    flex-direction: column;
    align-items: stretch;
  }

  .album-cover img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }

  .msc-lightbox__arrow {
    padding: 0.6rem 0.7rem;
    font-size: 1.1rem;
  }

  .msc-lightbox__arrow--left { left: 4px; }
  .msc-lightbox__arrow--right { right: 4px; }

  .msc-lightbox__close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }

  .next-concert-card {
    grid-template-columns: 1fr;
  }

  .next-poster {
    max-height: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links-col { text-align: center; }

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

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .photos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--accent-gold);
  color: #000;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s;
  z-index: 900;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #e0c054;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}
