@charset "UTF-8";
/*Variabler*/
/*Miksins*/
.hidden {
  display: none !important;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: url("../img/bg1.png") no-repeat center center;
  background-size: cover;
  color: #111;
  background-attachment: fixed;
  height: 100vh;
  overflow: hidden;
}

main {
  min-height: 100vh;
}

/* HERO */
.hero {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero .hero-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .hero-text {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 80%;
  color: #ffffff;
}
.hero .hero-text h1 {
  font-size: 60px;
  margin-bottom: 20px;
}
.hero .hero-text p {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 60px;
  color: #ffffff;
}

/*Interaktive*/
.game-content {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

/*View*/
.view {
  display: none;
  width: 100%;
  position: fixed;
}
.view.view--active {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100dvh;
  padding: 20px;
  box-sizing: border-box;
}

/*Card*/
.card {
  width: 100%;
  max-width: 800px;
  background: #f8f6f8;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  text-align: center;
  margin: 0 auto;
  box-sizing: border-box;
  vertical-align: middle;
}
.card ul {
  list-style: none;
  padding: 0;
}
.card ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 30px;
  font-size: 1.1rem;
}
.card ul li::before {
  content: "✔";
  color: #018638;
  font-weight: bold;
}

.situation-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto 20px;
}

.end-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto 20px;
}

.btn-primary {
  padding: 14px 36px;
  border-radius: 50px;
  border: 1px solid #ffffff;
  background: #018638;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn-primary:hover {
  background: #045e2a;
  transform: scale(1.05);
}

.btn-choice {
  display: block;
  width: 100%;
  padding: 14px 16px;
  margin-top: 10px;
  border-radius: 30px;
  border: solid gray 1px;
  background: #ffffff;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: 0.15s ease;
}
.btn-choice:hover {
  border: solid gray 3px;
  background-color: #d1f7d3;
  transform: translateY(-1px);
}

.reaction-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.reaction-box {
  width: 90%;
  max-width: 520px;
  background: #ffffff;
  border-radius: 24px;
  padding: 24px 22px 40px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}
.reaction-box img {
  width: 100%;
  max-width: 200px;
  margin-bottom: 16px;
}
.reaction-box p {
  margin-bottom: 30px;
}
.reaction-box .btn-primary {
  width: 50%;
  margin: 50px auto 0;
  display: block;
}
.reaction-box .btn-primary:hover {
  background-color: #045e2a;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .hero-text {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 30px;
  }
  .hero-text p {
    font-size: 1.2rem;
  }
  .card {
    padding: 24px 18px;
    border-radius: 18px;
  }
  .btn-choice {
    font-size: 0.95rem;
  }
}/*# sourceMappingURL=style.css.map */