/**
 * Karriere Page Styles
 * Styles for the Career/Jobs page
 *
 * @package Tecoil
 */

/* =====================================================
   Hero Section
   ===================================================== */
.karriere-hero {
  background: linear-gradient(135deg, #002d53 0%, #0c3458 100%);
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.karriere-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(253, 195, 0, 0.1) 0%, transparent 70%);
  animation: karriereFloat 20s ease-in-out infinite;
}

@keyframes karriereFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

.karriere-hero .hero-content {
  position: relative;
  z-index: 2;
}

.karriere-hero h1 {
  color: #fdc300;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif !important;
  font-style: italic !important;
  font-weight: 900 !important;
}

.karriere-hero .lead {
  color: rgba(255,255,255,0.9);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 700px;
}

.karriere-hero .btn-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-outline-yellow {
  background: transparent;
  border: 2px solid #fdc300;
  color: #fdc300 !important;
}

.btn-outline-yellow:hover {
  background: #fdc300;
  color: #002d53 !important;
}

.btn-outline-dark {
  background: transparent;
  border: 2px solid #002d53;
  color: #002d53 !important;
}

.btn-outline-dark:hover {
  background: #002d53;
  color: #fff !important;
}

/* =====================================================
   Jobs Section
   ===================================================== */
.karriere-jobs {
  padding: 80px 0;
  background: #f8f9fa;
}

.karriere-jobs .section-head {
  text-align: center;
  margin-bottom: 60px;
}

.karriere-jobs .section-head h2 {
  color: #002d53;
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif !important;
  font-style: italic !important;
  font-weight: 900 !important;
}

.karriere-jobs .section-head p {
  color: #666;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.jobs-grid {
  display: grid;
  gap: 30px;
}

.job-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-left: 5px solid #fdc300;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 15px;
}

.job-card h3 {
  color: #002d53;
  font-size: 1.8rem;
  margin: 0;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif !important;
  font-style: italic !important;
  font-weight: 900 !important;
}

.job-badge {
  background: #fdc300;
  color: #002d53;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.job-description {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.job-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.job-meta span {
  color: #666;
  font-size: 0.9rem;
}

.jobs-cta {
  text-align: center;
  margin-top: 40px;
}

/* =====================================================
   Benefits Section
   ===================================================== */
.karriere-benefits {
  padding: 80px 0;
  background: white;
}

.karriere-benefits .section-head {
  text-align: center;
  margin-bottom: 60px;
}

.karriere-benefits .section-head h2 {
  color: #002d53;
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif !important;
  font-style: italic !important;
  font-weight: 900 !important;
}

.karriere-benefits .section-head p {
  color: #666;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.benefit-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: #fdc300;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-card h3 {
  color: #002d53;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif !important;
  font-style: italic !important;
  font-weight: 900 !important;
}

.benefit-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* =====================================================
   Process Section
   ===================================================== */
.karriere-process {
  padding: 80px 0;
  background: #f8f9fa;
}

.karriere-process .section-head {
  text-align: center;
  margin-bottom: 60px;
}

.karriere-process .section-head h2 {
  color: #002d53;
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif !important;
  font-style: italic !important;
  font-weight: 900 !important;
}

.karriere-process .section-head p {
  color: #666;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.process-step {
  text-align: center;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fdc300, #ffdb4d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #002d53;
  font-weight: bold;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif !important;
}

.process-step h3 {
  color: #002d53;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif !important;
  font-style: italic !important;
  font-weight: 900 !important;
}

.process-step p {
  color: #666;
  line-height: 1.6;
}

/* =====================================================
   Impressionen Section
   ===================================================== */
.karriere-impressionen {
  padding: 80px 0;
  background: #f8f9fa;
}

.karriere-impressionen .section-head {
  text-align: center;
  margin-bottom: 50px;
}

.karriere-impressionen .section-head h2 {
  font-size: 2.5rem;
  color: #002d53;
  margin-bottom: 20px;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif !important;
  font-style: italic !important;
  font-weight: 900 !important;
}

.karriere-impressionen .section-head p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.impressionen-grid-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.impression-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.impression-card:hover {
  transform: translateY(-5px);
}

.impression-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.impression-content {
  padding: 20px;
  background: white;
}

.impression-content h3 {
  font-size: 1.2rem;
  color: #002d53;
  margin-bottom: 10px;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif !important;
  font-style: italic !important;
}

.impression-content p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

.impressionen-grid-secondary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.impression-thumb {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.impression-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s;
}

.impression-thumb:hover img {
  transform: scale(1.05);
}

/* =====================================================
   CTA Section
   ===================================================== */
.karriere-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #002d53 0%, #0c3458 100%);
  text-align: center;
}

.karriere-cta h2 {
  color: #fdc300;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif !important;
  font-style: italic !important;
  font-weight: 900 !important;
}

.karriere-cta p {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.karriere-cta .btn-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* =====================================================
   Footer Wave Section
   ===================================================== */
.karriere-page .footer-wave-section {
  position: relative;
  width: 100%;
  height: 400px;
  background: #002d53;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  margin-bottom: -1px;
}

.karriere-page .footer-wave-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}

/* =====================================================
   Responsive Design
   ===================================================== */
@media (max-width: 768px) {
  .karriere-hero h1 {
    font-size: 2.5rem;
  }

  .karriere-hero .lead {
    font-size: 1.1rem;
  }

  .karriere-jobs .section-head h2,
  .karriere-benefits .section-head h2,
  .karriere-process .section-head h2 {
    font-size: 2rem;
  }

  .job-card {
    padding: 25px;
  }

  .job-card h3 {
    font-size: 1.4rem;
  }

  .job-meta {
    flex-direction: column;
    gap: 10px;
  }

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

  .benefit-card {
    padding: 30px;
  }

  .karriere-cta h2 {
    font-size: 1.8rem;
  }

  .impressionen-grid-main {
    grid-template-columns: 1fr;
  }

  .impressionen-grid-secondary {
    grid-template-columns: repeat(2, 1fr);
  }

  .impression-thumb img {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .karriere-hero {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .karriere-hero h1 {
    font-size: 2rem;
  }

  .job-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-group .btn {
    width: 100%;
    text-align: center;
  }

  .impressionen-grid-secondary {
    grid-template-columns: 1fr;
  }
}
