/* Icon system — joyful line icons */

.icon {
  width: 1.25em;
  height: 1.25em;
  display: inline-block;
  vertical-align: -0.2em;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn .icon {
  width: 1.1rem;
  height: 1.1rem;
}

.value-icon {
  width: 3.75rem;
  height: 3.75rem;
  margin: 0 auto 0.95rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.value-icon .icon {
  width: 1.65rem;
  height: 1.65rem;
  stroke-width: 2.2;
}

.value:nth-child(1) .value-icon { background: linear-gradient(145deg, #0288d1, #4fc3f7); }
.value:nth-child(2) .value-icon { background: linear-gradient(145deg, #ef6c00, #ffb74d); }
.value:nth-child(3) .value-icon { background: linear-gradient(145deg, #2e7d32, #81c784); }
.value:nth-child(4) .value-icon { background: linear-gradient(145deg, #c2185b, #f48fb1); }
.value:nth-child(5) .value-icon { background: linear-gradient(145deg, #f9a825, #ffe082); color: #5d4037; }

.activity {
  padding-bottom: 1.5rem;
}

.activity-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #fff;
  color: var(--pink);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.activity-badge .icon {
  width: 1.35rem;
  height: 1.35rem;
}

.activity[data-tone="heart"] .activity-badge { color: var(--pink); }
.activity[data-tone="teal"] .activity-badge { color: #00897b; }
.activity[data-tone="orange"] .activity-badge { color: var(--orange-deep); }
.activity[data-tone="blue"] .activity-badge { color: var(--blue); }
.activity[data-tone="green"] .activity-badge { color: var(--green-deep); }
.activity[data-tone="pink"] .activity-badge { color: #8e24aa; }

.activity h3,
.activity p,
.activity-label {
  padding-left: 0;
  max-width: calc(100% - 0.5rem);
}

.activity {
  padding-bottom: 3.6rem;
}

/* Quick links bar (mockup-style) */
.quick-bar {
  background: linear-gradient(90deg, #e3f2fd, #fce4ec 50%, #fff8e1);
  padding: 1.75rem 0;
  border-block: 1px solid rgba(2, 136, 209, 0.1);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius);
  transition: transform 0.2s var(--ease), background 0.2s;
}

.quick-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.7);
}

.quick-orb {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.quick-orb .icon {
  width: 1.45rem;
  height: 1.45rem;
}

.quick-item:nth-child(1) .quick-orb { background: linear-gradient(145deg, #ef6c00, #ffb74d); }
.quick-item:nth-child(2) .quick-orb { background: linear-gradient(145deg, #c2185b, #f48fb1); }
.quick-item:nth-child(3) .quick-orb { background: linear-gradient(145deg, #0288d1, #4fc3f7); }
.quick-item:nth-child(4) .quick-orb { background: linear-gradient(145deg, #2e7d32, #81c784); }

.quick-item span {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--blue-deep);
}

/* Doodles */
.doodle {
  position: absolute;
  pointer-events: none;
  opacity: 0.55;
  z-index: 1;
}

.hero .doodle-heart {
  left: 42%;
  top: 18%;
  width: 2rem;
  height: 2rem;
  color: #fff;
  animation: rise 1.2s var(--ease) 0.5s both;
}

.hero .doodle-star {
  left: 52%;
  top: 28%;
  width: 1.5rem;
  height: 1.5rem;
  color: #fff59d;
  animation: rise 1.2s var(--ease) 0.65s both;
}

.quote-strip {
  position: relative;
}

.quote-strip .doodle {
  opacity: 0.7;
}

.quote-strip .doodle-heart-l {
  left: max(1rem, 12%);
  top: 35%;
  width: 1.75rem;
  height: 1.75rem;
  color: var(--pink);
}

.quote-strip .doodle-heart-r {
  right: max(1rem, 12%);
  top: 40%;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--orange);
}

.nav-social a .icon {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
  fill: currentColor;
  stroke: none;
}

@media (max-width: 780px) {
  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero .doodle {
    display: none;
  }
}
