body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(to right, #00CDF6, #007BFF);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100vh;
}

nav {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 0;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 15px;
    font-size: 1.2rem;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.container {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    width: 80%;
    max-width: 600px;
    margin-top: 20px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    background: #007BFF;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.btn:hover {
    background: #0056b3;
}

.hidden-content {
    display: none;
}

.login-container {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    margin: auto;
}

.login-input {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
}

.login-input:focus {
    border: 2px solid #007BFF; /* Blaue Umrandung, wenn das Feld fokussiert ist */
    outline: none;
}
footer {
    width: 100%;
    padding: 30px 10px;
    background: transparent;
    color: #fff;
    text-align: center;
    margin-top: auto;
    text-shadow:
        1px 1px 4px rgba(0, 0, 0, 0.7),
        0 0 6px rgba(0, 255, 255, 0.4);
}






footer hr {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

footer a {
    color: #00CDF6;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-signoff {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #ccc;
}

.featured-container {
  margin: 40px auto;
  width: 80%;
  max-width: 900px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  text-align: left;
  color: #fff;
}

.featured-container h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00CDF6;
  text-shadow: 1px 1px 3px #007BFF;
}


.featured-items {
  display: flex;
  flex-wrap: nowrap; /* Keine Umbruchzeilen, alle in einer Reihe */
  overflow-x: auto; /* Falls zu breit, kannst du horizontal scrollen */
  gap: 20px;
  justify-content: flex-start; /* Links anordnen */
  padding-bottom: 10px;
}

.featured-card {
  flex: 0 0 250px; /* Fixe Breite, nicht schrumpfen */
  background: #007BFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.7);
}


.featured-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-bottom: 2px solid #00CDF6;
}

.featured-info {
  padding: 10px 12px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertikal mittig ausrichten */
  gap: 6px;
}

.featured-info h3 {
  margin: 0;
  font-size: 1.1rem; /* bisschen kleiner */
  font-weight: 600;
  line-height: 1.2;
}

.featured-info p {
  margin: 0;
  font-size: 0.9rem; /* kleiner und kompakt */
  line-height: 1.3;
  opacity: 0.85;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* max 3 Zeilen Text, dann ... */
  -webkit-box-orient: vertical;
}
