@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Times New Roman";
  background-color: black;
  color: white;
}

/*------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------*/
/* HEADER */
/*------------------------------------------------------------------------------------------------------------*/
.landing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: black;
}
.landing-header__logo {
  font-size: 24px;
  font-weight: bold;
  color: white;
}
.landing-header__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.landing-header__login {
  background: #facc15;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  transition: opacity 0.2s;
}
.landing-header__login:hover {
  opacity: 0.9;
}

/*------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------*/
/* HERO */
/*------------------------------------------------------------------------------------------------------------*/
.hero {
  height: 600px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 80%, #000 100%), url("images/starwars02.jpg");
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}
.hero__content {
  max-width: 800px;
}
.hero__title {
  font-size: 64px;
  font-weight: bold;
  margin-bottom: 20px;
}
.hero__subtitle {
  font-size: 24px;
  margin-bottom: 20px;
}
.hero__text {
  font-size: 18px;
  margin-bottom: 30px;
}
.hero__form {
  display: flex;
  justify-content: center;
}
.hero__form input {
  padding: 16px;
  width: 350px;
  border: none;
  outline: none;
  font-size: 16px;
}
.hero__form button {
  background: #facc15;
  border: none;
  padding: 16px 28px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
}

/*------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------*/
/* PLANER ATT KÖPA*/
/*------------------------------------------------------------------------------------------------------------*/
.plans {
  padding: 60px 5%;
  background: #000;
  text-align: center;
}
.plans__grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.plan-card {
  background: white;
  color: black;
  padding: 40px 20px;
  border-radius: 8px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan-card.premium {
  border: 2px solid #3b82f6;
}
.plan-card .badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #3b82f6;
  color: white;
  font-size: 11px;
  padding: 5px;
  border-radius: 6px 6px 0 0;
}
.plan-card h3 {
  font-size: 24px;
  margin: 15px 0;
}
.plan-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: auto;
}
.plan-card ul li {
  margin: 10px 0;
  font-size: 14px;
}
.plan-card .price {
  font-size: 28px;
  font-weight: bold;
  margin: 20px 0;
}
.plan-card .price span {
  font-size: 14px;
  color: #666;
}
.plan-card button {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 12px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}
.plan-card button:hover {
  background: #2563eb;
}

/*------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------*/
/* POPULAR / TRENDING */
/*------------------------------------------------------------------------------------------------------------*/
.popular {
  padding: 60px;
  background-color: black;
  color: white;
}
.popular__title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}
.popular__row {
  display: flex;
  gap: 10px;
  width: 100%;
}
.popular__row img {
  width: 100%;
  flex: 1;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s, flex 0.3s;
  cursor: pointer;
}
.popular__row img:hover {
  transform: scale(1.05);
  flex: 1.2;
}

/*------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------*/
/* FAQ - BOX */
/*------------------------------------------------------------------------------------------------------------*/
.faq {
  max-width: 800px;
  margin: auto;
  color: white;
}

.faq-box {
  margin-bottom: 5px;
}

.faq-btn {
  width: 100%;
  background: #2d2d2d;
  color: white;
  padding: 20px;
  border: none;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-title {
  margin: 15px;
  text-decoration: none;
  text-align: center;
}

.faq-text {
  background: #2d2d2d;
  max-height: 0; /* Dold som standard */
  overflow: hidden;
  transition: 0.3s ease; /* Gör animationen mjuk */
}

/* Denna klass läggs till med JS */
.faq-box.open .faq-text {
  max-height: 200px; /* Visar texten */
  margin-top: 1px;
  padding: 10px;
}

/*------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------*/
/* RESPONSIVE */
/*------------------------------------------------------------------------------------------------------------*/
@media (max-width: 900px) {
  .hero__title {
    font-size: 40px;
  }
  .hero__form {
    flex-direction: column;
    gap: 10px;
  }
  .hero__form input {
    width: 100%;
  }
  .popular__row {
    flex-direction: column;
    width: 100%;
  }
}
/*------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------------------*//*# sourceMappingURL=start.css.map */