/* Baslayout */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0a1b2a;
  color: #ffffff;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: #0a1b2a;
}

header img {
  height: 80px;
}

nav {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
}

nav a {
  color: #66e0dd;
  text-decoration: none;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  background: #66e0dd;
  margin: 4px 0;
  height: 3px;
  width: 25px;
  border-radius: 2px;
}

.hero {
  display: grid;
  place-items: center;
  padding: 6rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #66e0dd;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero a {
  background-color: #66e0dd;
  color: #0a1b2a;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #999;
}

/* Mobilanpassning */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background-color: #0a1b2a;
    position: absolute;
    top: 100px;
    right: 2rem;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
    justify-self: end;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.product {
  background: #ffffff10;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: left;
  color: #ffffff;
}

.product h2 {
  margin-top: 0.5rem;
  color: #66e0dd;
}

.product strong {
  color: #ffffff;
}

.product-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 1rem;
}