/* Zbiórka page specific styles */

.back-section {
  padding: 24px 0 0;
  background: var(--cream);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
}

.back-link:hover {
  background: var(--white);
  transform: translateX(-4px);
}

/* Page Hero */
.page-hero {
  padding: 48px 0 64px;
  text-align: center;
  background: var(--cream);
}

.badge {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 8vw, 64px);
  line-height: 1.1;
  margin: 0 0 24px;
  color: var(--gray-dark);
}

.page-hero h1 span {
  color: var(--orange);
}

.page-hero .lead {
  font-size: clamp(16px, 3vw, 20px);
  line-height: 1.7;
  color: var(--gray);
  max-width: 800px;
  margin: 0 auto;
}

/* Stats Section */
.stats-section {
  padding: 64px 0;
  background: var(--white);
}

.stats-section h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 6vw, 48px);
  text-align: center;
  margin-bottom: 64px;
  color: var(--gray-dark);
}

.category {
  margin-bottom: 64px;
}

.category-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 5vw, 32px);
  color: var(--purple);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-title .emoji {
  font-size: 1.5em;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
  justify-items: center;
}

.stat-card {
  width: 100%;
  max-width: 320px;
  background: var(--cream);
  border: 2px solid var(--gray-light);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.2s;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple);
  box-shadow: var(--shadow);
}

.stat-card.special {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .stat-card.special {
    grid-column: span 2;
  }
}

.stat-number {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 6vw, 48px);
  color: var(--purple);
  margin-bottom: 12px;
  line-height: 1;
}

.stat-label {
  color: var(--gray);
  font-weight: 600;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.4;
}

/* Photo placeholders */
.photo-placeholder {
  background: linear-gradient(135deg, #f3e7ff 0%, #ffe8e8 100%);
  border: 2px dashed var(--purple);
  border-radius: 16px;
  padding: 48px 24px;
  text-align: center;
  color: var(--purple);
  font-weight: 600;
  font-size: clamp(14px, 2vw, 16px);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder.products {
  margin-top: 24px;
}

.summary-note {
  text-align: center;
  color: var(--gray);
  font-style: italic;
  margin-top: 48px;
  font-size: clamp(15px, 2vw, 17px);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Stories Section */
.stories-section {
  padding: 80px 0;
  background: var(--cream);
}

.stories-section h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 6vw, 48px);
  text-align: center;
  margin-bottom: 12px;
  color: var(--gray-dark);
}

.section-intro {
  text-align: center;
  color: var(--gray);
  font-size: clamp(17px, 3vw, 20px);
  margin-bottom: 48px;
}

.stories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.story {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.story-image {
  flex-shrink: 0;
}

.story-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.story-image .photo-placeholder {
  min-height: 300px;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid var(--purple);
}

.story-content {
  padding: 32px;
}

.story h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 4vw, 28px);
  color: var(--purple);
  margin-bottom: 20px;
}

blockquote {
  background: #eef7fd;
  border-left: 4px solid var(--blue);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 0;
  margin-top: auto;
}

blockquote p {
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 12px;
  font-style: italic;
}

blockquote p:last-of-type {
  margin-bottom: 16px;
}

blockquote footer {
  color: var(--gray);
  font-weight: 600;
  font-size: 0.95rem;
  font-style: normal;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

/* Next Action Section */
.next-action {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

.next-action h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 6vw, 48px);
  margin-bottom: 12px;
  color: var(--gray-dark);
}

.next-action .intro {
  font-size: clamp(17px, 3vw, 20px);
  color: var(--gray);
  margin-bottom: 24px;
  font-weight: 600;
}

.next-action > p {
  max-width: 700px;
  margin: 0 auto 48px;
  color: var(--gray);
  line-height: 1.7;
  font-size: clamp(15px, 2vw, 17px);
}

.event-box {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 2px solid var(--orange);
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: left;
}

.event-box h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 4vw, 28px);
  color: var(--purple);
  margin-bottom: 16px;
}

.event-box p {
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 12px;
}

.event-box strong {
  color: var(--purple);
}

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

/* Mobile optimizations */
@media (max-width: 640px) {
  .page-hero {
    padding: 32px 0 48px;
  }

  .stats-section,
  .stories-section,
  .next-action {
    padding: 48px 0;
  }

  .category {
    margin-bottom: 48px;
  }

  .story-content {
    padding: 24px;
  }

  blockquote {
    padding: 16px 20px;
  }

  .event-box {
    padding: 28px 24px;
  }
}
