body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b0b0b;
  color: #fff;
}

/* HEADER */
header {
  background: #000;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav strong {
  margin-right: 20px;
  color: #fff;
  transition: 0.2s;
}

/* ðŸ”¥ logo groen als actief */
.logo.active img {
  filter: drop-shadow(0 0 5px #2ecc71);
}

nav a {
  color: #fff;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
}

nav a:hover {
  background: #222;
}

nav a.active {
  background: #2ecc71;
  color: #000;
}

/* CONTAINER */
.container {
  padding: 20px;
}

/* GRID */
#list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* CARD */
.card {
  background: #1a1a1a;
  padding: 15px;
  border-radius: 10px;

  display: grid;
  grid-template-rows: 2.6em auto 1fr;
  height: 100%;
}

/* TITEL */
.card h3 {
  margin: 0 0 10px 0;

  color: #2ecc71;
  font-size: 18px;
  line-height: 1.2;

  height: 2.6em;
  overflow: hidden;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* AFBEELDING */
.main-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* TEKST */
.card p {
  margin: 4px 0;
  line-height: 1.2;
}

/* BUTTON */
button {
  background: #2ecc71;
  border: none;
  padding: 10px;
  margin-top: 10px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

.form-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 10px 15px;
  max-width: 600px;
}

.form-grid label {
  text-align: right;
  padding-top: 6px;
  color: #aaa;
  font-size: 14px;
}

.form-grid input {
  width: 100%;
  padding: 6px;
  border-radius: 4px;
  border: none;
}
/* LOGIN minder opvallend maken */
nav a[href*="login"] {
  color: #888;          /* donker/grijs */
  background: transparent !important;
}

nav a[href*="login"]:hover {
  background: transparent !important;
  color: #aaa;
}

/* LOGIN altijd zwart en rustig */
nav a[href*="login"] {
  color: #000 !important;
  background: transparent !important;
}

/* hover = geen effect */
nav a[href*="login"]:hover {
  color: #000 !important;
  background: transparent !important;
}

/* actief = ook zwart, geen groen */
nav a[href*="login"].active {
  color: #000 !important;
  background: transparent !important;
}

.card {
  border: 1px solid rgba(46, 204, 113, 0.5);
}

.card:hover {
  box-shadow: 0 0 8px rgba(46, 204, 113, 0.4);
}

/* LOGO */
.logo img {
  height: 40px;      /* ?? pas aan naar smaak (30–50) */
  display: block;
}

/* zorgt dat hij netjes uitlijnt */
nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* logo glow als actieve pagina */
.logo.active img {
  filter: drop-shadow(0 0 6px #2ecc71);
}