:root{
  --text: #2a2a2a;      /* soft dark grey */
  --muted: #4b4b4b;
  --soft: rgba(0,0,0,0.08);
  --soft2: rgba(0,0,0,0.14);

  --bg: #fbf7f0;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);

  /* Close to your original look */
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 22px 40px;
  text-align: center;
}

/* Logo */
.logo {
  width: 120px;
  height: auto;
  margin-bottom: 18px;
}

/* Title */
.brewing {
  font-size: 2.2rem;
  line-height: 1.15;
  margin: 10px 0 26px;
  font-weight: 500;
  color: var(--text);
}

/* Coffee float */
.float-coffee{
  display: inline-block;
  margin-left: 6px;
  animation: floatCoffee 2.8s ease-in-out infinite;
}

@keyframes floatCoffee {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-7px); }
  100% { transform: translateY(0px); }
}

/* Projects */
.projects-section {
  width: 100%;
  text-align: left;
  margin: 0 auto 26px;

  display: flex;
  flex-direction: column;
  gap: 24px;
}

.project-link {
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;

  color: var(--text);
  opacity: 0.95;
  transition: 0.18s ease;
}

.project-link:hover{
  opacity: 1;
  cursor: pointer;
}

/* Donate button */
.donation-section {
  width: 100%;
  text-align: center;
  margin: 10px 0 24px;
}

.donate-button {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;

  font-size: 1rem;
  font-weight: 600;

  text-decoration: none;
  color: var(--text);

  border: 1px solid var(--soft2);
  background: rgba(0,0,0,0.02);

  transition: 0.2s ease;
}

.donate-button:hover {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.22);
  cursor: pointer;
}

/* Fundraising progress */
.donation-progress {
  width: 100%;
  text-align: left;
  margin: 10px 0 28px;
  position: relative;
}

.donation-progress h2 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--text);
}



.progress-bar-container {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: var(--soft);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

#progress-bar {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: #4caf50;  /* green color */
  transition: width 0.8s ease;
  position: relative;
  z-index: 2;
}


#progress-text {
  margin-top: 10px;
  font-size: 0.98rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* Subtitle breathing motion */
.subtitle {
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.9;
  color: var(--muted);
}

.breathe-text{
  display: inline-block;
  animation: breatheFloat 6.5s ease-in-out infinite;
  text-align: center;
}

@keyframes breatheFloat {
  0%   { transform: translateY(0px); }
  45%  { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Footer bits */
.topics {
  margin-top: 14px;
  font-size: 0.98rem;
  opacity: 0.75;
  color: var(--muted);
  text-align: center;
}

.instagram {
  display: inline-block;
  margin-top: 18px;
  opacity: 0.75;
  transition: 0.2s ease;
  text-align: center;
}

.instagram:hover {
  opacity: 1;
}

.instagram img {
  width: 26px;
  height: 26px;
}

footer {
  margin-top: 34px;
  font-size: 0.9rem;
  opacity: 0.55;
  color: var(--muted);
}

/* Mobile */
@media (max-width: 520px) {
  .brewing {
    font-size: 1.85rem;
  }

  .container {
    padding-top: 40px;
  }

  .projects-section{
    gap: 14px;
  }
}
.emoji-confetti {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  will-change: transform, opacity;
}

