/* =======================================================
   RESET
======================================================= */

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0d1117;
  color: #ffffff;
}

/* =======================================================
   LAYOUT (Sticky Footer Struktur)
======================================================= */

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =======================================================
   HEADER
======================================================= */

.header {
  background: #0b0f14;
  padding: 20px 0;
  border-bottom: 1px solid #1f2937;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo-img {
  height: 60px;
  width: auto;
  display: block;
}

/* =======================================================
   NAVIGATION
======================================================= */

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav > a,
.dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  color: #cccccc;
  text-decoration: none;
  font-weight: 500;
  transition: 0.25s ease;
}

nav > a:hover,
.dropdown > a:hover {
  color: #facc15;
}

/* Dropdown */

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #161b22;
  border-radius: 10px;
  padding: 12px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s ease;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  z-index: 1000;
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: #ccc;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #1f2937;
  color: #facc15;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Kontakt Button */

.contact-btn {
  background: #facc15;
  color: #000 !important;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.25s ease;
}

.contact-btn:hover {
  background: #ffd84a;
  transform: translateY(-2px);
}

/* =======================================================
   HIGHLIGHT BAR
======================================================= */

.highlight-bar {
  background: linear-gradient(90deg,#facc15,#ffd84a);
  color: #000;
  padding: 10px 0;
  text-align: center;
  font-weight: 600;
  border-bottom: 1px solid #1f2937;
  animation: slideDown 0.6s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* =======================================================
   HERO
======================================================= */

.hero {
  height: 500px;
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('../img/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-overlay {
  width: 100%;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero h1 span {
  display: block;
  color: #facc15;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #d1d5db;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Hero Buttons */

.hero-btn {
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.25s ease;
}

.hero-btn.primary {
  background: #facc15;
  color: #000;
}

.hero-btn.primary:hover {
  background: #ffd84a;
  transform: translateY(-2px);
}

.hero-btn.secondary {
  background: #1f2937;
  color: #fff;
}

.hero-btn.secondary:hover {
  background: #374151;
  transform: translateY(-2px);
}

/* =======================================================
   SECTION
======================================================= */

.section {
  padding: 80px 0;
}

/* =======================================================
   CONTENT CARD
======================================================= */

.content-card {
  background: #161b22;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  transition: 0.3s ease;
}

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

.content-card h2 {
  margin-bottom: 20px;
}

.content-card p {
  margin-bottom: 18px;
  line-height: 1.7;
  color: #cbd5e1;
}

/* =======================================================
   UNSERE WERTE
======================================================= */

.dark {
  background: linear-gradient(160deg,#111827,#0d1117);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.value-card {
  background: #161b22;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s ease;
}

.value-card i {
  font-size: 36px !important;
  color: #facc15;
  margin-bottom: 20px;
  display: block;
}

.value-card h3 {
  margin-bottom: 15px;
}

.value-card p {
  color: #cbd5e1;
  line-height: 1.6;
}

.value-card:hover {
  transform: translateY(-8px);
}

/* =======================================================
   CTA BANNER
======================================================= */

.cta-banner {
  background: linear-gradient(160deg,#111827,#0d1117);
  padding: 80px 0;
  text-align: center;
}

.cta-btn {
  background: #facc15;
  color: #000;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none !important;
  font-weight: 600;
  display: inline-block;
  margin-top: 20px;
  transition: 0.25s ease;
}

.cta-btn:hover {
  background: #ffd84a;
  transform: translateY(-3px);
}

/* =======================================================
   FOOTER
======================================================= */

.footer {
  background: #0b0f14;
  padding: 50px 0 20px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.copyright {
  text-align: center;
  margin-top: 30px;
  color: #888;
}

/* =======================================================
   MOBILE
======================================================= */

@media (max-width: 900px) {

  .nav {
    flex-direction: column;
  }

  nav {
    margin-top: 15px;
    flex-direction: column;
    gap: 15px;
  }

  .hero {
    height: 400px;
  }

  .hero h1 {
    font-size: 28px;
  }

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

  .content-card {
    padding: 30px;
  }
}
/* =========================================
   GLOBAL LINK RESET
========================================= */

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Footer Links */
.footer a {
  color: #cbd5e1 !important;
}

.footer a:hover {
  color: #facc15 !important;
}

/* Button Links */
.call-btn,
.mail-btn,
.hero-btn,
.cta-btn {
  text-decoration: none !important;
}

.call-btn {
  color: #000 !important;
}

.mail-btn {
  color: #ffffff !important;
}
.footer a,
.footer a:visited {
  color: #cbd5e1 !important;
}

.footer a:hover {
  color: #facc15 !important;
}

.contact-actions {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.call-btn,
.mail-btn {
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Telefon */
.call-btn {
  background: linear-gradient(135deg,#facc15,#ffd84a);
  color: #000;
}

.call-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(250,204,21,0.3);
}

/* Mail */
.mail-btn {
  background: linear-gradient(135deg,#1f2937,#374151);
  color: #fff;
}

.mail-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}
/* ================= JOBS ================= */
/* ================= JOBS ================= */
/* ================= JOB HERO ================= */

.heroJob {
  height: 500px;
  background:
    linear-gradient(rgba(0,0,0,0.70), rgba(0,0,0,0.70)),
    url('../img/heroJob.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
}

.heroJob .hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.heroJob h1 {
  font-size: 44px;
  margin-bottom: 20px;
}

.heroJob p {
  font-size: 18px;
  color: #d1d5db;
  margin-bottom: 30px;
}

/* Optional Premium Overlay Effekt */
.heroJob::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #0d1117);
}

/* ================= JOBS ================= */

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: 30px;
  margin-top: 50px;
}

.job-card {
  background: linear-gradient(160deg,#111827,#0d1117);
  padding: 40px;
  border-radius: 18px;
  border: 1px solid #1f2937;
  transition: 0.3s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.job-card:hover {
  transform: translateY(-8px);
  border-color: #facc15;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.job-card h3 {
  margin-bottom: 15px;
}

.job-card p {
  color: #cbd5e1;
}

.job-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 24px;
  background: linear-gradient(135deg,#facc15,#ffd84a);
  color: #000;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}

.job-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(250,204,21,0.4);
}

/* Kultur Grid */

.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
  margin-top: 40px;
}

.culture-card {
  background: #161b22;
  padding: 30px;
  border-radius: 14px;
  transition: 0.3s ease;
}

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

.center-text {
  text-align: center;
  color: #cbd5e1;
}
/* ================= JOBS ENDE ================= */
/* ================= SMW BADGE ================= */

.smw-badge {
  position: fixed;
  bottom: 15px;
  right: 20px;
  font-size: 13px;
  color: #9ca3af;
  background: rgba(15,23,42,0.9);
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #1f2937;
  backdrop-filter: blur(6px);
  z-index: 999;
  transition: 0.3s ease;
}

.smw-badge a {
  color: #facc15;
  text-decoration: none;
  font-weight: 600;
}

.smw-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
/* ================= SMW BADGE ENDE ================= */


