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

body {
  font-family: 'Georgia', 'Garamond', serif;
  background: #e8e4dc;
  color: #3d3d3d;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Animierter Hintergrund */
.animated-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(135deg, #d4cec4 0%, #e8e4dc 50%, #c9c3b8 100%);
}

.wave {
  position: absolute;
  width: 200%;
  height: 200%;
  border-radius: 45%;
  opacity: 0.15;
}

.wave1 {
  background: linear-gradient(45deg, #b8b0a3, #9c9589);
  animation: wave 25s infinite linear;
  top: -50%;
  left: -50%;
}

.wave2 {
  background: linear-gradient(90deg, #a39d92, #c4bcb0);
  animation: wave 35s infinite linear reverse;
  top: -30%;
  left: -30%;
}

.wave3 {
  background: linear-gradient(135deg, #d1cbc1, #e0dbd3);
  animation: wave 40s infinite linear;
  top: -70%;
  left: -70%;
}

@keyframes wave {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Container */
.container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.welcome-content {
  text-align: center;
  max-width: 600px;
  animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Portrait */
.portrait-container {
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(138, 131, 114, 0.3);
  box-shadow: 0 10px 40px rgba(109, 104, 88, 0.2);
  animation: float 3s ease-in-out infinite;
  transition: all 0.4s ease;
}

.portrait-container:hover {
  transform: scale(1.05);
  border-color: rgba(138, 131, 114, 0.6);
  box-shadow: 0 15px 50px rgba(109, 104, 88, 0.3);
}

.portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Icons */
.icon-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  font-size: 3rem;
  animation: float 3s ease-in-out infinite;
}

.book-icon,
.mic-icon {
  filter: drop-shadow(0 0 20px rgba(156, 149, 137, 0.3));
}

/* Typografie */
.welcome-title {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #8a8372, #6d6858, #9c9589);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
  animation: shimmer 3s infinite;
}

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

.subtitle {
  font-size: 1.5rem;
  color: #6d6858;
  margin-bottom: 30px;
  letter-spacing: 2px;
  font-weight: 300;
}

.intro-text {
  font-size: 1.2rem;
  color: #5c5850;
  margin-bottom: 50px;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Call-to-Action Buttons */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 40px;
  font-size: 1.2rem;
  color: #f5f3ef;
  background: linear-gradient(135deg, #8a8372, #9c9589);
  border: 2px solid transparent;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(109, 104, 88, 0.2);
  font-family: 'Georgia', serif;
  letter-spacing: 1px;
}

.cta-button-secondary {
  background: linear-gradient(135deg, #c9c3b8, #d4cec4);
  color: #3d3d3d;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(109, 104, 88, 0.3);
  border-color: #6d6858;
}

.cta-button .arrow {
  font-size: 1.5rem;
  transition: transform 0.4s ease;
}

.cta-button:hover .arrow {
  transform: translateX(10px);
}

/* Responsive Design */

/* Tablets und kleinere Laptops */
@media (max-width: 1024px) {
  .container {
    padding: 15px;
  }

  .welcome-title {
    font-size: 3.2rem;
  }

  .subtitle {
    font-size: 1.3rem;
  }

  .intro-text {
    font-size: 1.1rem;
  }
}

/* Tablets Portrait */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .portrait-container {
    width: 160px;
    height: 160px;
    margin-bottom: 25px;
  }

  .welcome-title {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .subtitle {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  .intro-text {
    font-size: 1rem;
    margin-bottom: 35px;
    line-height: 1.7;
  }

  .icon-container {
    font-size: 2rem;
    gap: 20px;
    margin-bottom: 25px;
  }

  .cta-buttons {
    gap: 15px;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 1rem;
    gap: 10px;
  }

  .cta-button .arrow {
    font-size: 1.2rem;
  }
}

/* Mobile Landscape */
@media (max-width: 640px) {
  .welcome-title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .intro-text {
    font-size: 0.95rem;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .container {
    padding: 10px;
  }

  .welcome-content {
    max-width: 100%;
  }

  .portrait-container {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
  }

  .welcome-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .intro-text {
    font-size: 0.9rem;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .icon-container {
    font-size: 1.8rem;
    gap: 15px;
    margin-bottom: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }
}

/* Kleine Smartphones */
@media (max-width: 360px) {
  .portrait-container {
    width: 120px;
    height: 120px;
  }

  .welcome-title {
    font-size: 1.5rem;
  }

  .subtitle {
    font-size: 0.9rem;
  }

  .intro-text {
    font-size: 0.85rem;
  }

  .icon-container {
    font-size: 1.5rem;
  }
}
