/* style.css */
/* Reset & Grundlayout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
/* Header identisch zur Hauptseite */
header {
  text-align: center;
  padding: 1.5rem 1rem;
}
.app-logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 15%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
header h1 {
  margin-top: 1rem;
  font-size: 2.2rem;
}

/* Hauptbereich Videos */
main {
  flex: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
}
.videos h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}
.video-list {
  list-style: none;
  padding-left: 0;
}
.video-item {
  background: #fff;
  padding: 1.2rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.video-item h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.video-item p {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}
.video-link {
  display: inline-block;
  padding: 0.6rem 1rem;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s;
}
.video-link:hover {
  background-color: #555;
}

/* Footer wie Hauptseite */
footer {
  text-align: center;
  padding: 1rem 0;
  background-color: #333;
  color: #fff;
}
footer p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 0.5rem;
  font-size: 0.9rem;
}
footer a:hover {
  text-decoration: underline;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .videos h2 { font-size: 1.6rem; }
  .video-item h3 { font-size: 1.2rem; }
}
@media (max-width: 600px) {
  header h1 { font-size: 1.8rem; }
}