/* HERO */
.hero {
  min-height: 60vh; /* eller 100vh hvis du vil */
  display: flex;
  align-items: center; /* centrer vertikalt */
}

/* BAGGRUND */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

/* CONTENT */
.hero-content {
  z-index: 2;
  width: 100%;
}

/* TAGS */






.skill-tag {
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 6px; /* mindre rund */

  background: #2c2c2c; /* mørk baggrund */
  color: #fff;

  border: 1px solid rgba(255,255,255,0.1);

  text-decoration: none;
  transition: background 0.2s ease, border 0.2s ease;
}

/* LEVEL */
.skill-tag span {
  margin-left: 4px;
  color: #bbb;
  font-size: 12px;
}

/* HOVER */
.skill-tag:hover {
  background: #f28c38;
  border-color: #f28c38;
  color: #fff;
}

.skill-tag:hover span {
  color: #fff;
}












/* BUTTON FIX */
a.btn.btn-warning.text-white.me-2 {
  background-color: #f28c38;
  border-color: #f28c38;
}

a.btn.btn-warning.text-white.me-2:hover {
  background-color: #e57725;
  border-color: #e57725;
}