/* ============================================================
   page-fanschals.css  –  Strickerei Hartung
   Nur neue Inhaltselemente – KEINE Overrides von main.css
   ============================================================ */

/* ---------- Header Bildplatzhalter ---------- */
.site-header-img {
  width: 100%;
  margin-bottom: 0;
}

.header-placeholder {
  height: 160px;
  background: linear-gradient(135deg, #3d5c09 0%, #5c8e07 60%, #7ab510 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-placeholder .img-placeholder-label {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ---------- Content Blocks ---------- */
.content-block {
  background: #fff;
  padding: 20px 20px 20px 20px;
  margin-bottom: 4px;
}

/* ---------- Hero Eyebrow ---------- */
.hero-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #5c8e07;
  font-weight: 700;
  margin-bottom: 6px;
}

/* ---------- Bildplatzhalter ---------- */
.section-img-wrap {
  margin-bottom: 18px;
}

.img-placeholder {
  width: 100%;
  background: #e8f0d8;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.ratio-4-3 {
  aspect-ratio: 4 / 3;
}

.img-placeholder-label {
  font-size: 12px;
  color: #5c8e07;
  font-style: italic;
  text-align: center;
  padding: 8px 16px;
}

.img-caption-stripe {
  background: #5c8e07;
  color: #fff;
  font-size: 11px;
  padding: 5px 12px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: #3d5c09;
  color: #fff;
  padding: 16px 20px;
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-banner-text {
  font-size: 13px;
  line-height: 1.5;
  color: #fff;
}

.cta-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-block;
  background: #fff;
  color: #3d5c09;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  padding: 8px 16px;
}

.btn-primary:hover {
  background: #f0f7e6;
  color: #3d5c09;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.6);
}

.btn-secondary:hover {
  border-color: #fff;
  color: #fff;
}

.btn-large {
  font-size: 14px;
  padding: 12px 22px;
}

/* ---------- Use-case Liste ---------- */
.use-case-list {
  list-style: none;
  margin: 12px 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.use-case-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #f6f9f1;
  border: 1px solid #d8eab8;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.5;
  list-style: none;
}

.uc-icon {
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.2;
}

/* ---------- Prozessschritte ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.step {
  background: #f6f9f1;
  border-top: 3px solid #5c8e07;
  padding: 12px 10px;
  font-size: 11px;
  line-height: 1.5;
}

.step-num {
  font-size: 22px;
  font-weight: 700;
  color: #c8dfa0;
  line-height: 1;
  margin-bottom: 4px;
}

/* ---------- Vorteile Liste ---------- */
.advantage-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.advantage-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid #eee;
  font-size: 12px;
  line-height: 1.5;
  list-style: none;
}

.advantage-list li:last-child {
  border-bottom: none;
}

.check {
  color: #5c8e07;
  font-weight: 900;
  flex-shrink: 0;
}

/* ---------- Finaler CTA Block ---------- */
.cta-final {
  background: #f6f9f1;
  border-top: 3px solid #5c8e07;
}

.cta-contact-grid {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.cta-phone {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cta-phone-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
}

.cta-phone-number {
  font-size: 18px;
  font-weight: 700;
  color: #3d5c09;
  text-decoration: none;
}

.cta-phone-number:hover {
  color: #5c8e07;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 500px){
  .use-case-list{
    grid-template-columns: 1fr;
  }

  .process-steps{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}