/* Hörbücher-Seite */

.audiobook-content {
  max-width: 1200px;
  padding: 80px 20px 40px;
  animation: fadeInUp 1s ease-out;
}

/* Portrait Hero Section */
.portrait-hero {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  animation: fadeInScale 1.2s ease-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.portrait-frame {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(135deg, #8a8372, #9c9589, #6d6858);
  box-shadow: 0 20px 60px rgba(109, 104, 88, 0.4);
  transition: all 0.5s ease;
}

.portrait-frame:hover {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 25px 80px rgba(109, 104, 88, 0.5);
}

.portrait-frame::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(212, 206, 196, 0.3),
    rgba(201, 195, 184, 0.3)
  );
  z-index: -1;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

.portrait-mic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #e8e4dc;
  display: block;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #8a8372, #6d6858, #9c9589);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  text-align: center;
}

.intro-description {
  text-align: center;
  font-size: 1.2rem;
  color: #5c5850;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

/* Videos Grid */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.video-card {
  background: rgba(212, 206, 196, 0.3);
  border: 2px solid #c9c3b8;
  border-radius: 15px;
  padding: 25px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(109, 104, 88, 0.1);
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(109, 104, 88, 0.25);
  border-color: #8a8372;
}

.video-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: #3d3d3d;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.5px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  background: rgba(201, 195, 184, 0.5);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0 2px 10px rgba(109, 104, 88, 0.2);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

.video-description {
  margin-top: 20px;
  font-size: 1rem;
  color: #6d6858;
  line-height: 1.6;
  text-align: center;
  font-style: italic;
}

/* Platzhalter Card */
.placeholder-card {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(212, 206, 196, 0.4), rgba(201, 195, 184, 0.3));
  border: 2px solid #c9c3b8;
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(109, 104, 88, 0.15);
}

.placeholder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(109, 104, 88, 0.25);
  border-color: #8a8372;
}

.placeholder-icon {
  font-size: 5rem;
  margin-bottom: 25px;
  animation: float 3s ease-in-out infinite;
}

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

.placeholder-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #3d3d3d;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #8a8372, #6d6858);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.placeholder-description {
  font-size: 1.2rem;
  color: #6d6858;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 35px;
}

.placeholder-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #8a8372, #9c9589);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(109, 104, 88, 0.3);
}

.placeholder-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(109, 104, 88, 0.4);
  background: linear-gradient(135deg, #9c9589, #8a8372);
}

.placeholder-button span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.placeholder-button:hover span {
  transform: translateX(5px);
}

/* Responsive Design */

/* Tablets und kleinere Laptops */
@media (max-width: 1024px) {
  .portrait-frame {
    width: 260px;
    height: 260px;
  }

  .audiobook-content {
    max-width: 900px;
  }

  .page-title {
    font-size: 3rem;
    margin-bottom: 25px;
  }

  .intro-description {
    font-size: 1.1rem;
    margin-bottom: 50px;
  }

  .videos-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
  }
}

/* Tablets Portrait */
@media (max-width: 768px) {
  .portrait-frame {
    width: 220px;
    height: 220px;
  }

  .portrait-hero {
    margin-bottom: 40px;
  }

  .audiobook-content {
    padding: 60px 15px 30px;
  }

  .page-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .intro-description {
    font-size: 1rem;
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .videos-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .video-card {
    padding: 20px;
  }

  .video-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .video-description {
    font-size: 0.95rem;
    margin-top: 15px;
  }

  .placeholder-card {
    padding: 50px 30px;
  }

  .placeholder-icon {
    font-size: 4rem;
    margin-bottom: 20px;
  }

  .placeholder-title {
    font-size: 2rem;
  }

  .placeholder-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .placeholder-button {
    padding: 13px 35px;
    font-size: 1rem;
  }
}

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

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

/* Mobile Portrait */
@media (max-width: 480px) {
  .portrait-frame {
    width: 180px;
    height: 180px;
  }

  .portrait-frame::before {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
  }

  .portrait-hero {
    margin-bottom: 35px;
  }

  .audiobook-content {
    padding: 50px 10px 25px;
  }

  .page-title {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

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

  .videos-grid {
    gap: 25px;
  }

  .video-card {
    padding: 18px;
    border-radius: 12px;
  }

  .video-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .video-description {
    font-size: 0.9rem;
    margin-top: 12px;
  }

  .placeholder-card {
    padding: 40px 20px;
  }

  .placeholder-icon {
    font-size: 3.5rem;
    margin-bottom: 18px;
  }

  .placeholder-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .placeholder-description {
    font-size: 1rem;
    margin-bottom: 25px;
    padding: 0 10px;
  }

  .placeholder-button {
    padding: 12px 30px;
    font-size: 0.95rem;
  }
}

/* Kleine Smartphones */
@media (max-width: 360px) {
  .portrait-frame {
    width: 160px;
    height: 160px;
    padding: 6px;
  }

  .portrait-hero {
    margin-bottom: 30px;
  }

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

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

  .video-title {
    font-size: 1.1rem;
  }

  .video-description {
    font-size: 0.85rem;
  }

  .placeholder-card {
    padding: 30px 15px;
  }

  .placeholder-icon {
    font-size: 3rem;
    margin-bottom: 15px;
  }

  .placeholder-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .placeholder-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .placeholder-button {
    padding: 11px 25px;
    font-size: 0.9rem;
  }
