/* ==========================================
   PREFAB: CTA Section
   Figyelemfelhivo szekciok kulonbozo stilussal
   ========================================== */

.pf-cta {
  padding: clamp(60px, 8vw, 120px) 32px;
  text-align: center;
}

.pf-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.pf-cta-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.5;
  margin: 0 0 20px;
}

.pf-cta h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 20px;
}

.pf-cta p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.7;
  max-width: 550px;
  margin: 0 auto 36px;
}

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

.pf-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}

.pf-cta-btn--primary {
  background: white;
  color: #1a1a1a;
  border-color: white;
}

.pf-cta-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.15);
}

.pf-cta-btn--secondary {
  background: transparent;
  color: inherit;
  border-color: rgba(255,255,255,0.3);
}

.pf-cta-btn--secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}

/* --- Parallax hatter valtozat --- */
.pf-cta--parallax {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.pf-cta--parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.pf-cta--parallax .pf-cta-inner {
  position: relative;
  z-index: 1;
  color: white;
}

/* --- Gradient hatter --- */
.pf-cta--gradient {
  background: linear-gradient(135deg, #2c2418 0%, #1a2e1a 100%);
  color: #e8e0d4;
}

/* --- Bordered valtozat --- */
.pf-cta--bordered .pf-cta-inner {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 60px 40px;
  background: rgba(255,255,255,0.03);
}

/* Vilagos valtozatok */
.pf-cta--light { color: #1e1d14; }

.pf-cta--light .pf-cta-btn--primary {
  background: #1e1d14;
  color: white;
  border-color: #1e1d14;
}

.pf-cta--light .pf-cta-btn--secondary {
  border-color: rgba(0,0,0,0.2);
}

.pf-cta--light .pf-cta-btn--secondary:hover {
  background: rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
  .pf-cta--parallax { background-attachment: scroll; }
}
