/* =========================
   VARIABLES
========================= */
:root {
  --bg: #070A12;
  --glass: rgba(18,22,36,0.65);
  --blue: #1FA2FF;
  --purple: #6A5CFF;
  --orange: #FF7A18;
  --border: #1f2937;
}

/* =========================
   RESET / BASE
========================= */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, sans-serif;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,122,24,.25), transparent 60%),
    radial-gradient(circle at 30% 30%, rgba(31,162,255,.25), transparent 55%),
    var(--bg);
  color: #fff;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: relative;
  z-index: 100;
}

/* ===== TOP BAR ===== */
.header-top {
  background: rgba(10,14,25,0.65);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-top-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  padding: 14px 30px;
}

/* LOGO */
.logo img {
	width:100%;
  height: 100px;
}

/* MENU */
.main-nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
  margin-right: 20px;
}

.main-nav a {
  color: #cbd5f5;
  text-decoration: none;
  font-weight: 600;
}

.main-nav a:hover {
  color: #fff;
}

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.listen-btn {
  border: none;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.listen-btn.small {
  padding: 12px 26px;
  font-size: 0.9rem;
}

.listen-btn.large {
  padding: 18px 42px;
  font-size: 1.1rem;
}

/* BURGER */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

/* =========================
   HERO (HEADER BACKGROUND)
========================= */
.header-hero {
  background:
    linear-gradient(
      to right,
      rgba(7,10,18,0.92),
      rgba(7,10,18,0.55)
    ),
    url("/assets/images/head-bg.png") center / cover no-repeat;
  min-height: 340px;
  display: flex;
  align-items: center;
}

.header-hero-inner {
  max-width: 1400px;
  margin: auto;
  padding: 70px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-left h1 {
  font-family: Montserrat, sans-serif;
  font-size: 3.2rem;
  margin: 0;
}

.hero-claim {
  margin-top: 12px;
  color: #cbd5f5;
  font-size: 1.15rem;
  line-height: 1.4;
}

/* =========================
   MAIN GRID
========================= */
.homepage {
  padding: 40px 30px;
}

.home-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 320px 1fr 320px;
  gap: 30px;
}

.home-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* =========================
   BOXES
========================= */
.box {
  background: var(--glass);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow:
    0 0 40px rgba(31,162,255,.12),
    inset 0 0 25px rgba(255,255,255,.04);
}

.box.small { min-height: 120px; }
.box.large { min-height: 320px; }

/* =========================
   PANELS
========================= */
.panel-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.panel-tabs button {
  background: none;
  border: none;
  color: #9ca3af;
  font-weight: 600;
  cursor: pointer;
}

.panel-tabs button.active {
  color: var(--orange);
}

.panel { display: none; }
.panel.active { display: block; }

/* =========================
   NEWS
========================= */
.news-item {
  background: #020617;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 15px;
}

.news-item h4 {
  margin: 0 0 5px;
  color: #e5e7eb;
}

.news-item small {
  color: #94a3b8;
}

/* =========================
   TEAM / PROFILE
========================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.team-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fb923c;
}

.profile-avatar {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fb923c;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  text-align: center;
  padding: 30px;
  font-size: 0.9rem;
  color: #94a3b8;
}

/* =========================
   RESPONSIVE – TABLET
========================= */
@media (max-width: 1200px) {

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

  .home-col.center {
    grid-column: span 2;
  }

  .home-col.left,
  .home-col.right {
    gap: 30px;
  }
}

/* =========================
   RESPONSIVE – MOBILE
========================= */
@media (max-width: 900px) {

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

  .home-col.center { order: 1; }
  .home-col.left   { order: 2; }
  .home-col.right  { order: 3; }

  .home-col.left,
  .home-col.right {
    gap: 32px;
  }

  .box.large {
    min-height: auto;
  }

  .burger {
    display: block;
  }

  .main-nav {
    display: none;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
  }

  .header-hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero-left h1 {
    font-size: 2.2rem;
  }
}

/* =========================
   VERY SMALL DEVICES
========================= */
@media (max-width: 480px) {

  .box {
    padding: 16px;
  }

  .home-col.left,
  .home-col.right {
    gap: 36px;
  }

  .hero-left h1 {
    font-size: 1.9rem;
  }
}
.page-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 15px;
}

.page-header h2 {
  font-size: 1.9rem;
  margin: 0;
}

.page-subtitle {
  margin-top: 6px;
  color: #9ca3af;
  font-size: 0.95rem;
}
/* =========================
   SENDEPLAN – KACHEL DESIGN
========================= */

.schedule-page {
  padding: 10px;
}

.page-header {
  text-align: center;
  margin-bottom: 25px;
}

.page-header h2 {
  font-size: 2rem;
  margin-bottom: 5px;
}

.page-subtitle {
  color: #9ca3af;
}

/* Tabs */
.schedule-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.schedule-tabs .tab {
  padding: 10px 16px;
  background: rgba(18,22,36,0.7);
  border-radius: 20px;
  text-decoration: none;
  color: #9ca3af;
  font-weight: 600;
}

.schedule-tabs .tab.active {
  background: linear-gradient(135deg,#fb923c,#f97316);
  color: #fff;
}

/* Grid */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 20px;
}

/* Show Card */
.show-card {
  position: relative;
  height: 180px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
  transition: transform .25s ease;
}

.show-card:hover {
  transform: scale(1.03);
}

.show-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7,10,18,.85),
    rgba(7,10,18,.35)
  );
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.show-time {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: .85rem;
  background: rgba(0,0,0,.5);
  padding: 4px 8px;
  border-radius: 6px;
}

.show-live {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #dc2626;
  font-weight: bold;
  animation: pulse 1.2s infinite;
}

.show-overlay h3 {
  margin: 0 0 8px;
}

.show-dj {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
}

.show-dj img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.schedule-empty {
  text-align: center;
  color: #9ca3af;
}
/* =========================
   WUNSCHBOX – FRONTEND
========================= */

.wunschbox-page {
  max-width: 700px;
  margin: 0 auto;
  padding: 10px;
}

.wunschbox-wrapper {
  margin-top: 30px;
}

.wunsch-card {
  background: var(--glass);
  border-radius: 22px;
  padding: 26px;
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  box-shadow:
    0 0 40px rgba(31,162,255,.15),
    inset 0 0 25px rgba(255,255,255,.04);
}

.wunsch-card label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #e5e7eb;
}

.wunsch-card input,
.wunsch-card textarea {
  width: 100%;
  margin-bottom: 14px;
}

.wunsch-card textarea {
  min-height: 110px;
}

.wunsch-card button {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  font-size: 1rem;
}

.wunsch-card small {
  display: block;
  margin-top: 12px;
  font-size: .8rem;
  color: #9ca3af;
  text-align: center;
}

/* Status Meldungen */
.wunsch-success,
.wunsch-error {
  margin-bottom: 18px;
  padding: 14px;
  border-radius: 14px;
  text-align: center;
}

.wunsch-success {
  background: rgba(16,185,129,.15);
  color: #6ee7b7;
}

.wunsch-error {
  background: rgba(220,38,38,.2);
  color: #fecaca;
}
/* =========================
   TEAMSEITE
========================= */

.team-page {
  padding: 10px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-top: 30px;
}

.team-card {
  text-decoration: none;
  color: inherit;
  padding: 26px;
  border-radius: 22px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 10px 40px rgba(31,162,255,.25),
    inset 0 0 25px rgba(255,255,255,.05);
}

.team-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px;
  display: block;
  border: 3px solid var(--orange);
}

.team-card h3 {
  text-align: center;
  margin: 8px 0;
  font-family: Montserrat, sans-serif;
}

.team-bio {
  font-size: .9rem;
  color: #cbd5f5;
  line-height: 1.5;
  margin-top: 10px;
  text-align: center;
}

.team-bio.muted {
  color: #64748b;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  font-size: .75rem;
  color: #9ca3af;
}
/* =========================
   SENDEPLAN
========================= */

.schedule-page {
    padding: 30px 0;
}

/* Tabs */
.schedule-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.schedule-tabs .tab {
    padding: 10px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    background: #020617;
    color: #9ca3af;
    border: 1px solid #1f2937;
}

.schedule-tabs .tab.active {
    background: linear-gradient(135deg, #fb923c, #f97316);
    color: #fff;
}

/* Grid */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
}

/* Karte */
.schedule-card {
    padding: 20px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Zeit */
.schedule-time {
    font-weight: bold;
    color: #fb923c;
}

/* Show */
.schedule-show h3 {
    margin: 0;
    color: #e5e7eb;
}

.schedule-show p {
    color: #9ca3af;
    font-size: 0.95rem;
}

.schedule-show img {
    margin-top: 10px;
    width: 100%;
    border-radius: 12px;
}

/* DJ */
.schedule-dj {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.schedule-dj img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fb923c;
}

.schedule-dj span {
    font-weight: 600;
}

/* Leer */
.schedule-empty {
    text-align: center;
    color: #94a3b8;
    grid-column: 1 / -1;
}

/* Mobile */
@media (max-width: 600px) {
    .schedule-tabs {
        justify-content: center;
    }
}
/* =========================
   WUNSCHBOX
========================= */

.wunschbox-wrapper {
    display: flex;
    justify-content: center;
}

.wunschbox-wrapper .box {
    max-width: 600px;
    width: 100%;
}

.wunschbox-info {
    color: #9ca3af;
    margin-bottom: 20px;
}

.wunschbox-form label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.wunschbox-form input,
.wunschbox-form textarea {
    margin-bottom: 14px;
}

.wunschbox-form button {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    margin-top: 10px;
}

/* Status */
.wunschbox-success {
    background: rgba(34,197,94,.15);
    border: 1px solid #22c55e;
    color: #22c55e;
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 18px;
}

.wunschbox-error {
    background: rgba(239,68,68,.15);
    border: 1px solid #ef4444;
    color: #ef4444;
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 18px;
}

.wunschbox-hint {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #94a3b8;
}
/* =========================
   TEAMLISTE
========================= */

.team-wrapper {
    text-align: center;
}

.team-wrapper h2 {
    margin-bottom: 8px;
}

.team-intro {
    color: #9ca3af;
    margin-bottom: 30px;
}

/* Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 26px;
}

/* Card */
.team-card {
    padding: 22px;
    border-radius: 22px;
    text-align: center;
    position: relative;
}

/* Avatar */
.team-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fb923c;
    margin-bottom: 12px;
}

/* Name */
.team-card h3 {
    margin: 10px 0 6px;
    color: #e5e7eb;
}

/* Bio */
.team-bio {
    font-size: 0.95rem;
    color: #9ca3af;
    margin-bottom: 12px;
}

/* Links */
.team-links a {
    display: inline-block;
    margin: 4px 8px;
    font-size: 0.9rem;
    color: #fb923c;
    text-decoration: none;
}

.team-links a:hover {
    text-decoration: underline;
}

/* Klickbereich */
.team-link {
    text-decoration: none;
    color: inherit;
}

/* LIVE Badge */
.team-card .live-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #dc2626;
    color: #fff;
    padding: 6px 10px;
    border-radius: 14px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Mobile */
@media (max-width: 600px) {
    .team-avatar {
        width: 150px;
        height: 150px;
    }
}
/* =========================
   DJ PROFIL
========================= */

.dj-profile-wrapper {
    display: flex;
    justify-content: center;
}

.dj-profile-card {
    max-width: 700px;
    width: 100%;
    text-align: center;
}

/* Avatar */
.dj-avatar-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.dj-avatar {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fb923c;
}

/* LIVE Badge groß */
.live-badge.big {
    position: absolute;
    bottom: 18px;
    right: 18px;
    padding: 10px 16px;
    font-size: 1rem;
}

/* Bio */
.dj-bio {
    font-size: 1rem;
    color: #9ca3af;
    margin: 20px auto;
    max-width: 600px;
}

.dj-bio.muted {
    opacity: 0.7;
}

/* Links */
.dj-links {
    margin-top: 20px;
}

.dj-links a {
    display: inline-block;
    margin: 6px 12px;
    color: #fb923c;
    font-weight: 600;
    text-decoration: none;
}

.dj-links a:hover {
    text-decoration: underline;
}

/* Back */
.dj-back {
    margin-top: 30px;
}

.dj-back a {
    color: #94a3b8;
    text-decoration: none;
}

.dj-back a:hover {
    color: #fff;
}

/* Mobile */
@media (max-width: 600px) {
    .dj-avatar {
        width: 200px;
        height: 200px;
    }
}
/* =========================
   SONG HISTORY
========================= */

.songhistory-wrapper {
    text-align: center;
}

.songhistory-intro {
    color: #9ca3af;
    margin-bottom: 25px;
}

.songhistory-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Item */
.songhistory-item {
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    align-items: center;
    padding: 14px 18px;
    border-radius: 18px;
}

/* Cover */
.songhistory-cover img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.cover-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #020617;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* Info */
.songhistory-info {
    text-align: left;
    padding-left: 10px;
}

.songhistory-info strong {
    display: block;
    color: #e5e7eb;
}

.songhistory-info span {
    font-size: 0.85rem;
    color: #9ca3af;
}

/* Time */
.songhistory-time {
    font-weight: 600;
    color: #fb923c;
    text-align: right;
}

/* Hint */
.songhistory-hint {
    margin-top: 18px;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Mobile */
@media (max-width: 600px) {
    .songhistory-item {
        grid-template-columns: 50px 1fr 50px;
    }
}
