/* ============================================
   EventLay — Dashboard Styles
   ============================================ */
.dashboard {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
}
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.dashboard-header h1 {
  font-size: 28px;
  color: var(--heading);
}
.dashboard-header .subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}
.empty-state .icon { font-size: 48px; margin-bottom: 16px; }
.empty-state h3 { color: var(--heading); font-size: 20px; margin-bottom: 8px; }
.empty-state p { max-width: 400px; margin: 0 auto 24px; font-size: 14px; }

/* Project Grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.project-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(108,99,255,.15);
}
.project-card .thumb {
  width: 100%;
  height: 160px;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 32px;
  overflow: hidden;
}
.project-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-card .info {
  padding: 16px;
}
.project-card .info h3 {
  font-size: 16px;
  color: var(--heading);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.project-card .info .meta {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.project-card .info .meta .items-count {
  background: var(--surface2);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
}
.project-card .actions {
  padding: 0 16px 16px;
  display: flex;
  gap: 8px;
}
.project-card .actions button { font-size: 12px; }

/* HERO */
.hero {
  text-align: center;
  padding: 80px 20px 60px;
  max-width: 700px;
  margin: 0 auto;
}
.hero h1 { font-size: 48px; color: var(--heading); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.hero h1 span { background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 18px; color: var(--muted); margin-bottom: 32px; }
.hero .cta-row { display: flex; gap: 12px; justify-content: center; }

@media (max-width: 640px) {
  .hero h1 { font-size: 32px; }
  .project-grid { grid-template-columns: 1fr; }
}
