/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

/* ===== BAGGRUND ===== */
body {
  background: url("bg.jpg") no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  margin: 0;
  line-height: 1.6;
  font-family: "Inter", sans-serif;
  color: #1b1b1b;
}

/* ===== WRAPPER ===== */
.wrapper {
  background-color: rgba(255, 255, 255, 0.95);
  width: 90%;
  max-width: 1100px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  margin: 2rem 0;
  overflow: hidden;
}

/* ===== HEADER ===== */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px 20px;
  text-align: center;
}

.logo {
  text-align: center;
}

.brand {
  font-family: "EB Garamond", serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
  color: #1c2f57;
}

.brand-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #5d6b84;
}

/* ===== CONTENT ===== */
.content {
  width: 800px;
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 20px 40px 60px;
}

/* ===== TYPOGRAFI ===== */
h1,
h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #1b1b1b;
}

h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5d6b84;
}

p,
a,
small,
span {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.1rem;
  color: #1b1b1b;
}

/* ===== BLOGTEKST ===== */
.blog-text p {
  font-family: "EB Garamond", serif;
  font-size: 1.35rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: #2e3440;
}

/* ===== LINJE ===== */
hr {
  width: 90px;
  margin: 2rem auto;
  border: none;
  border-top: 1px solid #d8dce3;
}

/* ===== KONTAKT ===== */
.contact-info {
  margin-top: 10px;
}

.contact-info p {
  margin-bottom: 1rem;
}

.contact-info a {
  color: #1c2f57;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  color: #666;
  text-decoration: underline;
}

/* ===== IKONER ===== */
.contact-info i {
  width: 24px;
  padding-right: 10px;
  color: #1c2f57;
}

/* ===== SIGNATUR ===== */
.signature {
  margin-top: 2rem;
  font-size: 1rem;
  color: #444;
}

/* ===== RESPONSIV ===== */
@media (max-width: 768px) {
  body {
    padding: 12px;
  }

  .wrapper {
    width: 100%;
    margin: 1rem 0;
    border-radius: 16px;
  }

  .header {
    padding: 35px 20px 10px;
  }

  .content {
    padding: 20px 20px 40px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1rem;
  }

  .blog-text p,
  p,
  a,
  span {
    font-size: 1rem;
  }

  .brand-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
  }
}