/* Fjern standardmarginer */
body, h1, h2, p {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Libre Baskerville', serif;
  overflow-x: hidden;
  background: #000;
}

/* === Parallax bakgrunn === */
#parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 300%;
  background-image: url(https://www.shadowscapes.com/picts_images/1119.jpg);
  background-size: cover;
  background-position: center top;
  z-index: -1;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

/* Grid-oppsett for ønskeboksene */
.box-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

/* Stil på hver boks */
.box {
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 10px;
  background-color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.box:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Bilde i boksen */
.box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Knapp/lenke i boksen */
.box a.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  font-size: 0.9em;
  transition: background-color 0.2s, transform 0.1s;
}

.box a.btn:hover {
  background-color: #f5f5f5;
  transform: translateY(-1px);
}

.box h2 {
  font-size: 1.2em;
  margin-bottom: 5px;
}

.box p {
  font-size: 0.95em;
}
