/* -------------------------------
   Manifesto Page Styling
--------------------------------*/

.manifesto-container {
  max-width: 700px;
  margin: 100px auto 60px auto;
  padding: 0 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  color: #222;
  position: relative;
  z-index: 2;
}

.manifesto-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: lowercase;
  animation: fadeInUp 1.5s ease-out forwards;
  opacity: 0;
}

.manifesto-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
  text-transform: lowercase;
  font-weight: 400;
  animation: fadeInUp 2s ease-out forwards;
  opacity: 0;
}

.manifesto-block p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 20px 0;
}

.manifesto-core {
  margin: 50px 0 30px;
}

.manifesto-core p {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 8px 0;
  color: #111;
}

.color-line {
  height: 4px;
  width: 100px;
  margin: 40px auto;
  background: linear-gradient(to right, #e94e1b, #d9af62); /* harissa orange to soft gold */
  border-radius: 2px;
}

.closing-line {
  font-size: 0.9rem;
  text-transform: lowercase;
  color: #555;
  margin-bottom: 80px;
}

/* -------------------------------
   Animations
--------------------------------*/

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes moveBg {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes floatUpDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(30px);
  }
}

/* -------------------------------
   Background Animation Text
--------------------------------*/

.bg-animated {
  position: fixed;
  top: 30%;
  left: 0;
  white-space: nowrap;
  font-size: 6rem;
  font-weight: 600;
  color: #111;
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  animation: moveBg 30s linear infinite;
  font-family: 'Inter', sans-serif;
}

/* -------------------------------
   Floating GIF Columns
--------------------------------*/

.gif-column {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  z-index: 1;
  opacity: 0.3;
  pointer-events: none;
}

.gif-column.left {
  left: 0;
}

.gif-column.right {
  right: 0;
}

.gif-box {
  width: 60px;
  height: 60px;
  margin: 20px 0;
  animation: floatUpDown 6s ease-in-out infinite alternate;
}

.gif-box:nth-child(2) {
  animation-delay: 1s;
}

.gif-box:nth-child(3) {
  animation-delay: 2s;
}
