/* Grundlayout */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #fff;
  background: url('background.jpg') no-repeat center center/cover;
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 20px;
}

/* Navigering */
header {
  position: relative;
  z-index: 10;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
  text-decoration: none;
  color: #fff;
}

.menu {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.menu li a {
  text-decoration: none;
  color: #fff;
}

/* Hamburgarknapp för mobil */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
  }

  .menu.active {
    display: flex;
  }
}

/* Glas-effekt */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* STOR BLURRAD RUTA */
.glass-big {
  min-height: 1200px; /* Justera höjden vid behov */
  display: flex;
  align-items: center;
  justify-content: center; 
  margin-top: 200px;
}

/* Footer */
.glass-footer {
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 1rem;
  margin-top: 2rem;
}

/* Dold H1 för tillgänglighet */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

