body {
  background-color: #ffe6f0;
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
}

/* Navigaatio */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
  background: white;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Banneri */
.banner {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(60%);
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2.5rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: bold;
}

/* Tekstiosio */
.about {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
  line-height: 1.6;
  font-size: 1.1rem;
}

/* Mobiiliresponsiivisuus */
@media (max-width: 768px) {
  .banner-text {
    font-size: 1.8rem;
    padding: 8px 16px;
  }
  .about {
    font-size: 1rem;
  }

  /* Hamburger-valikko mobiilissa */
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: white;
    position: absolute;
    top: 60px;
    right: 10%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}
