/**
 * Styles für die Willkommensseite
 */

.welcome-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.welcome-container h1 {
  color: #1e3a8a;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.welcome-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.welcome-icon {
  font-size: 4rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
  animation: wave 2s infinite;
}

@keyframes wave {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  30% { transform: rotate(14deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
  60% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

.welcome-message {
  line-height: 1.6;
  text-align: center;
}

.welcome-message p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-info {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #f0f4ff;
  border-radius: 8px;
}

.contact-info h3 {
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Responsive styles */
@media (min-width: 768px) {
  .welcome-content {
    flex-direction: row;
    text-align: left;
  }
  
  .welcome-icon {
    margin-right: 2rem;
  }
  
  .welcome-message {
    text-align: left;
  }
} 