/* ============================================================
   archibou — Marketing-specific styles
   ============================================================ */

/* ---- Animations ---- */
@media (prefers-reduced-motion: no-preference) {
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  section {
    animation: fadeIn 0.5s ease-out both;
  }

  .pricing-card:nth-child(1) { animation-delay: 0s; }
  .pricing-card:nth-child(2) { animation-delay: 0.15s; }
  .pricing-card:nth-child(3) { animation-delay: 0.3s; }
}

/* ---- Breadcrumbs ---- */
.breadcrumbs {
  padding: var(--space-3) 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.breadcrumbs li::after {
  content: "/";
  color: var(--text-muted);
  font-size: 0.75rem;
}

.breadcrumbs li:last-child::after {
  content: none;
}

.breadcrumbs a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
  color: var(--accent);
}

.breadcrumbs [aria-current="page"] {
  color: var(--text-secondary);
  font-weight: 500;
}

/* ---- Photos Killer Banner ---- */
.photos-killer-banner {
  background: linear-gradient(135deg, #e3f2fd, #fff3e0);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  margin: var(--space-6) 0;
  text-align: center;
  border: 2px solid var(--primary);
}

.photos-killer-banner h3 {
  margin: 0 0 var(--space-2) 0;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.photos-killer-banner p {
  margin: 0;
  color: var(--text-secondary);
  font-size: var(--text-xs);
}
