/* =========================
   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 GRID
========================= */

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

/* =========================
   SHOW CARD
========================= */

.show-card {
  position: relative;
  height: 180px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow:
    0 10px 40px rgba(0,0,0,.45);
}

.show-overlay {
  position: absolute;
  inset: 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  background:
    linear-gradient(
      to top,
      rgba(5,8,18,.92),
      rgba(5,8,18,.55),
      rgba(5,8,18,.15)
    );
}

/* ZEIT BADGE */
.show-time {
  align-self: flex-start;
  margin-bottom: 6px;
  font-size: .85rem;
  font-weight: 700;
  color: #fb923c;
}

/* TITEL */
.show-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

/* DJ */
.show-dj {
  margin-top: 4px;
  font-size: .9rem;
  color: #cbd5f5;
}

/* HOVER */
.show-card:hover {
  transform: translateY(-4px);
  transition: .25s ease;
}
/* =========================
   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;
    }
}
/* =========================
   LIVE / NOW PLAYING
========================= */

.nowplaying-dj {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.nowplaying-dj img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  background: #020617;
  border: 2px solid rgba(255,122,24,.6);
}
.nowplaying-dj img {
  width: 72px !important;
  height: 72px !important;
}
.schedule-preview-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.schedule-preview-item .time {
    color: #fb923c;
    font-weight: 600;
}

.song-history {
    list-style: none;
    padding: 0;
    margin: 0;
}

.song-history li {
    padding: 6px 0;
    color: #cbd5f5;
}
/* =========================
   RESPONSIVE OPTIMIERUNG
========================= */

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

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

  /* Mitte über volle Breite */
  .home-col.center {
    grid-column: span 2;
    order: 1;
  }

  .home-col.left {
    order: 2;
  }

  .home-col.right {
    order: 3;
  }
}
/* ===== HANDY (≤ 900px) ===== */
@media (max-width: 900px) {

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

  /* Reihenfolge Mobile */
  .home-col.left {
    order: 1;
  }

  .home-col.center {
    order: 2;
  }

  .home-col.right {
    order: 3;
  }

  /* Boxen luftiger */
  .box {
    padding: 18px;
    border-radius: 18px;
  }

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

  /* Jetzt läuft – Avatar kleiner */
  .nowplaying-dj img {
    width: 64px;
    height: 64px;
  }

  /* Tabs besser klickbar */
  .panel-tabs {
    flex-wrap: wrap;
  }

  .panel-tabs button {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}
/* ===== NOW PLAYING FEINSCHLIFF ===== */

.nowplaying-show h4 {
  font-size: 1rem;
  margin: 6px 0 2px;
}

.nowplaying-show span {
  font-size: 0.85rem;
  color: #cbd5f5;
}

.current-track {
  margin-top: 6px;
  font-size: 0.9rem;
}

.current-track strong {
  display: block;
}
.songhistory .song-row {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .9rem;
}

.songhistory small {
  display: block;
  color: #9ca3af;
}
/* =========================
   BEWERBUNG
========================= */

.bewerbung-wrapper {
  max-width: 900px;
  margin: auto;
}

.bewerbung-info p {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.bewerbung-list {
  margin: 20px 0;
  padding-left: 20px;
}

.bewerbung-list li {
  margin-bottom: 8px;
  color: #cbd5f5;
}

.bewerbung-form label {
  font-weight: 600;
  margin-top: 12px;
  display: block;
}
/* =========================
   RESPONSIVE GRID SYSTEM
========================= */

.home-grid {
  display: grid;
  grid-template-columns: 320px 1fr 320px;
  gap: 30px;
}

/* Tablet */
@media (max-width: 1200px) {
  .home-grid {
    grid-template-columns: 1fr 1fr;
  }

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

/* Handy */
@media (max-width: 900px) {
  .home-grid {
    grid-template-columns: 1fr;
  }

  .home-col.left {
    order: 1;
  }

  .home-col.center {
    order: 2;
  }

  .home-col.right {
    order: 3;
  }
}
.home-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 900px) {
  .box {
    border-radius: 18px;
    padding: 18px;
  }

  .box.large {
    min-height: auto;
  }
}
@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: 70px;
    right: 20px;
    background: var(--glass);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 18px;
    flex-direction: column;
    gap: 14px;
    display: none;
  }

  .main-nav.open {
    display: flex;
  }
}
.nowplaying-dj img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .nowplaying-dj img {
    width: 50px;
    height: 50px;
  }
}
.schedule-preview-item {
  padding: 12px;
  border-bottom: 1px solid var(--border);
}

.schedule-preview-item:last-child {
  border-bottom: none;
}

.schedule-preview-item .time {
  font-weight: 600;
  color: var(--orange);
}
form input,
form textarea,
form select {
  font-size: 1rem;
}

@media (max-width: 900px) {
  form input,
  form textarea {
    font-size: 0.95rem;
  }
}
/* =========================
   WILLKOMMEN HERO
========================= */

.welcome-hero {
    padding: 0;
    overflow: hidden;
}

.welcome-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.welcome-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

/* Overlay */
.welcome-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(7,10,18,0.55),
        rgba(7,10,18,0.85)
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
}

/* Titel */
.welcome-overlay h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin: 0 0 12px;
    color: #fff;
}

.welcome-overlay h1 span {
    background: linear-gradient(90deg, var(--blue), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Text */
.welcome-overlay p {
    max-width: 520px;
    font-size: 1.05rem;
    color: #cbd5f5;
    line-height: 1.5;
}

/* Mobile */
@media (max-width: 900px) {
    .welcome-overlay h1 {
        font-size: 1.8rem;
    }

    .welcome-overlay p {
        font-size: 0.95rem;
    }
}
/* =========================
   BEWERBEN – HOME HERO
========================= */

.bewerben-hero {
    padding: 0;
    overflow: hidden;
}

.bewerben-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.bewerben-image {
    position: relative;
}

.bewerben-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

/* Overlay */
.bewerben-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(7,10,18,0.85),
        rgba(7,10,18,0.55)
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

/* Titel */
.bewerben-overlay h2 {
    font-size: 2rem;
    margin: 0 0 12px;
    color: #fff;
}

.bewerben-overlay h2 span {
    color: var(--orange);
}

/* Text */
.bewerben-overlay p {
    font-size: 1rem;
    color: #cbd5f5;
    max-width: 520px;
    margin-bottom: 20px;
}

/* CTA Button */
.bewerben-cta {
    display: inline-block;
    width: fit-content;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, var(--blue), var(--orange));
    box-shadow: 0 0 25px rgba(255,122,24,.35);
    transition: transform .2s ease, box-shadow .2s ease;
}

.bewerben-link:hover .bewerben-cta {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(255,122,24,.55);
}

/* Mobile */
@media (max-width: 900px) {
    .bewerben-overlay h2 {
        font-size: 1.6rem;
    }

    .bewerben-overlay p {
        font-size: 0.95rem;
    }
}
/* =========================
   BEWERBEN – RESPONSIVE OPTIMIERUNG
========================= */

/* ===== DESKTOP (ab 1200px) ===== */
@media (min-width: 1200px) {

  .bewerben-overlay {
    padding: 40px 50px;
  }

  .bewerben-overlay h2 {
    font-size: 2.2rem;
  }

  .bewerben-overlay p {
    font-size: 1.05rem;
  }
}

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

  .bewerben-overlay {
    padding: 32px;
    text-align: center;
    align-items: center;
  }

  .bewerben-overlay p {
    max-width: 100%;
  }

  .bewerben-cta {
    margin-top: 10px;
  }
}

/* ===== HANDY (≤ 768px) ===== */
@media (max-width: 768px) {

  .bewerben-image img {
    min-height: 260px;
    object-fit: cover;
  }

  .bewerben-overlay {
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(
      to top,
      rgba(7,10,18,0.95),
      rgba(7,10,18,0.65),
      rgba(7,10,18,0.2)
    );
  }

  .bewerben-overlay h2 {
    font-size: 1.4rem;
  }

  .bewerben-overlay p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .bewerben-cta {
    width: 100%;
    text-align: center;
    padding: 14px 0;
    font-size: 0.95rem;
  }
}

/* ===== SEHR KLEINE GERÄTE (≤ 480px) ===== */
@media (max-width: 480px) {

  .bewerben-overlay {
    padding: 18px;
  }

  .bewerben-overlay h2 {
    font-size: 1.25rem;
  }

  .bewerben-overlay p {
    font-size: 0.85rem;
  }
}
