﻿
/* Reset & grund */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;

  background-color: rgb(206, 213, 212);
  color: rgb(52, 65, 63);

}

/* Hero-bild */
.hero img {
  width: 100%;
  height: 60vh;       /* Tar 60% av skärmhöjden */
  object-fit: cover; /* Beskär snyggt utan att förvränga */
object-position: center bottom;   /* fokus åt vänster */
  display: block;
}

/* Innehåll */
.content {
  max-width: 900px;
  padding: 2rem 1rem;
  margin: 0 auto;
}

.content h1 {
  margin-bottom: 1rem;
}

.content p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Anpassning för större skärmar */
@media (min-width: 768px) {
  .hero img {
    height: 70vh;
  }

  .content {
    padding: 3rem 2rem;
  }

  .content p {
    font-size: 1.1rem;
  }
}



.bottom-section {
  max-width: 900px;

  display: flex;
  gap: 2rem;
  align-items: center;
}


.bottom-image {
  max-width: 200px;
  height: auto;
  display: block;
}


/* Mobilanpassning */
@media (max-width: 768px) {
  .bottom-section {
    flex-direction: column;
  }

  .bottom-image {
  max-width: 100px;
  height: auto;
  display: block;
}
  .bottom-text {
    width: 100%;
  }
}

