/*
 * fuglelyde.dk — Mit Fugledæk (deck.css)
 * Modern Nordic Minimalist Personal Collection
 */

@import url('cards.css');

/* =========================================================
   DECK PROGRESS + STATS BANNER
   ========================================================= */
.deck-summary-banner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Progress line */
.deck-progress-container {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--r-card);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.deck-progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.deck-progress-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.deck-progress-percent {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--pine);
}

.deck-progress-track {
  width: 100%;
  height: 6px;
  background: var(--bg-subtle);
  border-radius: var(--r-pill);
  overflow: hidden;
  position: relative;
}

.deck-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: var(--pine);
  border-radius: var(--r-pill);
  transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Stat cards grid */
.deck-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.deck-stat-box {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--r-btn);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.deck-stat-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.stat-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-val {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-main);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

/* =========================================================
   DECK EMPTY STATE
   ========================================================= */
.deck-empty-state {
  max-width: 480px;
  margin: 40px auto;
  text-align: center;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--r-card);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.empty-icon {
  font-size: 3rem;
  line-height: 1;
}

.empty-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-main);
}

