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

/* GRUND */
body {
  font-family: 'Inter', sans-serif;
  background: #F6F5F2;
  color: #2F2F2F;
  line-height: 1.7;
}

/* TYPOGRAFI */
h1, h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

p {
  max-width: 600px;
  margin-bottom: 1rem;
}

/* LAYOUT */
.section {
  padding: 90px 20px;
}

.section.compact {
  padding: 60px 20px;
}

.section.spacious {
  padding: 120px 20px;
}

.section.light {
  background: #ECEAE5;
}

.section h2 {
  margin-bottom: 1rem;
}

.section.light p {
  max-width: 520px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
.hero {
    background-position: center 25%;
  }
  h1 {
    font-size: 2.3rem;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 20px;
  }
}

/* HERO */
.hero {
  height: 90vh;
  background: url("images/1.jpeg") center 35% / cover no-repeat;
  position: relative;
}

.hero h1 {
  font-size: 3.5rem; /* om ni låg runt 3.2–3.3 */
  margin-bottom: 1rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(246,245,242,0.05) 0%,
    rgba(246,245,242,0.55) 55%,
    rgba(246,245,242,0.9) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  justify-content: flex-end;
  padding-bottom: 30px;
}

.tagline {
  font-size: 0.8rem;
  opacity: 0.75;
  letter-spacing: 0.15em;
}


/* KNAPP */
.btn {
  margin-top: 1.2rem;
      	display: inline-block;
  padding: 14px 30px;
  border: 1px solid #7A8F85;
  color: #2F2F2F;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #7A8F85;
  color: #ffffff;
}

/* BILDER */
img {
  width: 100%;
  height: auto;
  border-radius: 2px;
}

/* CITAT */
.quote {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  padding: 140px 20px;
  margin: 0;
  background: #F6F5F2;
}

.quote::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(0,0,0,0.1);
  margin: 40px auto 0;
}

/* KONTAKT */
.contact {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  transform: translateX(-1px);
}

.contact h2 {
  margin-bottom: 1.5rem;
}

.contact a {
  color: #2F2F2F;
  text-decoration: none;
  border-bottom: 1px solid #7A8F85;
}

.contact p {
  margin-bottom: 1.4rem;
}

.section.contact-section {
  padding-top: 60px;
  padding-bottom: 100px;
}

.social {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.social a {
  opacity: 0.85;
}

.social a:hover {
  opacity: 1;
}

