/* ========================================================
   Tolk meg — Forsida (index.html)
   Den første sida alle ser
   ======================================================== */

/* Bakgrunn — grønn gradient */
body.forside {
  background: linear-gradient(180deg, #2d5a3d 0%, #1a3826 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Hovedflate */
.forside-innhold {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 24px;
}

/* === Logo === */
.logo-omr {
  margin-bottom: 36px;
}

.logo-sirkel {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--grønn-svak);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.06),
    0 0 0 16px rgba(255, 255, 255, 0.03),
    0 12px 32px rgba(0, 0, 0, 0.2);
}

.logo-blad {
  font-size: 48px;
}

/* === Hovedtekst === */
.hoved-tekst {
  text-align: center;
  color: white;
}

.tittel-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 12px;
}

.hoved-tittel {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hoved-undertekst {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  opacity: 0.85;
  margin-bottom: 36px;
  padding: 0 8px;
}

/* === Logg inn-knapp === */
.logg-inn-knapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--grønn-mørk);
  color: white;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s;
  text-decoration: none;
  min-width: 240px;
}

.logg-inn-knapp:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.logg-inn-knapp:active {
  transform: scale(0.98);
}

.knapp-pil {
  font-size: 16px;
}

.info-tekst {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px;
  opacity: 0.7;
  margin-top: 16px;
}

/* === Mobil-tilpasning === */
@media (max-width: 360px) {
  .logo-sirkel {
    width: 80px;
    height: 80px;
  }

  .logo-blad {
    font-size: 40px;
  }

  .hoved-tittel {
    font-size: 32px;
  }
}
