/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212;
  color: #eee;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
header {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #d91e18, #55080e);
  box-shadow: 0 4px 15px rgba(217,30,24,0.6);
  color: white;
}

header h1 {
  font-weight: 900;
  font-size: 2.8rem;
  margin-bottom: 0.2rem;
}

header p {
  font-size: 1.2rem;
  font-style: italic;
  opacity: 0.8;
}

/* Main Container */
main {
  flex-grow: 1;
  max-width: 900px;
  margin: 2rem auto 3rem auto;
  padding: 0 1rem;
}

/* Sections */
section {
  margin-bottom: 3rem;
}

/* Bilderbereich */
.bike-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(217,30,24,0.7);
  display: block;
  margin: 0 auto;
}

/* Spezifikationen */
.specs ul {
  list-style: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.specs ul li {
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Galerie */
.gallery .grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.gallery .grid img {
  max-width: 30%;
  border-radius: 0.8rem;
  box-shadow: 0 6px 20px rgba(217,30,24,0.5);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery .grid img:hover {
  transform: scale(1.05);
}

/* Kommentare */
.comments p {
  margin-bottom: 1rem;
  font-style: italic;
  color: #ccc;
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: #aaa;
  text-align: center;
  padding: 1.5rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  margin-top: auto;
}

footer .socials {
  margin-top: 0.7rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

footer .socials a svg {
  fill: white;
  width: 24px;
  height: 24px;
  transition: fill 0.3s ease;
}

footer .socials a:hover svg {
  fill: #d91e18;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}
