/* Hero section */
.hero-section {
  color: black;
  border-radius: 12px;
}

.hero-logo {
  height: 120px;
  user-select: none;
}

.brand-title {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  letter-spacing: 3px;
  font-weight: 700;
}

/* Stats */
.stat-card {
  background: white;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  cursor: pointer;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: rgb(255,45,85); /* pink accent */
}

.stat-label {
  font-size: 1.1rem;
  color: rgb(0,19,71);
}

/* todo: mss int ../layout de a style fixe, moet eerst zien dat we effectief nergens de echte nog hebben*/
a {
  text-decoration: none;
}

