/* ===== RESET ===== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #0b0b0b;
  color: #eaeaea;
}

/* ===== MAIN ===== */
main {
  width: 100%;
  min-height: 100vh;
  padding-top: 70px; /* plads til fixed menu */
}

/* ===== HERO (forside) ===== */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #0b0b0b;
  position: relative;
}

.hero-link {
  display: block;
  text-decoration: none;
}

.hero img {
  max-width: 90%;
  max-height: 90vh;
  width: auto;
  height: auto;
  display: block;
}

/* ===== ENTER LINK ===== */
.hero-menu {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
}

.hero-menu a {
  color: #eaeaea;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 2px;
  opacity: 0.6;
  transition: 0.3s ease;
}

.hero-menu a:hover {
  opacity: 1;
}

/* ===== NAV (top menu) ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 30px;
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid #222;
  z-index: 1000;
}

nav a {
  color: #eaeaea;
  text-decoration: none;
  margin-right: 24px;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: 0.2s ease;
}

nav a:hover {
  opacity: 1;
}

/* ===== CONTENT (undersider) ===== */
.content {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 30px 60px;
  line-height: 1.6;
}

.content h1 {
  margin-top: 0;
  font-size: 2.2rem;
}

.content h2 {
  margin-top: 40px;
}

.content ul {
  padding-left: 20px;
}
