/* style.css */

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(rgba(224, 228, 255, 1), rgba(226, 167, 168, 1));
  color: #111;
}

header {
  margin-bottom: 2rem;
}

header img {
  max-width: 500px;
  height: auto;
}

main {
  background-color: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 1000px;
}

h1, h2 {
  text-align: center;
  color: #222;
  margin-bottom: 1rem;
}

p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

ul {
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}

ul li {
  margin-bottom: 0.5rem;
}

.produkte-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.produkte-columns ul {
  flex: 1;
  min-width: 280px;
}

.bilderreihe {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.bilderreihe img {
  width: 200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #333;
}

footer img {
  display: block;
  margin: 0.5rem auto 0;
  max-width: 200px;
  height: auto;
}

/* Drehende Logo-Animation */
.rotating-logo {
  animation: rotateLogo 20s linear infinite;
  display: block;
  margin: 0 auto;
}

@keyframes rotateLogo {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}