/* -------------------------------
   ZEITRAFFERIN – minimalist blog theme
   clean, bright, expressive
---------------------------------- */

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
header {
  border-bottom: 1px solid #eee;
  padding: 2rem 0 1.2rem;
  text-align: center;
}

.site-title {
  font-family: "Oswald", sans-serif;
  font-size: 2.8rem;
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    #ff5bb3,
    #ffdb3a,
    #00bfae,
    #2b33ff,
    #ff5bb3
  );
  background-size: 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: neonShift 8s linear infinite;
}

@keyframes neonShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


nav {
  margin-top: 0.6rem;
}

nav a {
  margin: 0 0.8rem;
  text-decoration: none;
  color: #555;
  font-weight: 500;
  font-size: 0.9rem;
}

nav a:hover {
  color: #00bfae; /* Türkis-Akzent */
}

/* Intro */
.intro {
  text-align: center;
  margin: 3rem 0 4rem;
}

.intro h2 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: #0f1724;
  margin-bottom: 0.6rem;
}

.intro p {
  color: #555;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Articles */
.articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

article {
  background-color: #fbfdff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  padding: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

article:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
}

article img {
  width: 100%;
  border-radius: 8px;
  height: 180px;
  object-fit: cover;
}

article h3 {
  font-family: "Oswald", sans-serif;
  color: #2b33ff;
  font-size: 1.2rem;
  margin-top: 0.8rem;
}

article p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 1rem;
}

.readmore {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  background: linear-gradient(90deg, #00bfae, #ff5bb3);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
}

.readmore:hover {
  background: linear-gradient(90deg, #ffdb3a, #ff5bb3);
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #eee;
  margin-top: 4rem;
  padding: 1.5rem 0;
}

/* Responsive tweaks */
@media (max-width: 700px) {
  .site-title { font-size: 2.2rem; }
  .intro h2 { font-size: 1.4rem; }
}
