/* ============================================
   Park Amusement AS — stilark
   Lys, ren og moderne design + tema per underside
   ============================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --bg-card: #ffffff;
  --text: #1a2333;
  --text-soft: #56637a;
  --accent: #e8542f;        /* energisk oransje-rød */
  --accent-dark: #c93f1e;
  --accent-soft: #fdeee9;
  --blue: #1e5aa8;
  --blue-soft: #e8f0fa;
  --border: #e4e9f0;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(26, 35, 51, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 35, 51, 0.12);
  --maxw: 1160px;
}

/* Temafarger per underside */
body.theme-cube     { --accent:#1f7ae0; --accent-dark:#155cb0; --accent-soft:#e5f0fc; }
body.theme-megazone { --accent:#e02f2f; --accent-dark:#b31f1f; --accent-soft:#fde8e8; }
body.theme-prison   { --accent:#e88f2f; --accent-dark:#c46f15; --accent-soft:#fdf1e2; }
body.theme-minigolf { --accent:#12b5c9; --accent-dark:#0b8a9a; --accent-soft:#e2f7fa; }

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

img { max-width: 100%; display: block; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Språkvisning ----------
   Standard: norsk. html[data-lang="en"] viser engelsk. */
html[data-lang="no"] .en { display: none !important; }
html[data-lang="en"] .no { display: none !important; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 16px;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.logo:hover { text-decoration: none; }
.logo { display: flex; align-items: center; gap: 11px; }
.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
}
.logo-text span { color: var(--accent); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  color: var(--text-soft);
  font-weight: 500;
  font-size: 0.93rem;
  padding: 8px 11px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.main-nav a:hover { background: var(--bg-soft); color: var(--text); }
.main-nav a.active { background: var(--accent-soft); color: var(--accent-dark); }

/* Språkvelger */
.lang-switch {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}

.lang-switch button {
  border: none;
  background: transparent;
  padding: 7px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
  cursor: pointer;
  transition: all 0.15s ease;
}

.lang-switch button.active {
  background: var(--text);
  color: #fff;
}

/* Mobilmeny-knapp */
.menu-toggle {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--bg-soft) 0%, #eef3f9 60%, var(--accent-soft) 100%);
  padding: 90px 0 100px;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero .kicker {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(1.5deg);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* Sub-hero (undersider) */
.page-hero {
  background: linear-gradient(160deg, var(--bg-soft) 0%, #eef3f9 100%);
  padding: 70px 0 60px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 14px; }
.page-hero p {
  color: var(--text-soft);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto;
}
.page-hero .kicker {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 15px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* Mørk, neon-inspirert hero på produktsidene */
.page-hero.dark {
  background:
    radial-gradient(900px 420px at 50% -10%, color-mix(in srgb, var(--accent) 50%, transparent), transparent 72%),
    linear-gradient(160deg, #0c1322 0%, #141d31 100%);
  padding: 84px 0 74px;
}
.page-hero.dark h1 {
  color: #fff;
  text-shadow: 0 0 28px color-mix(in srgb, var(--accent) 65%, transparent);
  letter-spacing: 1px;
}
.page-hero.dark p { color: rgba(255,255,255,0.78); }
.page-hero.dark .kicker {
  background: color-mix(in srgb, var(--accent) 22%, transparent);
  color: color-mix(in srgb, var(--accent) 55%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
}
.page-hero.dark h1::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  border-radius: 4px;
  margin: 22px auto 0;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
}

/* ---------- Knapper ---------- */
.btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.18s ease;
  cursor: pointer;
  border: none;
}
.btn:hover { text-decoration: none; }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 35%, transparent); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
  padding: 12px 28px;
}
.btn-secondary:hover { background: var(--text); color: #fff; transform: translateY(-2px); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Seksjoner ---------- */
section { padding: 80px 0; }
section.soft { background: var(--bg-soft); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 14px; }
.section-head p { color: var(--text-soft); font-size: 1.05rem; }

/* ---------- Kort ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.card .card-img { height: 210px; overflow: hidden; background: var(--bg-soft); }
.card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.card:hover .card-img img { transform: scale(1.05); }

.card .card-body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: 0.97rem; flex: 1; }
.card .card-link {
  margin-top: 18px;
  font-weight: 600;
  color: var(--accent-dark);
  font-size: 0.95rem;
}

/* Fargekant på produktkort på forsiden */
.card.edge-cube     { border-top: 4px solid #1f7ae0; }
.card.edge-megazone { border-top: 4px solid #e02f2f; }
.card.edge-prison   { border-top: 4px solid #e88f2f; }
.card.edge-minigolf { border-top: 4px solid #12b5c9; }
.card.edge-other    { border-top: 4px solid #e8542f; }

/* ---------- Feature-liste ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.feature .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.feature h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature p { color: var(--text-soft); font-size: 0.94rem; }

/* ---------- Tekst + bilde-rader ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse .split-text { order: 2; }
.split.reverse .split-img { order: 1; }

.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }

.split-text h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); margin-bottom: 16px; }
.split-text p { color: var(--text-soft); margin-bottom: 14px; }

.split-text ul { list-style: none; margin-top: 8px; }
.split-text ul li {
  padding: 8px 0 8px 34px;
  position: relative;
  color: var(--text-soft);
}
.split-text ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 7px;
  width: 24px;
  height: 24px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ---------- Statistikk ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 20px;
  box-shadow: var(--shadow);
}
.stat .num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat .label { color: var(--text-soft); font-size: 0.95rem; font-weight: 500; }

/* ---------- Sitat / testimonial ---------- */
.quote-box {
  background: var(--blue-soft);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.quote-box blockquote {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 16px;
}
.quote-box cite { color: var(--text-soft); font-style: normal; font-size: 0.95rem; }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.team-card .avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), var(--blue-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin: 0 auto 18px;
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card p { color: var(--text-soft); font-size: 0.9rem; }

/* ---------- Prosess-steg ---------- */
.steps { counter-reset: step; display: grid; gap: 18px; max-width: 760px; margin: 0 auto; }
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 24px 24px 84px;
  position: relative;
  box-shadow: var(--shadow);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 24px;
  top: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 { font-size: 1.05rem; margin-bottom: 5px; }
.step p { color: var(--text-soft); font-size: 0.94rem; }

/* ---------- CTA-banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--text) 0%, #2c3a52 100%);
  border-radius: 20px;
  padding: 60px 48px;
  text-align: center;
  color: #fff;
}
.cta-banner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.cta-banner p { color: rgba(255, 255, 255, 0.75); max-width: 560px; margin: 0 auto 30px; }

/* ---------- Galleri ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.gallery img {
  border-radius: var(--radius);
  width: 100%;
  height: 230px;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.gallery img:hover { transform: scale(1.03); }

/* ---------- Video med klikk-for-avspilling ---------- */
.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: #000;
  box-shadow: var(--shadow-lg);
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity 0.2s ease, transform 0.3s ease;
}
.video-thumb:hover img { opacity: 1; transform: scale(1.03); }
.video-thumb .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  box-shadow: 0 0 0 10px color-mix(in srgb, var(--accent) 35%, transparent), 0 8px 30px rgba(0,0,0,0.4);
  transition: transform 0.15s ease;
}
.video-thumb:hover .play-btn { transform: translate(-50%, -50%) scale(1.08); }
.video-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.yt-link {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 0.92rem;
  font-weight: 600;
}

/* ---------- Kontakt ---------- */
.contact-grid {
  max-width: 640px;
  margin: 0 auto;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-info-card h3 { margin-bottom: 18px; font-size: 1.25rem; }
.contact-info-card .info-row {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.contact-info-card .info-row:last-child { border-bottom: none; }
.contact-info-card .info-label { font-weight: 600; min-width: 120px; font-size: 0.92rem; }
.contact-info-card .info-value { color: var(--text-soft); font-size: 0.95rem; }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 16px 0 6px;
}
.contact-form label:first-of-type { margin-top: 0; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: var(--bg-soft);
  transition: border-color 0.15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
.contact-form button { margin-top: 22px; width: 100%; }

/* ---------- Tag-liste (andre produkter) ---------- */
.tag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.tag-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.2s ease;
}
.tag-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.tag-card .icon { font-size: 2rem; margin-bottom: 12px; }
.tag-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.tag-card p { color: var(--text-soft); font-size: 0.88rem; }

/* ---------- Lokasjonskort (minigolf) ---------- */
.location-card .card-body .meta {
  font-size: 0.85rem;
  color: var(--accent-dark);
  margin-bottom: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* ---------- Info-banner ---------- */
.notice {
  background: var(--accent-soft);
  border: 1.5px solid color-mix(in srgb, var(--accent) 30%, #ffffff);
  border-radius: var(--radius);
  padding: 22px 28px;
  text-align: center;
  color: var(--accent-dark);
  font-weight: 500;
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 30px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
.site-footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.site-footer .footer-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 14px;
}
.site-footer .footer-logo span { color: #e8542f; }
.site-footer p { font-size: 0.92rem; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 9px; }
.site-footer a { color: rgba(255, 255, 255, 0.75); font-size: 0.92rem; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Responsivt ---------- */
@media (max-width: 1020px) {
  .main-nav a { padding: 8px 8px; font-size: 0.88rem; }
}
@media (max-width: 960px) {
  .hero-inner, .split, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-text { order: 1; }
  .split.reverse .split-img { order: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 60px 0 70px; }
  section { padding: 60px 0; }

  .menu-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 14px; font-size: 1rem; }
}


/* ---------- Klikkbare kortbilder ---------- */
a.card-img { display: block; }

/* ---------- Teamfoto (når portretter er på plass) ---------- */
.team-card .photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  box-shadow: var(--shadow);
}
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Pariserhjul og animasjoner på forsiden ---------- */
.hero { position: relative; }
.hero-inner { position: relative; z-index: 1; }
.hero-ferris {
  position: absolute;
  right: 2%;
  bottom: -30px;
  width: min(440px, 38vw);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.hero-ferris .wheel {
  transform-origin: 210px 190px;
  transform-box: view-box;
  animation: ferris-spin 18s linear infinite;
}
@keyframes ferris-spin { to { transform: rotate(360deg); } }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero .kicker   { animation: fadeUp 0.6s ease both; }
.hero h1        { animation: fadeUp 0.6s 0.12s ease both; }
.hero p.lead    { animation: fadeUp 0.6s 0.24s ease both; }
.hero .btn-row  { animation: fadeUp 0.6s 0.36s ease both; }
.hero-img       { animation: fadeUp 0.7s 0.3s ease both, hero-float 7s 1s ease-in-out infinite; }
@keyframes hero-float {
  0%, 100% { transform: rotate(1.5deg) translateY(0); }
  50%      { transform: rotate(1.5deg) translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero .kicker, .hero h1, .hero p.lead, .hero .btn-row, .hero-img {
    animation: none;
  }
}
@media (max-width: 960px) {
  .hero-ferris { display: none; }
}


/* ---------- IAAPA-merke i footer ---------- */
.footer-iaapa {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 26px;
}
.footer-iaapa img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #fff;
}


/* E-post under teammedlem */
.team-card .team-mail {
  display: block;
  margin-top: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-dark);
  word-break: break-all;
}


