/* —— Manifesto Sayfası Stil V2 —— */

/* sayfa gövdesi */
.manifesto {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: calc(100vh - 60px);
  background: linear-gradient(135deg, #000 0%, #111 90%);
}

/* iç “card” */
.manifesto .card {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  animation: cardFadeIn 0.8s ease-out;
  color: #eee;
  text-align: center;
}

/* kart fade-in */
@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* başlık */
.manifesto h1 {
  margin: 0 0 1.5rem;
  font-size: 2.5rem;
  color: #FFD600;
  text-shadow: 0 3px 8px rgba(0,0,0,0.7);
  opacity: 0;
  animation: fadeUp 0.6s ease-out forwards;
  animation-delay: 0.2s;
}

/* paragraflar sıralı animasyon */
.manifesto p {
  margin: 1rem 0;
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.6s ease-out forwards;
}
.manifesto p:nth-of-type(1) { animation-delay: 0.4s; }
.manifesto p:nth-of-type(2) { animation-delay: 0.6s; }
.manifesto p:nth-of-type(3) { animation-delay: 0.8s; }
.manifesto p:nth-of-type(4) { animation-delay: 1s; }
.manifesto p:nth-of-type(5) { animation-delay: 1.2s; }
.manifesto p:nth-of-type(6) { animation-delay: 1.4s; }
.manifesto p:nth-of-type(7) { animation-delay: 1.6s; }
.manifesto p:nth-of-type(8) { animation-delay: 1.8s; }
.manifesto p:nth-of-type(9) { animation-delay: 2s; }

/* fade-up animasyonu */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* altın vurgular */
.manifesto .highlight {
  color: #FFD600;
  font-weight: 600;
}

/* back-link */
.manifesto .back-link {
  display: inline-block;
  margin-top: 2rem;
  color: #FFD600;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s, transform 0.3s;
  opacity: 0;
  animation: fadeUp 0.6s ease-out forwards;
  animation-delay: 2.2s;
}
.manifesto .back-link:hover {
  transform: translateX(-4px);
  color: #fff;
}

/* mobil uyum */
@media (max-width: 480px) {
  .manifesto .card {
    padding: 1.5rem;
  }
  .manifesto h1 {
    font-size: 2rem;
  }
  .manifesto p {
    font-size: 1rem;
  }
}
