/**
 * cta_split.css
 * Split-Layout CTA mit Video (Startseite)
 * Upload nach: /media/css/cta_split.css
 */

/* ========== CTA SPLIT LAYOUT ========== */
.cta-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  background: transparent;
  margin: 0;
}

/* Video Side (Left) */
.cta-split .cta-video-side {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.cta-split .cta-video-side video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

/* Content Side (Right) */
.cta-split .cta-content-side {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--text-white);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-split h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-split p {
  font-family: var(--font-main);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Benefits List */
.cta-split .cta-benefits {
  list-style: none;
  margin-bottom: 2rem;
}

.cta-split .cta-benefits li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
  font-family: var(--font-main);
}

.cta-split .cta-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
  font-size: 1.3rem;
}

/* CTA Button */
.cta-split .cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 12px 30px rgba(201, 165, 92, 0.4);
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
}

.cta-split .cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 18px 40px rgba(201, 165, 92, 0.6);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .cta-split {
    grid-template-columns: 1fr;
  }

  .cta-split .cta-video-side {
    min-height: 300px;
  }

  .cta-split .cta-content-side {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  /* Video auf Mobile ausblenden */
  .cta-split .cta-video-side {
    display: none;
  }

  .cta-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .cta-split .cta-content-side {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  }

  .cta-split h2 {
    font-size: 2rem;
  }

  .cta-split p {
    font-size: 1.1rem;
  }

  .cta-split .cta-benefits li {
    font-size: 1rem;
  }
}
