/* ===========================
   CSS lavet af: Sidse Marie Vilsgaard Hornstrup
   =========================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  font-family: "Times New Roman", serif;
  background: #f6f2ef;
  color: #4a3b3f;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===========================
   TOPBAR + NAV
   =========================== */
.topbar {
  background: linear-gradient(90deg, #7c1d35 0%, #b85a6c 55%, #d8a3b0 100%);
  color: #fff;
  padding: 34px 48px;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  box-shadow: 0 10px 35px rgba(124,29,53,0.35), inset 0 -8px 18px rgba(255,255,255,0.12);
}

.nav {
  background: linear-gradient(90deg, #7c1d35 0%, #b85a6c 55%, #d8a3b0 100%);
  color: #fff;
  padding: 34px 48px;
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  box-shadow: 0 10px 35px rgba(124,29,53,0.35), inset 0 -8px 18px rgba(255,255,255,0.08);
  position: relative;
  z-index: 2;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 180ms ease, letter-spacing 180ms ease;
  position: relative;
  z-index: 3;
}

.nav a:hover {
  background: rgba(255,255,255,0.14);
  letter-spacing: 0.6px;
}

/* ===========================
   MAIN
   =========================== */
.main {
  padding: 100px 60px;
  background: radial-gradient(circle at 30% 40%, #ffffff 0%, #f6f2ef 55%, #e9dfdb 100%);
  min-height: calc(100vh - 160px);
}

/* ===========================
   FORSIDE 
   =========================== */
.front-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.text {
  padding-left: 28px;
  border-left: 3px solid #7c1d35;
}

.text h1 {
  font-size: 3rem;
  color: #7c1d35;
  margin-bottom: 18px;
  letter-spacing: 1.3px;
}

.text p {
  font-size: 1.15rem;
  color: #4a3b3f;
  line-height: 1.9;
  max-width: 680px;
}

/* ===========================
   BILLEDER MED FADE
   =========================== */
.image-frame {
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: transparent;
  width: 100%;
  max-width: 520px;
  box-shadow:
    0 45px 120px rgba(124,29,53,0.28),
    0 20px 50px rgba(0,0,0,0.14),
    inset 0 0 50px rgba(255,255,255,0.06);
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 28%,
      rgba(124,29,53,0.82) 0%,
      rgba(184,90,108,0.56) 30%,
      rgba(216,163,176,0.28) 56%,
      rgba(255,255,255,0.0) 78%),
    radial-gradient(circle at 72% 72%,
      rgba(184,90,108,0.36) 0%,
      rgba(216,163,176,0.12) 40%,
      rgba(255,255,255,0.0) 85%);
  mix-blend-mode: multiply;
  filter: blur(12px);
}

.image-frame img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  max-width: 520px;
  border-radius: 22px;
  object-fit: cover;
  filter: contrast(1.06) saturate(1.08);
}

/* ===========================
   OM MIG 
   =========================== */
.facts {
  max-width: 900px;
  margin: 20px 0;
  padding: 24px;
  background: #ffffffcc;
  border-left: 3px solid #b85a6c;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.facts p {
  margin: 8px 0;
  font-size: 1.12rem;
  line-height: 1.8;
}

/* ===========================
   JOB & UDDANNELSE
   =========================== */
.strengths-main h1 {
  font-size: 3rem;
  color: #7c1d35;
  margin-bottom: 36px;
  letter-spacing: 1.3px;
  text-align: center;
}

.strengths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.strength-box {
  background: #ffffffcc;
  padding: 28px;
  border-left: 4px solid #b85a6c;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08), 0 0 40px rgba(124,29,53,0.12);
}

.strength-box h2 {
  color: #7c1d35;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.strength-box p {
  color: #4a3b3f;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===========================
   INTERESSER
   =========================== */
.experience-box {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffffcc;
  padding: 34px;
  border-left: 4px solid #b85a6c;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.experience-box h2 {
  color: #7c1d35;
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.experience-box p {
  color: #000;
  font-size: 1.12rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  text-align: center;
  padding: 28px;
  color: #7c1d35;
  font-weight: 600;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 980px) {
  .front-main { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .text { border-left: none; padding-left: 0; border-top: 3px solid #7c1d35; padding-top: 18px; }
  .image-frame { margin: 0 auto; max-width: 420px; }
  .strengths-grid { grid-template-columns: 1fr; max-width: 720px; }
  .main { padding: 60px 24px; }
}

@media (max-width: 520px) {
  .topbar { font-size: 1.6rem; padding: 22px 18px; }
  .nav { padding: 12px 18px; gap: 12px; font-size: 1.1rem; }
  .text h1 { font-size: 2rem; }
  .strength-box { padding: 20px; }
  .experience-box, .facts { padding: 18px; margin: 0 8px; }
}
