Startseite

Zuletzt geändert von Lucas Meister am 2026/05/23 13:19

body, .dashboard-wrapper {
  font-family: 'Inter', sans-serif;
}

.dashboard-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 35px 25px;
}

/* Titel */
.title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.subtitle {
  color: #555;
  font-size: 15px;
  margin-bottom: 25px;
}

/* SEKTIONEN */
.section-title {
  font-size: 14px;
  font-weight: 700;
  margin: 25px 0 10px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* GRID */
.dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* KACHELN */
.tile {
  background: rgba(23, 115, 69, 0.82);
  border-radius: 18px;
  padding: 28px 22px;
  text-decoration: none !important;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  transition: all 0.25s ease;
}

.tile:hover {
  transform: translateY(-6px);
  background: rgba(23, 115, 69, 0.95);
  box-shadow: 0 14px 30px rgba(0,0,0,0.28);
}

.tile-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.tile-title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.tile-desc {
  font-size: 13px;
  opacity: 0.9;
  margin-top: 6px;
  text-align: center;
  line-height: 1.4;
}