/* Base */
body {
  font-family: "Poppins", sans-serif;
  background-color: #f9c5d5; /* full soft pink */
  color: #333;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar {
  background-color: #f38ba0;
}
.navbar-brand {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: white !important;
}

/* Headings */
h2,
h3,
h4 {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  color: #f38ba0;
}

/* Card */
.card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  transition: transform 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
}

/* Buttons */
.btn-primary {
  background-color: #f38ba0;
  border: none;
  border-radius: 12px;
}
.btn-primary:hover {
  background-color: #d36a83;
}

/* Gimmick card */
.card-gimmick {
  background: linear-gradient(135deg, #f38ba0, #f79abc);
  color: #fff;
  border-radius: 20px;
}
.gimmick-emoji {
  font-size: 2rem;
  line-height: 1;
}
.gimmick-text {
  font-weight: 600;
}

/* Progress */
.progress {
  height: 18px;
  border-radius: 10px;
  background-color: #f2a7b9;
}
.progress-bar {
  background-color: #ff7fa1;
  border-radius: 10px;
  transition: width 0.6s ease;
}

/* Footer */
footer {
  text-align: center;
  padding: 16px;
  background-color: #f38ba0;
  color: #fff;
  border-radius: 16px 16px 0 0;
}

/* Animations */
.fade-in {
  animation: fadeIn 0.8s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Floating hearts */
#heartsContainer {
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 9999;
}
.heart {
  position: absolute;
  font-size: 18px;
  animation: floatUp 1.8s ease-out forwards;
  opacity: 0.9;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.12));
}
@keyframes floatUp {
  0% {
    transform: translateY(0) scale(0.9);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(-120px) scale(1.3);
    opacity: 0;
  }
}

/* History items */
.list-group-item {
  border: none;
}
.list-group-item + .list-group-item {
  border-top: 1px dashed #f3d1da;
}

/* Small helper */
.text-muted {
  color: #6b6b6b !important;
}
