/******************************************
 * Arbeitgeber Landingpage Styles
 * Production Ready – Clean & Optimized
 ******************************************/

/* =========================
   HERO
========================= */
.hero-section {
  padding: 60px 20px 70px;
  text-align: center;
  margin: 0 -20px 30px;
}

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

.hero-section h1 {
  font-size: 2.3rem;
  margin-bottom: 15px;
  color: #001c64;
  font-weight: 300;
}

.hero-section p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.cta-button.primary {
  border: 2px solid #0077ff;
  background: #0077ff;
  color: #fff;
}

.cta-button.primary:hover {
  background: #005fc7;
}

.cta-button.secondary {
  border: 2px solid #0077ff;
  color: #0077ff;
}

.cta-button.secondary:hover {
  background: #005fc7;
  color: #fff;
}

/* =========================
   TRUST BOXES
========================= */
.trust-section {
  background: #f0f6ff;
  text-align: center;
  padding: 50px 20px;
}

.trust-section h2 {
  font-size: 1.9rem;
  margin-bottom: 25px;
}

.trust-box-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.trust-box {
  background: #fff;
  padding: 22px 28px;
  border-radius: 14px;
  border: 1px solid #e3e9f5;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  width: 260px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.trust-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.trust-value {
  font-size: 2.3rem;
  font-weight: 700;
  color: #0077ff;
  margin-bottom: 8px;
}

.trust-label {
  font-size: 1rem;
  color: #333;
  font-weight: 300;
}

/* Mobile */
@media (max-width: 600px) {
  .trust-box {
    width: 100%;
    max-width: 300px;
  }
}

/* =========================
   3 STEPS
========================= */
.steps-section {
  padding: 60px 20px;
  text-align: center;
}

.steps-section h2 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.easy-subline {
  font-size: 3rem;
  font-style: italic;
  font-weight: 300;
  color: #0077ff;
  margin: 5px 0 35px;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1 1 260px;
  max-width: 300px;
}

.step-number {
  font-size: 4rem;
  color: #0077ff;
  font-weight: 700;
}

.step h3 {
  font-size: 1.25rem;
  color: #001c64;
  margin-bottom: 8px;
}

.step p {
  color: #555;
  line-height: 1.5;
}

/* =========================
   KULTtweet-Effekt
========================= */
.kulteffekt {
  text-align: center;
}

/* KULTtweet-Effekt: Portraits über dem Text */
.kulteffekt .text-container {
    display: flex;
    flex-direction: column; /* ← statt nebeneinander */
    align-items: center;
    text-align: center;
    gap: 30px; /* Abstand zwischen Portraits und Text */
}

.kulteffekt .text-item {
    flex: 0 0 auto; /* verhindert unnötige Ausdehnung */
    width: 100%;
    max-width: 700px; /* schöne Breite für den Text */
    text-align: center;
}

/* =========================
   PROFIL-KARUSSELL FIX
========================= */

.profile-row {
    display: flex;
    gap: -20px;
    justify-content: center;
    align-items: center;
}

.profile {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    opacity: 0.35;
    transform: scale(0.95);
    transition: opacity 1.2s ease, transform 1.2s ease, box-shadow 1.2s ease;
}

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

/* ⭐ Aktives Profil: kleiner Zoom, klar erkennbar */
.profile.active {
    opacity: 1;
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(0,0,0,0.25);
}

/* Tablets */
@media (max-width: 1024px) {
    .profile {
        width: 60px;
        height: 60px;
    }
}

/* Smartphones */
@media (max-width: 600px) {
    .profile-row {
        gap: -12px;
        overflow-x: auto;
        padding: 0 10px;
    }
    .profile {
        width: 55px;
        height: 55px;
    }
    .profile:nth-child(n+5) {
        display: none; /* auf mobile nicht 7 Bilder zeigen */
    }
}

/* =========================
   PRICE SECTION
========================= */
.price-section {
  text-align: center;
  padding-top: 20px;
}

.price-section h2 {
  font-size: 1.9rem;
  margin-bottom: 25px;
}
/* Abstand unter dem Intro-Text im Preisbereich */
.price-section .text-container {
    margin-bottom: 40px; /* oder 60px je nach Wunsch */
}

.price-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.price-box,
.premium-price-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  flex: 1 1 260px;
  max-width: 300px;
  text-align: center;
  border: 1px solid #eee;
  transition: transform 0.25s, background 0.25s;
}

.price-box:hover,
.premium-price-box:hover {
  transform: translateY(-4px);
  background: #f6f9ff;
}

.premium-price-box {
  background: #eaf3ff;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
}

.premium-price {
  font-size: 1.3rem;
  font-weight: 700;
}

.booking-button {
  background: #0077ff;
  color: #fff;
  padding: 10px 22px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 12px;
}

.booking-button:hover {
  background: #005fbb;
}

/* =========================
   CTA FINAL
========================= */
.cta-final {
  text-align: center;
  padding: 60px 20px;
}

.cta-final h2 {
  font-size: 1.9rem;
  margin-bottom: 25px;
}

.cta-button.large {
  background: #0077ff;
  color: #fff;
  padding: 12px 32px;
  border-radius: 50px;
  display: inline-block;
  font-size: 1.05rem;
}

.cta-button.large:hover {
  background: #005fc7;
}

/* =========================
   FAQ
========================= */
#faq h2 {
  font-size: 1.9rem;
  text-align: center;
  margin-bottom: 25px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 18px 0;
}

.question {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.circle {
  width: 22px;
  height: 22px;
  border: 2px solid #0073e6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrow {
  width: 6px;
  height: 6px;
  border-right: 2px solid #0073e6;
  border-bottom: 2px solid #0073e6;
  transform: rotate(45deg);
}

.faq-item.active .arrow {
  transform: rotate(-135deg);
}

.answer {
  display: none;
  color: #555;
  line-height: 1.6;
  padding-top: 10px;
}

.faq-item.active .answer {
  display: block;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .hero-section { padding: 40px 10px; }
  .step { max-width: 100%; }
  .text-item { flex: 1 1 100%; }
  .price-box { flex: 1 1 100%; }
}
