/* ═══════════════════════════════════════════
   CAJ BURGFEST — MAIN STYLESHEET
   CAJ Siersburg e.V.
   Version: 1.0
═══════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
  --orange: #FF6B00;
  --orange-light: #FF8C38;
  --orange-dark: #D95800;
  --orange-glow: rgba(255, 107, 0, 0.2);
  --white: #FFFFFF;
  --black: #0D0D0D;
  --gray-50: #FAFAFA;
  --gray-100: #F4F4F5;
  --gray-200: #E4E4E7;
  --gray-400: #A1A1AA;
  --gray-600: #52525B;
  --gray-800: #27272A;
  --text: #1A1A2E;
  --text-muted: #52525B;
  --bg: #FFFFFF;
  --bg-alt: #F9F6F2;
  --surface: #FFFFFF;
  --border: #E4E4E7;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Outfit', 'Segoe UI', sans-serif;
  --nav-h: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --text: #F4F4F5;
  --text-muted: #A1A1AA;
  --bg: #0F0F12;
  --bg-alt: #1A1A20;
  --surface: #1E1E26;
  --border: #2D2D35;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.5);
  --gray-100: #1A1A20;
  --gray-200: #2D2D35;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section { padding: 100px 0; }
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-tag {
  display: inline-block;
  background: var(--orange-glow);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,107,0,0.3);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--text);
}
.section-title em { font-style: normal; color: var(--orange); }
.section-desc { color: var(--text-muted); margin-top: 12px; font-size: 1.05rem; max-width: 560px; }
.section-header.centered .section-desc { margin: 12px auto 0; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); box-shadow: 0 4px 20px var(--orange-glow); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,0,0.35); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); color: var(--white); border-color: white; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); }

/* Dark Mode Toggle */
.dark-toggle {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange); color: white; border: none; cursor: pointer;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(255,107,0,0.4); transition: all var(--transition);
}
.dark-toggle:hover { transform: scale(1.1); background: var(--orange-dark); }

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled { background: var(--bg); box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.04em; display: flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; }
.nav-logo-img { height: 44px; width: auto; object-fit: contain; display: block; }
.nav-logo-text { display: flex; gap: 2px; align-items: baseline; }
.logo-caj { color: var(--orange); }
.logo-burgfest { color: var(--text); }

/* Single Ticket */
.ticket-single-wrap { display: flex; justify-content: center; margin-bottom: 32px; }
.ticket-single-wrap .ticket-card { max-width: 480px; width: 100%; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link { padding: 8px 14px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; color: var(--text); transition: all var(--transition); }
.nav-link:hover { background: var(--gray-100); color: var(--orange); }
.nav-link.nav-cta { background: var(--orange); color: white; border-radius: 100px; padding: 8px 20px; }
.nav-link.nav-cta:hover { background: var(--orange-dark); color: white; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: calc(var(--nav-h) + 40px) 24px 80px;
}
.hero-bg { position: absolute; inset: 0; }
.hero-placeholder-img {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 70%, #1a1a2e 100%);
  display: flex; align-items: center; justify-content: center;
}
.placeholder-content { display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.3); font-size: 0.9rem; }
.placeholder-content i { font-size: 3rem; margin-bottom: 8px; }
.placeholder-content small { font-size: 0.75rem; opacity: 0.6; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,20,0.5) 0%, rgba(10,10,20,0.3) 40%, rgba(10,10,20,0.7) 100%); }
.hero::before { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 120px; background: var(--bg); clip-path: polygon(0 60%, 100% 0%, 100% 100%, 0% 100%); z-index: 2; }
.hero-content { position: relative; z-index: 3; text-align: center; max-width: 800px; animation: heroFadeIn 1s ease both; }
@keyframes heroFadeIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-badge { display: inline-block; background: rgba(255,107,0,0.2); border: 1px solid rgba(255,107,0,0.5); color: var(--orange-light); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 18px; border-radius: 100px; margin-bottom: 24px; animation: heroFadeIn 1s 0.1s ease both; }
.hero-title { display: flex; flex-direction: column; align-items: center; font-family: var(--font-display); line-height: 0.9; margin-bottom: 20px; animation: heroFadeIn 1s 0.2s ease both; }
.title-line1 { font-size: clamp(3rem, 10vw, 7rem); color: white; letter-spacing: 0.15em; }
.title-line2 { font-size: clamp(4rem, 14vw, 10rem); color: white; letter-spacing: 0.05em; }
.title-line2 em { font-style: normal; color: var(--orange); -webkit-text-stroke: 2px var(--orange); text-shadow: 0 0 40px rgba(255,107,0,0.5); }
.hero-sub { color: rgba(255,255,255,0.75); font-size: 1rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 24px; animation: heroFadeIn 1s 0.3s ease both; }
.hero-meta { display: flex; gap: 24px; justify-content: center; margin-bottom: 36px; animation: heroFadeIn 1s 0.4s ease both; }
.meta-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.meta-item i { color: var(--orange); }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: heroFadeIn 1s 0.5s ease both; }
.hero-scroll-hint { position: absolute; bottom: 140px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; animation: heroFadeIn 1s 1s ease both; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: scrollPulse 1.5s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* About */
.about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; font-size: 1.05rem; }
.about-text p strong { color: var(--text); }
.about-stats { display: flex; gap: 32px; margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--border); }
.stat strong { display: block; font-family: var(--font-display); font-size: 2.2rem; color: var(--orange); line-height: 1; }
.stat span { font-size: 0.85rem; color: var(--text-muted); }
.about-visual { position: relative; }
.about-img-placeholder { width: 100%; aspect-ratio: 4/3; background: var(--gray-100); border-radius: var(--radius-lg); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--gray-400); font-size: 0.9rem; border: 2px dashed var(--border); }
.about-img-placeholder i { font-size: 3rem; }
.about-deco-card { position: absolute; bottom: -24px; right: -24px; background: var(--orange); color: white; padding: 20px 24px; border-radius: var(--radius); box-shadow: 0 8px 32px rgba(255,107,0,0.3); max-width: 220px; }
.about-deco-card i { font-size: 1.5rem; margin-bottom: 8px; }
.about-deco-card p { font-size: 0.9rem; font-style: italic; }

/* Festival Features */
.festival { background: var(--bg-alt); position: relative; overflow: hidden; }
.festival-bg-deco { position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(255,107,0,0.07) 0%, transparent 70%); pointer-events: none; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-card { background: var(--surface); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--border); transition: all var(--transition); position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange-glow); }
.feature-icon { font-size: 2.5rem; margin-bottom: 16px; }
.feature-card h3 { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.04em; margin-bottom: 12px; color: var(--text); }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Bands */
.bands { background: var(--bg); }
.bands-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bands-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
}
.bands-empty i { font-size: 2.5rem; margin-bottom: 12px; display: block; opacity: 0.4; }
.band-card { background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: all var(--transition); }
.band-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.band-img-wrap { position: relative; aspect-ratio: 16/9; }
.band-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #1a1a2e, #0f3460); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.band-img-placeholder i { font-size: 2.5rem; }
.band-stage-badge { position: absolute; top: 12px; right: 12px; background: var(--orange); color: white; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.band-stage-badge.stage-2 { background: #6C63FF; }
.band-info { padding: 24px; }
.band-name { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.04em; margin-bottom: 6px; }
.band-genre { display: inline-block; background: var(--gray-100); color: var(--text-muted); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; padding: 3px 10px; border-radius: 100px; margin-bottom: 14px; }
.band-bio { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.band-time { display: flex; align-items: center; gap: 6px; color: var(--orange); font-size: 0.85rem; font-weight: 600; }

/* Gallery Slider */
.gallery { background: var(--bg-alt); }
.slider-wrapper { position: relative; overflow: hidden; margin-top: 40px; }
.slider { display: flex; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.slide { min-width: calc(100% / 3); padding: 0 8px; }
.slide-placeholder { aspect-ratio: 4/3; background: linear-gradient(135deg, #1a1a2e, #16213e); border-radius: var(--radius); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: rgba(255,255,255,0.3); font-size: 0.9rem; transition: transform var(--transition); }
.slide-placeholder:hover { transform: scale(1.02); }
.slide-placeholder i { font-size: 2rem; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 48px; height: 48px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); color: var(--text); cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: all var(--transition); box-shadow: var(--shadow); }
.slider-btn:hover { background: var(--orange); color: white; border-color: var(--orange); }
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; padding-bottom: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: all var(--transition); border: none; }
.dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

/* Tickets */
.tickets { background: var(--bg); }
.ticket-single-wrap {
  display: flex; justify-content: center; margin-bottom: 32px;
}
.ticket-card-single {
  width: 100%; max-width: 760px;
  background: var(--surface);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(255,107,0,0.15), var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.ticket-card-inner {
  display: flex; align-items: stretch;
}
.ticket-left {
  background: var(--orange);
  color: white;
  padding: 44px 36px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; min-width: 220px; gap: 10px;
}
.ticket-icon { font-size: 3rem; line-height: 1; }
.ticket-type-label { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.06em; line-height: 1.1; }
.ticket-price { font-family: var(--font-display); font-size: 3rem; line-height: 1; margin-top: 6px; }
.ticket-divider {
  width: 24px; position: relative; flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  background: var(--surface);
}
.ticket-hole {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.ticket-dashes {
  flex: 1; width: 2px;
  background: repeating-linear-gradient(to bottom, var(--border) 0px, var(--border) 8px, transparent 8px, transparent 14px);
  margin: 4px 0;
}
.ticket-right {
  flex: 1; padding: 36px 40px;
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
}
.ticket-features { display: flex; flex-direction: column; gap: 10px; }
.ticket-features li { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 0.95rem; }
.ticket-features i { color: var(--orange); font-size: 0.8rem; flex-shrink: 0; }
.ticket-btn { align-self: flex-start; }
.ticket-partner-small { font-size: 0.82rem; color: var(--text-muted); }
.ticket-partner-small .partner-link { color: var(--orange); font-weight: 600; }

/* Map */
.map-section { padding-bottom: 0; }
.map-wrapper { position: relative; margin-top: 40px; }
.map-wrapper iframe { display: block; }
[data-theme="dark"] .map-wrapper iframe { filter: invert(0.9) hue-rotate(180deg) contrast(0.9); }
.map-overlay-card { position: absolute; top: 40px; left: 40px; background: var(--surface); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); min-width: 220px; }
.map-overlay-card h4 { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.04em; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.map-overlay-card h4 i { color: var(--orange); }
.map-overlay-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }

/* Contact */
.contact { background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-info p { color: var(--text-muted); margin-bottom: 32px; font-size: 1.05rem; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon { width: 44px; height: 44px; background: var(--orange-glow); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1rem; flex-shrink: 0; border: 1px solid rgba(255,107,0,0.2); }
.contact-item strong { display: block; margin-bottom: 2px; }
.contact-item a { color: var(--text-muted); font-size: 0.9rem; }
.contact-item a:hover { color: var(--orange); }
.contact-form { background: var(--surface); border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.contact-form-wrap { background: var(--surface); border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: var(--text); letter-spacing: 0.02em; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); font-family: var(--font-body); font-size: 0.95rem; transition: border-color var(--transition), box-shadow var(--transition); outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-glow); }
.form-group textarea { resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 10px; flex-direction: row; }
.form-check input[type="checkbox"] { width: auto; flex-shrink: 0; margin-top: 3px; accent-color: var(--orange); }
.form-check label { margin-bottom: 0; font-size: 0.85rem; color: var(--text-muted); font-weight: 400; }
.form-error { display: block; color: #EF4444; font-size: 0.8rem; margin-top: 4px; }
.form-success { display: flex; align-items: center; gap: 10px; color: #22C55E; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); border-radius: var(--radius); padding: 14px 18px; margin-top: 16px; font-size: 0.9rem; }

/* Sponsors */
.sponsors { background: var(--bg); border-top: 1px solid var(--border); }
.sponsors-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-bottom: 24px; }
.sponsor-logo { display: flex; align-items: center; justify-content: center; padding: 12px; border: 1px solid var(--border); border-radius: var(--radius); transition: all var(--transition); }
.sponsor-logo:hover { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange-glow); transform: translateY(-2px); }
.sponsor-placeholder { width: 120px; height: 60px; background: var(--gray-100); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gray-400); font-size: 0.8rem; font-weight: 600; }
.sponsor-cta { text-align: center; color: var(--text-muted); font-size: 0.9rem; }
.sponsor-cta a { color: var(--orange); font-weight: 600; }

/* Footer */
.footer { background: var(--gray-800); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
[data-theme="dark"] .footer { background: #08080B; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-col p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-burgfest { color: rgba(255,255,255,0.85); }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: all var(--transition); border: 1px solid rgba(255,255,255,0.1); }
.social-btn:hover { background: var(--orange); color: white; border-color: var(--orange); transform: translateY(-2px); }
.footer-col h4 { color: white; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.9rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--orange); }
.footer-col p i { margin-right: 8px; color: var(--orange); font-size: 0.85rem; }
.admin-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: rgba(255,255,255,0.3); font-size: 0.8rem; transition: color var(--transition); }
.admin-link:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 0.8rem; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 8px; }

/* Nav Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { height: 40px; width: auto; object-fit: contain; display: block; }
.nav-logo-text { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.04em; display: flex; gap: 2px; }

/* Single Ticket responsive */
@media (max-width: 600px) {
  .ticket-card-inner { flex-direction: column; }
  .ticket-left { min-width: unset; padding: 28px 24px; flex-direction: row; justify-content: space-between; align-items: center; gap: 16px; }
  .ticket-icon { font-size: 2rem; }
  .ticket-price { font-size: 2.2rem; margin-top: 0; }
  .ticket-divider { width: 100%; height: 24px; flex-direction: row; }
  .ticket-hole { width: 24px; height: 24px; }
  .ticket-dashes { flex: 1; height: 2px; width: auto; background: repeating-linear-gradient(to right, var(--border) 0px, var(--border) 8px, transparent 8px, transparent 14px); }
  .ticket-right { padding: 24px; }
  .ticket-btn { align-self: stretch; justify-content: center; }
}

/* Vorstand */
.vorstand { background: var(--bg-alt); }
.vorstand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}
.vorstand-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.vorstand-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,107,0,0.3);
}
.vorstand-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}
.vorstand-card:hover::after { transform: scaleX(1); }
.vorstand-img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
}
.vorstand-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.vorstand-card:hover .vorstand-img-wrap img { transform: scale(1.05); }
.vorstand-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}
.vorstand-img-placeholder i { font-size: 3rem; }
.vorstand-info { padding: 20px 16px 24px; }
.vorstand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  color: var(--text);
}
.vorstand-rolle {
  display: inline-block;
  background: var(--orange-glow);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,107,0,0.25);
  margin-bottom: 12px;
}
.vorstand-mail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.82rem;
  transition: color var(--transition);
  word-break: break-all;
}
.vorstand-mail:hover { color: var(--orange); }
.vorstand-mail i { color: var(--orange); font-size: 0.75rem; flex-shrink: 0; }
.vorstand-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
}
.vorstand-empty i { font-size: 2.5rem; margin-bottom: 12px; display: block; opacity: 0.4; }

/* Ticket Embed (iFrame direkt auf Startseite) */
.ticket-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.ticket-info-price {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--text-muted);
}
.ticket-info-price i { color: var(--orange); }
.ticket-info-price strong { color: var(--text); font-size: 1.15rem; }

.ticket-embed-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 200px;
}
.ticket-embed-box iframe {
  display: block;
  width: 100%;
  border: none;
}
.ticket-embed-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 60px 32px;
  text-align: center;
  color: var(--text-muted);
}
.ticket-embed-placeholder i { font-size: 3rem; opacity: .2; }
.ticket-embed-placeholder h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: .04em;
  color: var(--text);
}
.ticket-embed-placeholder p { font-size: .92rem; max-width: 400px; }
.ticket-embed-placeholder a { color: var(--orange); }

/* Responsive */
@media (max-width: 1024px) {
  .bands-grid { grid-template-columns: 1fr 1fr; }
  .sponsors-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .navbar { height: 64px; }
  .hamburger { display: flex; }
  .nav-links { position: fixed; top: 64px; left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 20px 24px 32px; gap: 4px; border-bottom: 1px solid var(--border); transform: translateY(-110%); transition: transform var(--transition); z-index: 999; box-shadow: var(--shadow-lg); }
  .nav-links.open { transform: translateY(0); }
  .nav-link { padding: 12px 16px; border-radius: 10px; font-size: 1rem; }
  .nav-link.nav-cta { text-align: center; }
  .nav-logo-img { height: 32px; }
  .hero-meta { flex-direction: column; gap: 10px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-deco-card { position: static; margin-top: 16px; max-width: 100%; }
  .features-grid { grid-template-columns: 1fr; }
  .bands-grid { grid-template-columns: 1fr; }
  .slide { min-width: 100%; }
  .map-overlay-card { position: static; margin: 16px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .about-stats { flex-direction: column; gap: 16px; }
  .contact-form { padding: 24px 20px; }
  .contact-form-wrap { padding: 24px 20px; }
}
