@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&display=swap');

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #0d0d0d;
  color: #f5f5f5;
  text-align: center;
  margin: 0;
  padding: 0;
}

h1 {
  color: #d4af37; /* zlatna */
  margin-top: 30px;
  text-align: center;
}

.intro {
  font-family: 'Playfair Display', serif; /* luksuzni serif font */
  font-size: 20px;
  font-weight: 500; /* blago boldirano */
  color: #e0c97f;   /* zlatna nijansa teksta */
  margin: 20px auto;
  max-width: 700px;
  line-height: 1.6;
}

.donate-section button {
  background: #d4af37;
  color: #0d0d0d;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}
.donate-section button:hover {
  background: #f5d76e;
}
.orMore {
  color: #aaa;
  margin-left: 10px;
}

.stats-boxes {
  display: flex;
  justify-content: center;
  margin: 30px 0;
  gap: 20px;
}
.box {
  background: #1a1a1a;
  border: 1px solid #d4af37;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 16px;
  color: #f5f5f5;
}

.progress-section h2 {
  color: #f5f5f5;
}
.progress-container {
  width: 80%;
  margin: 20px auto;
  background: #333;
  border-radius: 8px;
  overflow: hidden;
}
#progressBar {
  background: linear-gradient(90deg, #d4af37, #f5d76e);
  color: #0d0d0d;
  height: 30px;
  line-height: 30px;
  width: 0%;
  font-weight: bold;
}

.donors-section h2 {
  color: #f5f5f5;
  margin-top: 40px;
}
.ticker {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  width: 100%;
  border-top: 1px solid #d4af37;
  border-bottom: 1px solid #d4af37;
  margin-top: 20px;
  padding: 10px 0;
}
.ticker-item {
  display: inline-block;
  padding: 0 40px;
  color: #f5f5f5;
  font-weight: bold;
  animation: ticker 40s linear infinite;
}
@keyframes ticker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
@media (max-width: 768px) {

    body {
        font-size: 16px;
    }

    .container {
        width: 90%;
        margin: auto;
    }

    h1 {
        font-size: 32px;
    }

    p {
        font-size: 16px;
    }

    button {
        width: 100%;
        padding: 15px;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}
