/* ==========================================================================
   AUGUSTIN MOBILE - KARRIERESEITE (STYLING)
   Corporate Colors: #0093cf (Blau) & #c4ce41 (Grün)
   ========================================================================== */

:root {
  --augustin-blue: #0093cf;
  --augustin-blue-dark: #0076a8;
  --augustin-blue-light: #e6f4fa;
  --augustin-green: #c4ce41;
  --augustin-green-dark: #a2ab2e;
  --augustin-green-light: #f7f9e8;
  --augustin-dark: #4a4e5a;
  --augustin-gray-bg: #f8f9fa;
  --augustin-card-border: #e9ecef;
  --augustin-text: #444444;
  --augustin-heading: #222222;
}

/* Base resets & typography for career section */
.karriere-wrapper {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--augustin-text);
  line-height: 1.6;
  margin-top: 20px;
  margin-bottom: 50px;
}

.karriere-wrapper h2, 
.karriere-wrapper h3, 
.karriere-wrapper h4 {
  font-weight: 700;
  color: var(--augustin-heading);
}

/* Section Title with Corporate Green accent line */
.karriere-section-title {
  position: relative;
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.karriere-section-title::after {
  content: '';
  display: block;
  width: 45px;
  height: 4px;
  background-color: var(--augustin-green);
  margin-top: 8px;
  border-radius: 2px;
}

.karriere-section-subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
}

/* Hero Section with Augustin Corporate Blue Gradient */
.karriere-hero {
  background: linear-gradient(135deg, rgba(0, 147, 207, 0.95), rgba(74, 78, 90, 0.95));
  color: #ffffff;
  padding: 60px 40px;
  border-radius: 12px;
  margin-bottom: 50px;
  box-shadow: 0 10px 30px rgba(0, 147, 207, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.karriere-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(circle at top right, rgba(196, 206, 65, 0.25), transparent 60%);
  pointer-events: none;
}

.karriere-hero h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.karriere-hero p {
  font-size: 18px;
  max-width: 750px;
  margin: 0 auto 30px auto;
  opacity: 0.95;
  font-weight: 400;
}

.karriere-hero .btn-hero {
  background-color: var(--augustin-green);
  color: #222222;
  font-weight: 800;
  padding: 14px 34px;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.karriere-hero .btn-hero:hover {
  background-color: #ffffff;
  color: var(--augustin-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.4);
  text-decoration: none;
}

/* ─── Company Intro Section ─────────────────────────────────── */
.karriere-intro-section {
  background: #ffffff;
  border: 1px solid var(--augustin-card-border);
  border-left: 5px solid var(--augustin-blue);
  border-radius: 12px;
  padding: 40px 45px;
  margin-bottom: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.karriere-intro-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--augustin-blue);
  background: var(--augustin-blue-light);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.karriere-intro-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--augustin-heading);
  margin-bottom: 16px;
  line-height: 1.35;
}

.karriere-intro-text {
  font-size: 16px;
  color: var(--augustin-text);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 800px;
}

.karriere-intro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.karriere-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--augustin-gray-bg);
  border: 1px solid var(--augustin-card-border);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--augustin-dark);
}

.karriere-intro-badge svg {
  color: var(--augustin-blue);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .karriere-intro-section {
    padding: 25px 20px;
  }
  .karriere-intro-title {
    font-size: 18px;
  }
}

/* ─── Info + Kontakt 2-Spalten-Row ──────────────────────────── */
.info-kontakt-row {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 50px;
}

.info-kontakt-left {
  flex: 0.9;
  background: #ffffff;
  border: 1px solid var(--augustin-card-border);
  border-left: 5px solid var(--augustin-blue);
  border-radius: 12px;
  padding: 35px 35px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.info-kontakt-right {
  flex: 1.1;
}

.info-kontakt-right .ansprechpartner-card {
  margin-top: 0;
}

@media (max-width: 991px) {
  .info-kontakt-row {
    flex-direction: column;
  }
  .info-kontakt-left,
  .info-kontakt-right {
    width: 100%;
  }
}

/* Job Grid Cards */


.karriere-jobs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 40px;
}

.job-card {
  background: #ffffff;
  border: 1px solid var(--augustin-card-border);
  border-radius: 10px;
  padding: 30px;
  flex: 1 1 calc(50% - 25px);
  min-width: 300px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--augustin-blue);
  transition: all 0.3s ease;
}

.job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 147, 207, 0.15);
  border-color: var(--augustin-blue-light);
}

.job-card:hover::before {
  background-color: var(--augustin-green);
}

.job-card .job-type {
  font-size: 12px;
  font-weight: 700;
  color: var(--augustin-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.job-card .job-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--augustin-heading);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.job-card .job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.job-tag {
  background: var(--augustin-blue-light);
  color: var(--augustin-blue-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}

.job-card .job-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  flex-grow: 1;
}

/* Expandable Job Details (Aufgaben & Anforderungen) */
.job-details-toggle {
  background: none;
  border: none;
  color: var(--augustin-blue);
  font-weight: 700;
  font-size: 13px;
  padding: 0;
  margin-bottom: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.job-details-toggle:hover {
  color: var(--augustin-blue-dark);
  text-decoration: underline;
}

.job-details-toggle svg {
  transition: transform 0.3s ease;
}

.job-details-toggle.active svg {
  transform: rotate(180deg);
}

.job-details-content {
  display: none;
  background: #f8f9fa;
  border-left: 3px solid var(--augustin-green);
  padding: 18px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 13.5px;
}

.job-details-content h5 {
  font-size: 14px;
  font-weight: 800;
  color: var(--augustin-blue);
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 8px;
}

.job-details-content h5:first-child {
  margin-top: 0;
}

.job-details-content ul {
  padding-left: 18px;
  margin-bottom: 12px;
}

.job-details-content ul li {
  margin-bottom: 5px;
  color: #444;
}

.job-card .job-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.job-card .job-location {
  font-size: 13px;
  color: #777;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-apply {
  background-color: var(--augustin-blue);
  color: #ffffff;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  border: none;
  display: inline-block;
}

.btn-apply:hover {
  background-color: var(--augustin-green);
  color: #222222;
  text-decoration: none;
}

/* Initiativbewerbung Banner */
.initiativ-banner {
  background: linear-gradient(135deg, var(--augustin-blue), var(--augustin-blue-dark));
  color: #ffffff;
  padding: 28px 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
  box-shadow: 0 6px 20px rgba(0, 147, 207, 0.25);
  border-left: 6px solid var(--augustin-green);
}

.initiativ-banner h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-initiativ {
  background-color: var(--augustin-green);
  color: #222222;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
}

.btn-initiativ:hover {
  background-color: #ffffff;
  color: var(--augustin-blue);
  text-decoration: none;
}

/* Benefits Section */
.benefits-container {
  margin-bottom: 60px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.benefit-item {
  flex: 1 1 calc(20% - 20px);
  min-width: 150px;
  text-align: center;
  padding: 20px 10px;
  background: #ffffff;
  border: 1px solid var(--augustin-card-border);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  border-color: var(--augustin-blue);
  box-shadow: 0 8px 20px rgba(0, 147, 207, 0.1);
}

.benefit-icon-box {
  width: 75px;
  height: 75px;
  margin: 0 auto 15px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--augustin-blue-light);
  transition: all 0.3s ease;
}

.benefit-icon-box img {
  max-width: 44px;
  max-height: 44px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon-box {
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 147, 207, 0.2);
}

.benefit-item:hover .benefit-icon-box img {
  transform: scale(1.1);
}

.benefit-item:hover .benefit-icon-box {
  background: var(--augustin-green-light);
}

.benefit-item:hover .benefit-icon-box svg {
  stroke: var(--augustin-green-dark);
}

.benefit-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: #444;
  letter-spacing: 0.5px;
}

/* Ansprechpartner Section */
.ansprechpartner-section {
  margin-bottom: 60px;
}

.ansprechpartner-card {
  display: flex;
  background: #f8f9fa;
  border-left: 5px solid var(--augustin-blue);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  margin-top: 25px;
}

.ansprechpartner-img {
  width: 210px;
  min-height: 200px;
  object-fit: cover;
  flex-shrink: 0;
}

.ansprechpartner-info {
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.ansprechpartner-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--augustin-heading);
  text-transform: uppercase;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.ansprechpartner-role {
  font-size: 12px;
  font-weight: 700;
  color: var(--augustin-blue);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.ansprechpartner-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.ansprechpartner-contact a {
  color: #444;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.ansprechpartner-contact a:hover {
  color: var(--augustin-blue);
}

.ansprechpartner-contact svg {
  width: 18px;
  height: 18px;
  stroke: var(--augustin-blue);
  fill: none;
  stroke-width: 2;
}

/* Express Application Form */
.express-form-card {
  background: #ffffff;
  border: 1px solid var(--augustin-card-border);
  border-top: 4px solid var(--augustin-green);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  margin-top: 30px;
}

.express-form-card label {
  font-weight: 600;
  font-size: 13px;
  color: #333;
  margin-bottom: 6px;
}

.express-form-card .form-control {
  height: 46px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-shadow: none;
  padding: 10px 15px;
  font-size: 14px;
}

.express-form-card input[type="file"].form-control {
  height: auto;
  padding: 8px 12px;
}

.express-form-card textarea.form-control {
  height: 110px;
}

.express-form-card .form-control:focus {
  border-color: var(--augustin-blue);
  box-shadow: 0 0 0 3px rgba(0, 147, 207, 0.15);
}

.btn-submit-app {
  background-color: var(--augustin-blue);
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  padding: 14px 38px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 147, 207, 0.3);
}

.btn-submit-app:hover {
  background-color: var(--augustin-green);
  color: #222222;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 206, 65, 0.4);
}

/* Responsiveness */
@media (max-width: 991px) {
  .ansprechpartner-card {
    flex-direction: column;
  }
  .ansprechpartner-img {
    width: 100%;
    height: 250px;
  }
  .benefit-item {
    flex: 1 1 calc(33.333% - 20px);
  }
}

@media (max-width: 767px) {
  .karriere-hero {
    padding: 40px 20px;
  }
  .karriere-hero h1 {
    font-size: 26px;
  }
  .job-card {
    flex: 1 1 100%;
  }
  .benefit-item {
    flex: 1 1 calc(50% - 15px);
  }
  .initiativ-banner {
    flex-direction: column;
    text-align: center;
  }
}
