/* ===========================================
   East Taxi GMBH RETRO-RP THEME
   Inspired by retrorp.cc
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* ---------- Farbvariablen ---------- */
:root {
  --bg-dark: #1a1828;
  --bg-card: #252340;
  --accent-orange: #ff8c00;
  --accent-purple: #a56eff;
  --text: #f0eeff;
}

/* ---------- Grundlayout ---------- */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at 50% 0%, #2e2550 0%, #1e1b35 45%, #181630 100%);
  color: var(--text);
  overflow-x: hidden;
}

main, .content {
  flex: 1;
  padding: 40px 0;
}

/* ---------- Ambient Background Glow ---------- */
@keyframes ambientGlow {
  0%, 100% {
    box-shadow: 0 0 25px rgba(165,110,255,0.3),
                0 -4px 20px rgba(255,140,0,0.15);
  }
  50% {
    box-shadow: 0 0 40px rgba(255,140,0,0.25),
                0 -6px 35px rgba(165,110,255,0.25);
  }
}

body::after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(165,110,255,0.22), rgba(255,140,0,0.1), transparent 75%);
  filter: blur(100px);
  z-index: -1;
  animation: ambientGlow 16s ease-in-out infinite alternate;
  opacity: 0.8;
}

/* ===========================================
   HEADER
   =========================================== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(35,30,60,0.82);
  border-radius: 18px;
  padding: 0.8rem 2rem;
  box-shadow:
    inset 2px 2px 4px rgba(0,0,0,0.4),
    0 4px 20px rgba(165,110,255,0.25);
  backdrop-filter: blur(10px);
  z-index: 999;
  animation: fadeInNav 1s ease-out forwards;
}

body { padding-top: 120px; }

/* Logo */
.navbar .logo {
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(255,140,0,0.4);
  transition: 0.3s;
}
.navbar .logo:hover { text-shadow: 0 0 25px rgba(255,140,0,0.8); }

/* Navigation */
.navbar nav {
  display: flex;
  gap: 1rem;
}
.navbar nav a {
  color: #c8c4ff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}
.navbar nav a:hover {
  color: #fff;
  background: linear-gradient(90deg, rgba(255,140,0,0.15), rgba(165,110,255,0.15));
  box-shadow: 0 0 15px rgba(255,140,0,0.4);
  text-shadow: 0 0 10px rgba(165,110,255,0.5);
  transform: translateY(-2px);
}
.navbar nav a.active {
  background: linear-gradient(90deg, rgba(255,140,0,0.3), rgba(165,110,255,0.3));
  color: #fff;
  box-shadow: 0 0 25px rgba(165,110,255,0.4);
  text-shadow: 0 0 20px rgba(255,140,0,0.6);
}
.navbar nav a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-purple));
  box-shadow: 0 0 10px rgba(255,140,0,0.8);
  transition: transform 0.4s ease;
  border-radius: 2px;
}
.navbar nav a:hover::after { transform: translateX(-50%) scaleX(1); }
@keyframes fadeInNav { from { opacity: 0; transform: translate(-50%, -10px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* Admin-Link */
.navbar nav .admin-link {
  background: linear-gradient(90deg, rgba(255,140,0,0.2), rgba(165,110,255,0.2));
  border: 1px solid rgba(255,140,0,0.3);
  border-radius: 12px;
  padding: 8px 16px;
  box-shadow: 0 0 15px rgba(165,110,255,0.3);
  transition: all 0.3s ease;
}
.navbar nav .admin-link:hover {
  background: linear-gradient(90deg, rgba(255,140,0,0.4), rgba(165,110,255,0.4));
  box-shadow: 0 0 25px rgba(255,140,0,0.5);
  transform: translateY(-2px);
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
  height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-logo img {
  width: 180px;
  max-width: 90%;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 20px rgba(255,140,0,0.4))
          drop-shadow(0 0 30px rgba(165,110,255,0.3));
  animation: logoGlow 3s ease-in-out infinite alternate;
}
@keyframes logoGlow {
  0% { filter: drop-shadow(0 0 15px rgba(255,140,0,0.4)) drop-shadow(0 0 25px rgba(165,110,255,0.3)); }
  100% { filter: drop-shadow(0 0 25px rgba(255,140,0,0.7)) drop-shadow(0 0 35px rgba(165,110,255,0.5)); transform: scale(1.04); }
}
.hero h1 {
  font-size: 3rem;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(255,140,0,0.6);
}
.hero p {
  color: #b8b4e8;
  margin-top: 10px;
  letter-spacing: 1px;
}
.btn-glow {
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-purple));
  color: #fff;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 50px;
  margin-top: 2rem;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(165,110,255,0.4);
  transition: all 0.3s;
}
.btn-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255,140,0,0.8);
}

/* ===========================================
   GENERISCHE INHALTSKOMPONENTEN
   =========================================== */
.page-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(255,140,0,0.5);
}

/* Karten-Grids */
.grid, .jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.job-card {
  background: rgba(38,35,68,0.85);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: inset 2px 2px 6px rgba(0,0,0,0.5),
              inset -2px -2px 6px rgba(255,255,255,0.05),
              0 0 20px rgba(165,110,255,0.15);
  backdrop-filter: blur(6px);
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(165,110,255,0.4),
              0 0 45px rgba(255,140,0,0.2);
}
.job-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.job-card p {
  color: #c8c4ff;
  font-size: 1rem;
  letter-spacing: 0.3px;
}
.job-card .job-icon {
  font-size: 2.3rem;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 15px rgba(255,140,0,0.5);
}

/* ===========================================
   ADMIN PANEL
   =========================================== */
.admin-panel {
  max-width: 700px;
  margin: 4rem auto;
  background: rgba(38,35,68,0.85);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 0 40px rgba(165,110,255,0.2);
  backdrop-filter: blur(12px);
  text-align: center;
}
.admin-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.admin-form label {
  font-weight: 600;
  color: var(--accent-orange);
  text-align: left;
}
.admin-form input[type="text"],
.admin-form input[type="file"] {
  background: rgba(55,50,90,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 0.8rem;
  border-radius: 12px;
  outline: none;
  transition: 0.3s;
  font-family: inherit;
}
.admin-form input:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 10px rgba(255,140,0,0.4);
}
.admin-form button.btn-glow {
  width: 100%;
  padding: 0.9rem;
  border: none;
  border-radius: 40px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(90deg, #ff8c00, #a56eff);
  box-shadow: 0 0 20px rgba(165,110,255,0.4);
  transition: all 0.3s ease;
  margin-top: 1rem;
}
.admin-form button.btn-glow:hover {
  transform: scale(1.04);
  box-shadow: 0 0 35px rgba(255,140,0,0.6);
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
  position: relative;
  width: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(165,110,255,0.15), rgba(0,0,0,0.95));
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  padding: 1.5rem 1rem;
  color: #cfcfcf;
  font-size: 0.9rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 -4px 20px rgba(165,110,255,0.15);
  animation: ambientGlow 8s ease-in-out infinite;
  z-index: 1;
}
.footer a {
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 500;
}
.footer a:hover { text-shadow: 0 0 10px rgba(255,140,0,0.6); }

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 768px) {
  .navbar { width: 95%; padding: 0.6rem 1.2rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
}

/* --- Philosophie Cards --- */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 3rem auto;
  padding: 1rem;
}

.philosophy-card {
  background: rgba(25,25,30,0.85);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: inset 2px 2px 6px rgba(0,0,0,0.5),
              inset -2px -2px 6px rgba(255,255,255,0.05),
              0 0 20px rgba(165,110,255,0.15);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
}

.philosophy-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.philosophy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(165,110,255,0.4),
              0 0 45px rgba(255,140,0,0.25);
}

.philosophy-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(255,140,0,0.5);
}

.philosophy-card h3 {
  font-size: 1.5rem;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.philosophy-card p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.7;
}

/* ============= PHILOSOPHIE SEITE POLISHED ============= */

.philosophy-page {
  text-align: center;
  padding-top: 2rem;
}

.philosophy-intro {
  max-width: 850px;
  margin: 0 auto 3.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
}

.philosophy-intro .highlight {
  color: var(--accent-orange);
  font-weight: 600;
  text-shadow: 0 0 12px rgba(255,140,0,0.7);
}

/* Grid-Layout */
.philosophy-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
}

/* Karten */
.philosophy-card {
  background: linear-gradient(180deg, rgba(25,25,30,0.95), rgba(15,15,20,0.9));
  border-radius: 20px;
  padding: 2rem;
  width: 420px;
  box-shadow:
    0 0 30px rgba(165,110,255,0.15),
    0 0 60px rgba(255,140,0,0.08);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
}

.philosophy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(120deg, rgba(255,140,0,0.5), rgba(165,110,255,0.5));
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.4;
  transition: opacity 0.4s;
}

.philosophy-card:hover::before {
  opacity: 0.9;
}

.philosophy-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 0 40px rgba(165,110,255,0.3),
    0 0 80px rgba(255,140,0,0.15);
}

.philosophy-card .icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(255,140,0,0.6),
               0 0 25px rgba(165,110,255,0.4);
  animation: iconGlow 4s ease-in-out infinite alternate;
}

@keyframes iconGlow {
  0% { filter: drop-shadow(0 0 10px rgba(255,140,0,0.5)); }
  100% { filter: drop-shadow(0 0 25px rgba(165,110,255,0.8)); }
}

.philosophy-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(255,140,0,0.4);
}

.philosophy-card p {
  color: #cfcfcf;
  font-size: 1rem;
  line-height: 1.7;
}

/* Zitat */
.philosophy-quote {
  margin: 5rem auto 3rem;
  background: radial-gradient(circle at 50% 0%, rgba(165,110,255,0.15), rgba(0,0,0,0.9));
  border-radius: 20px;
  padding: 2.8rem 2rem;
  text-align: center;
  max-width: 900px;
  box-shadow: 0 0 30px rgba(255,140,0,0.25);
}

.philosophy-quote p {
  font-size: 1.4rem;
  font-style: italic;
  color: #eee;
  text-shadow: 0 0 15px rgba(165,110,255,0.4);
}

.philosophy-quote span {
  display: block;
  margin-top: 1rem;
  color: var(--accent-orange);
  font-weight: 600;
}

/* Sanftes Erscheinen */
.philosophy-card {
  opacity: 0;
  transform: translateY(40px);
}
.philosophy-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-out;
}

/* ============================================
   UNIVERSAL CARD-STIL (Team, Jobs, Fuhrpark)
   ============================================ */
.page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 3rem auto 4rem;
  padding: 0 1rem;
}

/* ============================================
   GLOW-CARD DESIGN (Team, Jobs, Fuhrpark)
   ============================================ */
.page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 3rem auto 5rem;
  padding: 0 1rem;
}

.page-description {
  max-width: 750px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #ccc;
  text-align: center;
}

.page-description strong {
  color: var(--accent-orange);
  text-shadow: 0 0 10px rgba(255,140,0,0.6);
}

/* Karten */
.glow-card {
  position: relative;
  background: radial-gradient(circle at top, rgba(45,42,75,0.95), rgba(28,25,55,0.92));
  border-radius: 22px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow:
    0 0 30px rgba(165,110,255,0.15),
    inset 0 0 10px rgba(255,140,0,0.05);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.glow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(120deg, rgba(255,140,0,0.4), rgba(165,110,255,0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.3;
  transition: opacity 0.4s ease;
}

.glow-card:hover::before {
  opacity: 0.9;
}

.glow-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 0 50px rgba(165,110,255,0.3),
    0 0 80px rgba(255,140,0,0.15);
}

/* Icon Glow */
.glow-card .icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-shadow:
    0 0 10px rgba(255,140,0,0.6),
    0 0 25px rgba(165,110,255,0.5);
  animation: iconPulse 3s ease-in-out infinite alternate;
}

@keyframes iconPulse {
  0% { transform: scale(1); text-shadow: 0 0 15px rgba(255,140,0,0.6); }
  100% { transform: scale(1.1); text-shadow: 0 0 35px rgba(165,110,255,0.8); }
}

/* Titel & Text */
.glow-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(255,140,0,0.4);
}

.glow-card p {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.6;
}

/* Animiertes Einblenden */
.glow-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.glow-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Einblenden beim Scrollen */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Einblendeanimation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Icons Glow-Animation */
@keyframes iconGlow {
  0% { filter: drop-shadow(0 0 10px rgba(255,140,0,0.5)); }
  100% { filter: drop-shadow(0 0 25px rgba(165,110,255,0.8)); }
}

/* =========================
   STELLENANGEBOTE DESIGN
   ========================= */
.jobs-page {
  text-align: center;
  padding-top: 2rem;
  animation: fadeIn 0.8s ease-in;
}

.page-description {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #ccc;
}

.page-description strong {
  color: var(--accent-orange);
  text-shadow: 0 0 10px rgba(255,140,0,0.6);
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 2rem auto 4rem;
  padding: 0 1rem;
}

/* Karten-Stil */
.job-card {
  position: relative;
  background: radial-gradient(circle at top, rgba(45,42,75,0.95), rgba(28,25,55,0.92));
  border-radius: 22px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow:
    0 0 30px rgba(165,110,255,0.15),
    inset 0 0 10px rgba(255,140,0,0.05);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.job-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(120deg, rgba(255,140,0,0.4), rgba(165,110,255,0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.3;
  transition: opacity 0.4s ease;
}

.job-card:hover::before {
  opacity: 0.9;
}

.job-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 0 50px rgba(165,110,255,0.3),
    0 0 80px rgba(255,140,0,0.15);
}

/* Icon mit weichem Glow */
.job-card .icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-shadow:
    0 0 10px rgba(255,140,0,0.6),
    0 0 25px rgba(165,110,255,0.5);
  animation: iconPulse 3s ease-in-out infinite alternate;
}

@keyframes iconPulse {
  0% { transform: scale(1); text-shadow: 0 0 15px rgba(255,140,0,0.6); }
  100% { transform: scale(1.1); text-shadow: 0 0 35px rgba(165,110,255,0.8); }
}

/* Titel */
.job-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(255,140,0,0.4);
}

/* Text */
.job-card p {
  font-size: 1rem;
  color: #ccc8ff;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Bewerben Button */
.btn-apply {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-purple));
  color: #fff;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(165,110,255,0.3);
  transition: all 0.3s ease;
}

.btn-apply:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255,140,0,0.5);
}

/* Einblendeffekt */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================
   NEUE SEITEN-ÜBERSCHRIFTEN
   ============================ */
.page-title {
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 25px rgba(255,140,0,0.6),
    0 0 40px rgba(165,110,255,0.4);
  animation: glowShift 6s ease-in-out infinite alternate;
}

/* sanfter Glow-Wechsel zwischen Orange & Violett */
@keyframes glowShift {
  0% {
    text-shadow:
      0 0 25px rgba(255,140,0,0.7),
      0 0 40px rgba(165,110,255,0.3);
  }
  50% {
    text-shadow:
      0 0 30px rgba(165,110,255,0.8),
      0 0 45px rgba(255,140,0,0.4);
  }
  100% {
    text-shadow:
      0 0 25px rgba(255,140,0,0.6),
      0 0 35px rgba(165,110,255,0.5);
  }
}

/* ===================================
   BEWERBEN BUTTON (Jobs)
   =================================== */
.btn-apply {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-purple));
  box-shadow:
    0 0 20px rgba(255,140,0,0.4),
    0 0 35px rgba(165,110,255,0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 10; /* WICHTIG – sorgt dafür, dass kein Overlay ihn blockiert */
}

.btn-apply:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 35px rgba(255,140,0,0.6),
    0 0 60px rgba(165,110,255,0.4);
  text-shadow: 0 0 10px rgba(255,255,255,0.4);
}

/* ============================================
   FUHRPARK SHOWCASE
   ============================================ */
.fuhrpark-page {
  text-align: center;
  animation: fadeIn 0.8s ease-in;
}

.fuhrpark-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 3rem auto 5rem;
  padding: 0 1rem;
}

.fuhrpark-card {
  position: relative;
  background: radial-gradient(circle at top, rgba(45,42,75,0.95), rgba(28,25,55,0.92));
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow:
    0 0 30px rgba(165,110,255,0.15),
    inset 0 0 10px rgba(255,140,0,0.05);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.fuhrpark-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 0 40px rgba(165,110,255,0.3),
    0 0 80px rgba(255,140,0,0.2);
}

/* Fahrzeugbild */
.car-image {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
  box-shadow: 0 0 25px rgba(165,110,255,0.2);
}

.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.fuhrpark-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Fahrzeugname & Beschreibung */
.fuhrpark-card h3 {
  font-size: 1.3rem;
  margin-top: 0.5rem;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(255,140,0,0.4);
}

.fuhrpark-card p {
  color: #c8c4ff;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  line-height: 1.6;
}

/* =====================================
   FUHRPARK – Fahrzeugkarten mit Infos
   ===================================== */
.fuhrpark-page {
  text-align: center;
  animation: fadeIn 0.8s ease-in;
  padding-bottom: 3rem;
}

.page-subtitle {
  color: #b8b4e8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.fuhrpark-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ---------- Fahrzeugkarte ---------- */
.car-card {
  background: radial-gradient(circle at top, rgba(45,42,75,0.95), rgba(28,25,55,0.92));
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow:
    0 0 30px rgba(165,110,255,0.15),
    inset 0 0 10px rgba(255,140,0,0.05);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  color: #ddd;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.car-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 0 45px rgba(165,110,255,0.3),
    0 0 60px rgba(255,140,0,0.2);
}

/* ---------- Bildbereich ---------- */
.car-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1; /* quadratisches Bild */
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 1rem;
  box-shadow:
    0 0 30px rgba(165,110,255,0.25),
    0 0 40px rgba(255,140,0,0.15);
  background: linear-gradient(145deg, rgba(50,45,85,0.8), rgba(28,25,55,0.9));
}

.car-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 14px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.car-card:hover .car-img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* ---------- Titel ---------- */
.car-card h3 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(255,140,0,0.5);
}

/* ---------- Fahrzeugdetails ---------- */
.car-details {
  font-size: 0.95rem;
  line-height: 1.7;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  width: 100%;
  box-shadow: inset 0 0 15px rgba(165,110,255,0.1);
  text-align: left;
  transition: all 0.3s ease;
}

.car-card:hover .car-details {
  box-shadow: inset 0 0 20px rgba(255,140,0,0.15);
}

.car-details p {
  margin: 5px 0;
}

.car-details strong {
  color: var(--accent-orange);
}

/* ---------- Animation ---------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}


