/* -------------------------------------------------------
   KrazzFM Bewerbungsseite – CSS
   Bootstrap 4 | Dark Theme | Limegreen Akzent
   ------------------------------------------------------- */

/* -- Basis ------------------------------------------------ */
body {
  margin: 0;
  padding: 0;
  padding-top: 60px;
  background: url(img/bg.jpg) no-repeat center center fixed;
  background-size: cover;
  background-color: #000;
  color: #e0e0e0;
  font-size: 15px;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  color: #fff;
}

.text-green {
  color: limegreen !important;
}

strong {
  color: #fff;
}

/* -- Navbar ----------------------------------------------- */
.kfm-navbar {
  background-color: rgba(0, 0, 0, 0.85) !important;
  border-bottom: 2px solid limegreen;
  backdrop-filter: blur(6px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.kfm-navbar .navbar-brand {
  font-weight: 800;
  font-size: 1.3em;
  color: #fff !important;
  letter-spacing: .03em;
}

.kfm-navbar .nav-link {
  color: #ccc !important;
  font-size: .92em;
  padding: 6px 12px !important;
  border-radius: 4px;
  transition: background .2s, color .2s;
}

.kfm-navbar .nav-link:hover {
  background-color: limegreen !important;
  color: #111 !important;
}

/* -- Hero ------------------------------------------------- */
.kfm-hero {
  padding: 70px 0 50px;
  text-align: center;
}

.kfm-hero-icon {
  font-size: 3em;
  color: limegreen;
  margin-bottom: 16px;
  animation: kfm-pulse 2s ease-in-out infinite;
}

@keyframes kfm-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .7; transform: scale(.93); }
}

.kfm-hero-title {
  font-size: 2.4em;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}

.kfm-hero-sub {
  font-size: 1.05em;
  color: #bbb;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* -- Sections --------------------------------------------- */
.kfm-section {
  padding: 40px 0 50px;
}

/* -- Intro-Box -------------------------------------------- */
.kfm-intro-box {
  background: rgba(10, 10, 10, 0.7);
  border-left: 4px solid limegreen;
  border-radius: 0 6px 6px 0;
  padding: 18px 22px;
  color: #ccc;
  font-size: .97em;
}

/* -- Karten ----------------------------------------------- */
.kfm-card {
  background: rgba(10, 10, 10, 0.75);
  border: 1px solid #2a2a2a;
  border-top: 3px solid limegreen;
  border-radius: 6px;
  padding: 28px 22px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow .25s, transform .25s;
}

.kfm-card:hover {
  box-shadow: 0 6px 22px rgba(50, 205, 50, .18);
  transform: translateY(-3px);
}

.kfm-card-step {
  position: absolute;
  top: -16px;
  left: 22px;
  background: limegreen;
  color: #111;
  font-weight: 800;
  font-size: .85em;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
}

.kfm-card-icon {
  font-size: 1.8em;
  color: limegreen;
  margin-bottom: 14px;
  margin-top: 8px;
}

.kfm-card h4 {
  font-size: 1.05em;
  font-weight: 700;
  margin-bottom: 10px;
}

.kfm-card p {
  font-size: .92em;
  color: #aaa;
  flex-grow: 1;
}

/* -- Button ----------------------------------------------- */
.kfm-btn {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: limegreen;
  border: 1px solid limegreen;
  border-radius: 4px;
  padding: 7px 16px;
  font-size: .88em;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s;
  cursor: pointer;
  width: fit-content;
}

.kfm-btn:hover {
  background: limegreen;
  color: #111;
  text-decoration: none;
}

/* -- Trenner-Sektion -------------------------------------- */
.kfm-divider-section {
  padding: 50px 0 30px;
  text-align: center;
}

.kfm-divider-icon {
  font-size: 2.5em;
  color: limegreen;
  margin-bottom: 14px;
}

.kfm-divider-section h2 {
  font-size: 1.7em;
  font-weight: 800;
  margin-bottom: 12px;
}

.kfm-divider-section p {
  color: #aaa;
  font-size: .97em;
  max-width: 520px;
  margin: 0 auto 20px;
}

.kfm-arrow {
  font-size: 1.6em;
  color: limegreen;
  animation: kfm-bounce .9s ease-in-out infinite alternate;
}

@keyframes kfm-bounce {
  from { transform: translateY(0); }
  to   { transform: translateY(8px); }
}

/* -- Formular-Bereich ------------------------------------- */
.kfm-form-section {
  padding-top: 10px;
}

.kfm-formcard {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid #2a2a2a;
  border-top: 3px solid limegreen;
  border-radius: 6px;
  padding: 30px 28px;
}

.kfm-formcard h3 {
  font-size: 1.15em;
  font-weight: 700;
}

/* -- Footer ----------------------------------------------- */
.kfm-footer {
  background: rgba(0, 0, 0, 0.85);
  border-top: 1px solid #1e1e1e;
  padding: 20px 0;
  margin-top: 50px;
  color: #555;
  font-size: .85em;
}

/* -- Responsive ------------------------------------------- */
@media (max-width: 767px) {
  .kfm-hero-title { font-size: 1.7em; }
  .kfm-hero       { padding: 50px 0 30px; }
  .kfm-card       { margin-top: 20px; }
}