/* Hauptbereich */
.about-page {
  padding: 60px 20px;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 40px;
  font-weight: 900;
  color: #000000;
  letter-spacing: 1px;
}

.about-image {
  max-width: 600px;
  margin: 0 auto 50px auto;
  overflow: hidden;
  border-radius: 10px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 2px solid #000000;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #444;
}

.intro-text {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #000;
}

/* Scroll Animation */
.about-content p {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.about-content p.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Galerie */
.about-gallery {
  margin-top: 60px;
  text-align: center;
}

.gallery-title {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 30px;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 992px) {
  .page-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .about-image {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .about-content {
    max-width: 90%;
    font-size: 1.05rem;
  }

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

@media (max-width: 600px) {
  .page-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .about-image {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .about-content {
    max-width: 95%;
    font-size: 1rem;
    line-height: 1.6;
  }

  .intro-text {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .gallery-grid {
    gap: 15px;
  }
}
