@charset "UTF-8";
/* ==================== KI Entwicklung - Unified Design (wie ki-schulung.css) ==================== */
/* ==================== Developer Booking Section ==================== */
.developer-booking-section {
  background: #111111;
  border: 1px solid #333333;
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.2s ease;
}
.developer-booking-section:hover {
  border-color: #666666;
  transform: translateY(-2px);
}

.developer-booking-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ffffff;
  color: #000000;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.developer-booking-badge.new {
  background: #00d8ff;
  color: #ffffff;
}
.developer-booking-badge.premium {
  background: #ff0080;
  color: #ffffff;
}
.developer-booking-badge.trending {
  background: #f5a623;
  color: #000000;
}
.developer-booking-badge.expert {
  background: #7c3aed;
  color: #ffffff;
}

.developer-booking-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .developer-booking-title {
    font-size: 24px;
  }
}

.developer-booking-description {
  color: #888888;
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .developer-booking-description {
    font-size: 14px;
  }
}

/* ==================== Developer Options Grid (unified wie course-grid) ==================== */
.developer-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 32px;
  /* Tablet - 2 Spalten */
}
@media (max-width: 991px) {
  .developer-options-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 600px;
  }
}
.developer-options-grid {
  /* Mobile - 1 Spalte */
}
@media (max-width: 767px) {
  .developer-options-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 400px;
  }
}

/* ==================== Developer Cards (unified wie course-card) ==================== */
.developer-option-card {
  background: #111111;
  border: 1px solid #333333;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
}
.developer-option-card:hover {
  border-color: #666666;
  transform: translateY(-2px);
}

/* ==================== Developer Card Header ==================== */
.developer-card-header {
  padding: 20px;
  border-bottom: 1px solid #333333;
  position: relative;
}

.developer-option-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ffffff;
  color: #000000;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.developer-option-badge.bestseller {
  background: #ffffff;
  color: #000000;
}
.developer-option-badge.new {
  background: #00d8ff;
  color: #ffffff;
}
.developer-option-badge.premium {
  background: #ff0080;
  color: #ffffff;
}
.developer-option-badge.trending {
  background: #f5a623;
  color: #000000;
}
.developer-option-badge.expert {
  background: #7c3aed;
  color: #ffffff;
}

.developer-option-level {
  font-size: 12px;
  font-weight: 500;
  color: #666666;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.developer-option-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.developer-option-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #666666;
}

/* ==================== Developer Card Body ==================== */
.developer-card-body {
  padding: 20px;
}

.developer-option-price {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.developer-option-description {
  color: #888888;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.developer-option-features {
  margin-bottom: 20px;
  padding: 16px;
  background: #0a0a0a;
  border: 1px solid #333333;
  border-radius: 6px;
}

.developer-option-features h5 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.developer-option-features ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}

.developer-option-features li {
  color: #888888;
  font-size: 12px;
  margin-bottom: 6px;
  position: relative;
}

.developer-option-features li::before {
  content: "•";
  color: #666666;
  position: absolute;
  left: -12px;
}

/* ==================== Level-specific styling ==================== */
.developer-option-card.junior .developer-option-level {
  color: #00d8ff;
}
.developer-option-card.junior .developer-option-price {
  color: #00d8ff;
}

.developer-option-card.senior .developer-option-level {
  color: #f5a623;
}
.developer-option-card.senior .developer-option-price {
  color: #f5a623;
}
.developer-option-card.senior:hover {
  border-color: #f5a623;
}

.developer-option-card.expert .developer-option-level {
  color: #7c3aed;
}
.developer-option-card.expert .developer-option-price {
  color: #7c3aed;
}
.developer-option-card.expert:hover {
  border-color: #7c3aed;
}

.developer-option-card.featured {
  border-color: #00d8ff;
  background: linear-gradient(135deg, #111111 0%, #0a0a0a 100%);
}
.developer-option-card.featured:hover {
  border-color: #00d8ff;
  box-shadow: 0 4px 16px rgba(0, 216, 255, 0.2);
}

/* ==================== Call to Action Button ==================== */
.developer-cta-button {
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #000000;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  width: 100%;
  justify-content: center;
}
.developer-cta-button:hover {
  background: #f0f0f0;
  color: #000000;
  text-decoration: none;
}
.developer-cta-button svg {
  transition: transform 0.2s ease;
}
.developer-cta-button:hover svg {
  transform: translateX(2px);
}

/* ==================== Responsive Design ==================== */
@media (max-width: 991px) {
  .developer-booking-section {
    padding: 32px 24px;
    margin-bottom: 40px;
  }
  .developer-options-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}
@media (max-width: 767px) {
  .developer-booking-section {
    padding: 24px 20px;
  }
  .developer-card-header {
    padding: 16px;
  }
  .developer-card-body {
    padding: 16px;
  }
  .developer-option-features {
    padding: 12px;
  }
  .developer-cta-button {
    padding: 10px 20px;
    font-size: 13px;
  }
  /* Optimierung für mobile Preisboxen */
  .developer-option-card {
    margin-bottom: 16px;
  }
  .developer-option-title {
    font-size: 16px;
  }
  .developer-option-price {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .developer-booking-badge {
    font-size: 9px;
    padding: 1px 6px;
  }
  .developer-booking-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .developer-option-title {
    font-size: 16px;
  }
  .developer-option-price {
    font-size: 20px;
  }
  /* Extra kleine Bildschirme - noch mehr Platz */
  .developer-options-grid {
    gap: 12px;
    padding: 0 10px;
  }
  .developer-booking-section {
    padding: 20px 16px;
    margin-bottom: 40px;
  }
}
/* ==================== Technology Stack Section ==================== */
.tech-stack-section {
  background: #111111;
  border: 1px solid #333333;
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .tech-stack-section {
    padding: 24px 20px;
  }
}

.tech-stack-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .tech-stack-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}

.tech-stack-description {
  color: #888888;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .tech-stack-description {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
  /* Tablet - 2 Spalten */
}
@media (max-width: 991px) {
  .tech-stack-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.tech-stack-grid {
  /* Mobile - 1 Spalte */
}
@media (max-width: 767px) {
  .tech-stack-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.tech-stack-card {
  background: #111111;
  border: 1px solid #333333;
  border-radius: 8px;
  padding: 20px;
  transition: all 0.2s ease;
}
.tech-stack-card:hover {
  border-color: #666666;
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .tech-stack-card {
    padding: 16px;
  }
}

.tech-stack-card-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .tech-stack-card-title {
    font-size: 13px;
    margin-bottom: 10px;
  }
}

.tech-stack-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tech-stack-tag {
  background: #0a0a0a;
  border: 1px solid #333333;
  color: #888888;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  transition: all 0.2s ease;
}
.tech-stack-tag:hover {
  background: #111111;
  color: #ffffff;
  border-color: #666666;
}
@media (max-width: 575px) {
  .tech-stack-tag {
    font-size: 10px;
    padding: 2px 6px;
  }
}

/* ==================== Consistent spacing and typography ==================== */
.developer-section {
  padding: 40px 0 80px;
}

.developer-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  text-align: center;
}

.developer-section p {
  color: #888888;
  font-size: 16px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
