/*
Theme Name: JobVerbinder
Theme URI: https://jobverbinder.de
Author: JobVerbinder Team
Description: Offizielles Theme für JobVerbinder.de – Kostenlose Jobvermittlung
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: jobverbinder
*/

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a3a5c;
  --orange: #f5a623;
  --orange-light: #fef3e2;
  --navy-light: #e8f0f9;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26,58,92,0.10);
  --shadow-lg: 0 8px 40px rgba(26,58,92,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
}

/* ── NAV ── */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 5%;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 44px; display: block; }
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.15s;
}
.nav-links a:hover { background: var(--gray-100); }
.btn-nav {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
}
.btn-nav:hover { background: #122a45 !important; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0f2540 100%);
  color: var(--white);
  padding: 90px 5% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.2);
  color: var(--orange);
  border: 1px solid rgba(245,166,35,0.4);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero h1 span { color: var(--orange); }
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto 40px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--orange);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(245,166,35,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.45);
  color: var(--navy);
}
.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.25);
  transition: background 0.15s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); color: var(--white); }

/* ── SECTIONS ── */
section.content-section { padding: 80px 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 580px;
}
.section-header { margin-bottom: 52px; }

/* ── HOW IT WORKS ── */
.bg-gray { background: var(--gray-50); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-num {
  width: 48px; height: 48px;
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step p { font-size: 0.95rem; color: var(--gray-500); }

/* ── TWO CARDS ── */
.two-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.card {
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.card-company { background: var(--navy); color: var(--white); }
.card-candidate {
  background: var(--orange-light);
  color: var(--navy);
  border: 2px solid rgba(245,166,35,0.3);
}
.card-icon { font-size: 2.4rem; margin-bottom: 18px; }
.card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.card-company h3 { color: var(--orange); }
.card p {
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 28px;
  opacity: 0.85;
}
.card-company p { color: rgba(255,255,255,0.8); }
.card ul { list-style: none; margin-bottom: 32px; }
.card ul li {
  padding: 7px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-company ul li { color: rgba(255,255,255,0.85); }
.check {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
}
.card-company .check { background: var(--orange); color: var(--navy); }
.card-candidate .check { background: var(--navy); color: var(--white); }
.btn-card-company {
  display: inline-block;
  background: var(--orange);
  color: var(--navy);
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s;
}
.btn-card-company:hover { transform: translateY(-2px); color: var(--navy); }
.btn-card-candidate {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s;
}
.btn-card-candidate:hover { transform: translateY(-2px); color: var(--white); }

/* ── ÜBER UNS ── */
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy .section-title { color: var(--white); }
.bg-navy .section-label { color: var(--orange); }
.bg-navy .section-sub { color: rgba(255,255,255,0.7); max-width: 700px; }
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.value {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.value-icon { font-size: 1.8rem; margin-bottom: 12px; }
.value h4 { font-size: 0.95rem; font-weight: 700; color: var(--orange); margin-bottom: 8px; }
.value p { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

/* ── UNTERSEITEN (Impressum, Datenschutz, Kontakt) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0f2540 100%);
  color: var(--white);
  padding: 60px 5%;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; }
.page-content {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 5%;
}
.page-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 12px;
}
.page-content p, .page-content li {
  font-size: 0.97rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 12px;
}
.page-content ul { padding-left: 20px; }
.page-content a { color: var(--orange); }

/* ── KONTAKT FORMULAR ── */
.contact-form {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 40px;
}
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  margin-bottom: 20px;
  transition: border-color 0.15s;
  background: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--navy);
}
.contact-form textarea { height: 140px; resize: vertical; }
.btn-submit {
  background: var(--navy);
  color: var(--white);
  padding: 14px 32px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
}
.btn-submit:hover { background: #122a45; }

/* ── FOOTER ── */
footer.site-footer {
  background: var(--gray-900);
  color: var(--gray-500);
  padding: 40px 5%;
  text-align: center;
  font-size: 0.85rem;
}
footer.site-footer a { color: var(--gray-500); text-decoration: none; }
footer.site-footer a:hover { color: var(--white); }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

/* ── WP CONTENT ── */
.wp-block-paragraph { margin-bottom: 1em; }

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .two-cards { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero h1 { font-size: 1.9rem; }
  .card { padding: 32px 24px; }
}
