/* ============================================
   ACTIVITY PAGES — lead, price cards, FAQ, CTA
   Generic components shared by /aktiviteter/*.
   Currently used by: bowling
   ============================================ */

.act-wrap {
  max-width: 1080px;
  margin: 0 auto;
}

/* --- Lead / intro --- */
.act-lead {
  background: linear-gradient(150deg, #fbfdfd 0%, #f2f8f9 100%);
  border: 1px solid rgba(2, 170, 176, 0.16);
  border-radius: 18px;
  padding: 32px 32px 28px;
  text-align: center;
}

.act-lead p {
  font-family: var(--font__text);
  font-size: 17px;
  line-height: 1.75;
  color: #435157;
  margin: 0 auto;
  max-width: 720px;
}

.act-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.act-fact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 17px;
  background: #fff;
  border: 1px solid rgba(2, 170, 176, 0.22);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(25, 40, 50, 0.04);
}

.act-fact em {
  flex: none;
  font-style: normal;
  font-size: 17px;
  line-height: 1;
}

.act-fact span {
  font-family: var(--font__text);
  font-size: 14px;
  line-height: 1.3;
  color: #3d4a4e;
}

/* --- Section headings --- */
.act-section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 52px 0 24px;
}

.act-section-head h2 {
  font-family: var(--font__primary);
  font-size: 30px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0;
  color: #16292c;
  white-space: nowrap;
}

.act-section-head::after {
  content: "";
  flex: 1 1 auto;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(2, 170, 176, 0.5), rgba(2, 170, 176, 0));
}

.act-section-head .act-tag {
  font-family: var(--font__text);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7d8c91;
  padding: 5px 12px;
  border: 1px solid rgba(2, 170, 176, 0.28);
  border-radius: 999px;
  white-space: nowrap;
}

/* --- Price cards --- */
.act-prices {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
}

.act-price {
  position: relative;
  overflow: hidden;
  padding: 26px 20px 22px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(20, 35, 40, 0.09);
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(25, 40, 50, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.act-price::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #02aab0, #00d3dd, #02aab0);
}

.act-price:hover {
  transform: translateY(-5px);
  border-color: rgba(2, 170, 176, 0.4);
  box-shadow: 0 20px 40px rgba(25, 40, 50, 0.14);
}

.act-price__days {
  display: block;
  font-family: var(--font__text);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #61737a;
  margin-bottom: 8px;
}

.act-price__amount {
  display: block;
  font-family: var(--font__primary);
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0.5px;
  color: #10333a;
}

.act-price__amount i {
  font-style: normal;
  font-size: 26px;
  letter-spacing: 0;
  color: #02aab0;
  margin-left: 1px;
}

.act-price__unit {
  display: block;
  margin-top: 8px;
  font-family: var(--font__text);
  font-size: 13px;
  color: #7d8c91;
}


/* --- Small notes under a section --- */
.act-notes {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.act-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 17px;
  background: #f8fafb;
  border: 1px solid rgba(20, 35, 40, 0.07);
  border-left: 3px solid rgba(2, 170, 176, 0.55);
  border-radius: 11px;
  font-family: var(--font__text);
  font-size: 14.5px;
  line-height: 1.6;
  color: #4a585c;
}

.act-note svg {
  flex: none;
  width: 17px;
  height: 17px;
  margin-top: 2px;
}

/* --- FAQ accordion --- */
.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(20, 35, 40, 0.09);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(25, 40, 50, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item[open] {
  border-color: rgba(2, 170, 176, 0.38);
  box-shadow: 0 12px 30px rgba(25, 40, 50, 0.1);
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 22px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

/* Hide the native disclosure triangle — we draw our own chevron */
.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::marker {
  content: "";
}

.faq-q:hover .faq-text {
  color: #02898f;
}

.faq-emoji {
  flex: none;
  font-size: 21px;
  line-height: 1;
}

.faq-text {
  flex: 1 1 auto;
  font-family: var(--font__primary);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0.6px;
  color: #16292c;
  transition: color 0.2s ease;
}

.faq-chevron {
  flex: none;
  width: 19px;
  height: 19px;
  color: #02aab0;
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 22px 20px 57px;
  font-family: var(--font__text);
  font-size: 15.5px;
  line-height: 1.78;
  color: #48565b;
  animation: faqReveal 0.24s ease;
}

.faq-a a {
  color: #01858a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-a a:hover {
  color: #016e72;
}

@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-a {
    animation: none;
  }
}

/* --- Closing CTA --- */
.act-cta {
  margin-top: 44px;
  padding: 38px 30px 34px;
  border-radius: 18px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #1e2326 0%, #2f3639 55%, #191d1f 100%);
  box-shadow: 0 16px 36px rgba(25, 40, 50, 0.2);
}

.act-cta h2 {
  font-family: var(--font__primary);
  font-size: 32px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: #fff;
}

.act-cta p {
  font-family: var(--font__text);
  font-size: 16px;
  line-height: 1.7;
  color: #c3cdd0;
  margin: 0 auto 24px;
  max-width: 560px;
}

.act-cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.act-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border: none;
  appearance: none;
  cursor: pointer;
  border-radius: 12px;
  font-family: var(--font__primary);
  font-size: 21px;
  letter-spacing: 1.6px;
  text-decoration: none !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, filter 0.22s ease;
}

.act-btn svg {
  width: 17px;
  height: 17px;
  flex: none;
}

.act-btn--solid {
  background: linear-gradient(135deg, #02aab0, #018c92);
  color: #fff !important;
}

.act-btn--solid:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(2, 170, 176, 0.4);
  color: #fff !important;
}

.act-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff !important;
}

.act-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
  color: #fff !important;
}

.act-cta__outro {
  margin: 30px 0 0;
  font-family: var(--font__text);
  font-size: 15px;
  color: #9fadb2;
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .act-lead {
    padding: 26px 20px 24px;
  }

  .act-lead p {
    font-size: 16px;
  }

  /* Long headings ("Vad kostar det att bowla?") must wrap rather than
     overflow, so the heading takes the full row and the rule drops below. */
  .act-section-head {
    flex-wrap: wrap;
    gap: 12px;
    margin: 40px 0 20px;
  }

  .act-section-head h2 {
    flex: 1 1 100%;
    font-size: 26px;
    white-space: normal;
  }

  .act-section-head .act-tag {
    display: none;
  }

  .act-cta {
    padding: 30px 20px 28px;
  }

  .act-cta h2 {
    font-size: 27px;
  }

  .act-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .act-lead {
    border-radius: 14px;
  }

  .act-fact {
    padding: 9px 14px;
  }

  .act-fact span {
    font-size: 13.5px;
  }

  .act-price__amount {
    font-size: 42px;
  }

  .faq-q {
    padding: 15px 17px;
    gap: 11px;
  }

  .faq-text {
    font-size: 20px;
  }

  .faq-a {
    padding: 0 17px 18px 17px;
    font-size: 15px;
  }
}

/* ============================================
   Additional components
   ============================================ */

/* --- Numbered steps (rules, instructions) --- */
.act-steps {
  counter-reset: act-step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.act-steps li {
  counter-increment: act-step;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid rgba(20, 35, 40, 0.09);
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(25, 40, 50, 0.04);
}

.act-steps li::before {
  content: counter(act-step);
  flex: none;
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #02aab0, #018c92);
  color: #fff;
  font-family: var(--font__primary);
  font-size: 16px;
  line-height: 1;
  padding-top: 2px;
}

.act-steps li span {
  font-family: var(--font__text);
  font-size: 15.5px;
  line-height: 1.7;
  color: #48565b;
}

/* --- Tag grid (game lists and similar) --- */
.act-tags {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.act-tag-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid rgba(20, 35, 40, 0.09);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(25, 40, 50, 0.04);
  transition: border-color 0.22s ease, transform 0.22s ease;
}

.act-tag-item:hover {
  border-color: rgba(2, 170, 176, 0.4);
  transform: translateY(-2px);
}

.act-tag-item svg {
  flex: none;
  width: 17px;
  height: 17px;
}

.act-tag-item > span {
  flex: 1 1 auto;
  font-family: var(--font__text);
  font-size: 15px;
  line-height: 1.4;
  color: #3d4a4e;
}

.act-tag-item b {
  flex: none;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
}

/* --- Package cards --- */
.act-packs {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.act-pack {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(20, 35, 40, 0.09);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(25, 40, 50, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.act-pack:hover {
  transform: translateY(-6px);
  border-color: rgba(2, 170, 176, 0.4);
  box-shadow: 0 22px 44px rgba(25, 40, 50, 0.16);
}

.act-pack__head {
  position: relative;
  padding: 22px 24px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1e2326 0%, #2f3639 55%, #191d1f 100%);
  color: #fff;
}

.act-pack__head::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #02aab0, #00d3dd, #02aab0);
}

.act-pack__emoji {
  display: block;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 10px;
}

.act-pack__title {
  font-family: var(--font__primary);
  font-size: 27px;
  line-height: 1.12;
  letter-spacing: 1px;
  margin: 0;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.act-pack__sub {
  display: block;
  margin-top: 7px;
  font-family: var(--font__text);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6fdfe4;
}

.act-pack__price {
  padding: 18px 16px 16px;
  text-align: center;
  background: #f7fbfb;
  border-bottom: 1px solid rgba(2, 170, 176, 0.16);
}

.act-pack__list {
  flex: 1 1 auto;
  list-style: none;
  margin: 0;
  padding: 18px 24px 22px;
}

.act-pack__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 10px 0;
  border-bottom: 1px solid #f1f4f4;
  font-family: var(--font__text);
  font-size: 15px;
  line-height: 1.55;
  color: #3d4a4e;
}

.act-pack__list li:last-child {
  border-bottom: none;
}

.act-pack__list svg {
  flex: none;
  width: 17px;
  height: 17px;
  margin-top: 3px;
}

/* --- Link / download rows --- */
.act-links {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.act-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid rgba(20, 35, 40, 0.09);
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(25, 40, 50, 0.04);
  text-decoration: none !important;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.act-link:hover {
  border-color: rgba(2, 170, 176, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(25, 40, 50, 0.1);
}

.act-link svg {
  flex: none;
  width: 22px;
  height: 22px;
  color: #02aab0;
}

.act-link span {
  font-family: var(--font__text);
  font-size: 15.5px;
  line-height: 1.4;
  color: #2d3a3e;
}

.act-link small {
  display: block;
  font-size: 13px;
  color: #8b989d;
}

/* --- Bullet list inside a FAQ answer --- */
.faq-ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.faq-ul li {
  padding: 4px 0;
}

/* --- Figure / map image --- */
.act-figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(20, 35, 40, 0.09);
  box-shadow: 0 4px 18px rgba(25, 40, 50, 0.07);
}

.act-figure img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 575px) {
  .act-tags {
    grid-template-columns: 1fr;
  }

  .act-steps li {
    padding: 12px 14px;
    gap: 11px;
  }

  .act-pack__head {
    padding: 18px 18px 16px;
  }

  .act-pack__list {
    padding: 16px 18px 20px;
  }
}

/* A lone price or package card should not stretch the full content width. */
.act-prices--single,
.act-packs--single {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.act-packs--single {
  max-width: 520px;
}

/* The landing page shows the grid without the divider/top spacing that the
   bottom-of-page version needs. */
.act-more--flush {
  margin-top: 44px;
  padding-top: 0;
  border-top: none;
}
