/* Biografie-spezifische Styles */

/* Fixiertes Portrait */
.fixed-portrait {
  position: fixed;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 350px;
  z-index: 10;
  transition: all 0.4s ease;
}

.fixed-portrait:hover {
  transform: translateY(-50%) scale(1.05);
}

.portrait-fixed-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(109, 104, 88, 0.4);
  border: 4px solid rgba(138, 131, 114, 0.4);
  transition: all 0.4s ease;
}

.fixed-portrait:hover .portrait-fixed-img {
  box-shadow: 0 25px 70px rgba(109, 104, 88, 0.5);
  border-color: rgba(138, 131, 114, 0.7);
}

.navigation {
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 100;
}

.nav-link {
  color: #6d6858;
  text-decoration: none;
  font-size: 1rem;
  padding: 12px 25px;
  background: rgba(212, 206, 196, 0.7);
  border: 1px solid #9c9589;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-link:hover {
  background: rgba(138, 131, 114, 0.3);
  color: #3d3d3d;
  transform: translateX(-5px);
}

.bio-content {
  max-width: 800px;
  margin-right: 360px;
  padding: 80px 20px 40px 20px;
  animation: fadeInUp 1s ease-out;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 60px;
  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;
}

.bio-section {
  margin-bottom: 50px;
  padding: 30px;
  background: rgba(212, 206, 196, 0.4);
  border-left: 4px solid #8a8372;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.bio-section:hover {
  background: rgba(212, 206, 196, 0.6);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(109, 104, 88, 0.2);
}

.bio-section h2 {
  font-size: 2rem;
  color: #6d6858;
  margin-bottom: 20px;
  font-weight: 400;
}

.bio-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5c5850;
}

.contact-cta {
  text-align: center;
  margin-top: 80px;
  padding: 40px;
  background: rgba(138, 131, 114, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(138, 131, 114, 0.3);
}

.cta-text {
  font-size: 1.3rem;
  color: #6d6858;
  margin-bottom: 25px;
  font-weight: 300;
}

/* Responsive Design */

/* Tablets und kleinere Laptops */
@media (max-width: 1024px) {
  .fixed-portrait {
    width: 220px;
    height: 280px;
    right: 40px;
  }

  .bio-content {
    max-width: 700px;
    margin-right: 280px;
  }

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

  .bio-section {
    padding: 25px;
  }
}

/* Tablets Portrait */
@media (max-width: 768px) {
  .fixed-portrait {
    display: none;
  }

  .navigation {
    top: 15px;
    left: 15px;
  }

  .bio-content {
    margin-right: 0;
  }

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

  .bio-section {
    padding: 20px;
    margin-bottom: 35px;
  }

  .bio-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .bio-section p {
    font-size: 1rem;
    line-height: 1.7;
  }

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

  .contact-cta {
    margin-top: 60px;
    padding: 30px 20px;
  }

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

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

  .bio-section h2 {
    font-size: 1.3rem;
  }
}

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

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

  .bio-section {
    padding: 18px;
    margin-bottom: 30px;
    border-left-width: 3px;
  }

  .bio-section h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .bio-section p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .contact-cta {
    margin-top: 50px;
    padding: 25px 15px;
    border-radius: 15px;
  }

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

  .cta-button {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}

/* Kleine Smartphones */
@media (max-width: 360px) {
  .page-title {
    font-size: 1.5rem;
  }

  .bio-section h2 {
    font-size: 1.1rem;
  }

  .bio-section p {
    font-size: 0.9rem;
  }
}
