.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
  background: url("resources/images/Landing-bg.png?v=3") no-repeat center center / cover;
  min-height: calc(100vh - 144px);
}

.about-panel {
  background-color: rgba(255, 255, 255, 0.85);
  color: #000;
  padding: 40px;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  animation: fade-slide-in 1s ease forwards;
  opacity: 0;
  transform: translateY(20px);
  transition: background-color 0.3s, color 0.3s;
}

body.dark .about-panel {
  background-color: rgba(18, 18, 18, 0.85);
  color: #f5f5f5;
}

.about-panel h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-panel h2 {
  font-size: 28px;
  margin-top: 30px;
}

.about-panel p,
.about-panel li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-panel ul {
  padding-left: 20px;
}

/* === ANİMASYON === */
@keyframes fade-slide-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === NAVBAR LINK HOVER ANİMASYONU === */
.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background-color: var(--text-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #888;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .about-panel {
    padding: 20px;
    font-size: 15px;
  }

  .about-panel h1 {
    font-size: 28px;
  }

  .about-panel h2 {
    font-size: 22px;
  }
}
