/* About section */

body {
  position: relative;
  min-height: 100vh; /* ensure it always fills screen */
  margin: 0;
}

/* blurred background image */
body::before {
  content: "";
  position: fixed; /* stays in place while scrolling */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/Thumbnails/blackTotem.webp")
    no-repeat center center / cover;
  filter: blur(8px) brightness(0.5); /* blur + dark overlay */
  z-index: -1; /* send it behind everything */
}

.artturi-about {
  color: white;
  padding: 2rem 1rem;
}

.image-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 1rem 0;
  max-width: 100%;
  margin: 0 auto;
}

.image-row img {
  width: 100%;
  max-width: 700px;
  height: auto;
  flex-shrink: 1;
}

h1 {
  line-height: 1.5;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.description {
  max-width: 1400px;
  font-size: 1rem;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  margin: auto;
  text-align: justify;
  padding-top: 2rem;
  padding-bottom: 2rem;
  line-height: 1.6;
  color: white;
}

.description h1 {
  font-family: "classico";
  font-size: 2.5rem;
}

.about-sivu {
  z-index: 1;
  min-height: 100vh;
  padding: 2rem 1rem;
  color: white;
}

.some {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 10px;
  margin-bottom: 50px;
}

.some img {
  width: 100px;
  height: auto;
}

.some-text {
  font-family: sans-serif;
  color: #41cc3f;
  font-size: 1.5rem;
}

/* Responsiivisuus */

@media (max-width: 1024px) {
  .image-row img {
    max-width: 45%;
  }

  .some img {
    width: 100px;
  }

  .description {
    font-size: 1.1rem;
    padding: 1rem;
  }

  h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  
  .image-row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .image-row img {
    max-width: 90%;
  }

  .description {
    font-size: 0.8rem;
    padding: 0 1rem;
  }

  h1 {
    font-size: 1.5rem;
    text-align: center;
  }

  .some {
    gap: 4rem;
    flex-wrap: wrap;
  }

  .some img {
    width: 80px;
  }
}

@media (max-width: 425px) {
  .image-row img {
    max-width: 100%;
  }

  .description {
    font-size: 0.9rem;
    padding: 0 1rem;
  }

  .description h1 {
    font-size: 1.5rem;
    text-align: center;
  }
}


.some {
  gap: 2rem;
}

.some img {
  width: 60px;
}

.some {
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.some img {
  width: 60px;
}
