/* ─── Hero Background Calendar (Agenda Style) ────────────────── */
.hero-bg-calendar {
  position: absolute;
  top: 15%;
  right: -5%;
  width: 500px;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0.25;
  pointer-events: none;
  filter: blur(20px);
}

.hero-bg-calendar .cal-layer {
  animation: calendarIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-bg-calendar .cal-top {
  width: 400px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 20px 20px 0 0;
  margin-bottom: 15px;
  opacity: 0.8;
}

.hero-bg-calendar .cal-grid {
  width: 400px;
  height: 260px;
  background: transparent;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
}

.hero-bg-calendar .cal-grid span {
  background: var(--primary-color);
  border-radius: 8px;
  opacity: 0.6;
}

@keyframes calendarIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(1.1) perspective(1000px) rotateX(15deg) rotateY(-10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) perspective(1000px) rotateX(15deg) rotateY(-10deg);
  }
}

html[data-theme="dark"] .hero-bg-calendar {
  opacity: 0.35;
}
