/* css/about.css */

.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  position: relative;
  z-index: 2;
  padding: 1rem 1rem 2rem 1rem;
  background: transparent;
  animation: fadeInBg 1.2s cubic-bezier(0.4, 2, 0.6, 1);
}

@keyframes fadeInBg {
  0% {
    opacity: 0;
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.cosmic-card {
  background: linear-gradient(
    135deg,
    rgba(20, 20, 28, 0.92) 60%,
    rgba(40, 40, 50, 0.78) 100%
  );
  border-radius: 24px;
  box-shadow: 0 2px 24px 0 #00ffff44, 0 1.5px 6px #0a0a1f44;
  padding: 2.5rem 2rem;
  max-width: 900px;
  margin: 2rem auto;
  backdrop-filter: blur(14px) saturate(120%);
  border: 1.5px solid rgba(0, 255, 255, 0.08);
  transition: box-shadow 0.3s, background 0.3s, transform 0.4s cubic-bezier(0.4, 2, 0.6, 1);
  color: #fff;
  position: relative;
  overflow: hidden;
  animation: cosmicCardPop 1.1s cubic-bezier(0.4, 2, 0.6, 1);
}

@keyframes cosmicCardPop {
  0% {
    transform: scale(0.96) translateY(30px);
    opacity: 0;
  }
  80% {
    transform: scale(1.03) translateY(-8px);
    opacity: 1;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* .cosmic-card::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  /* background: radial-gradient(circle, #00ffff55 0%, transparent 80%); 
  filter: blur(18px);
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
  animation: nebulaGlow 6s ease-in-out infinite alternate;
}

@keyframes nebulaGlow {
  0% {
    opacity: 0.12;
    transform: scale(1) rotate(0deg);
  }
  100% {
    opacity: 0.22;
    transform: scale(1.12) rotate(12deg);
  }
} */

/* .cosmic-card:hover {
  box-shadow: 0 8px 32px 0 #00ffff77, 0 2px 8px #0a0a1f66;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.92) 60%,
    rgba(30, 30, 40, 0.68) 100%
  );
  transform: translateY(-4px) scale(1.012);
} */

.hero-text h1.glow-text {
  font-size: 2.5rem;
  font-family: "Orbitron", "Montserrat", sans-serif;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 0 8px #00ffff, 0 0 18px #423552;
  margin-bottom: 1.2rem;
  animation: glow 1.2s ease-in-out alternate infinite;
}

@keyframes glow {
  0% {
    text-shadow: 0 0 4px #00ffff, 0 0 8px #2e1a47;
  }
  100% {
    text-shadow: 0 0 18px #00ffff, 0 0 24px #5a3ea1;
  }
}

.hero-text h2 {
  margin-top: 1.8rem;
  font-size: 1.3rem;
  color: #00ffff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.3rem;
  letter-spacing: 1px;
  animation: fadeInUp 1.2s cubic-bezier(0.4, 2, 0.6, 1);
}

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

.hero-text ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  line-height: 1.7;
  animation: fadeInUp 1.2s cubic-bezier(0.4, 2, 0.6, 1);
}

.hero-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 1rem;
  animation: fadeInBg 1.2s cubic-bezier(0.4, 2, 0.6, 1);
}

.tagline {
  font-size: 1.2rem;
  font-style: italic;
  color: #00ffff;
  margin-bottom: 1rem;
  text-shadow: 0 1px 12px #2e1a47aa;
  animation: glow 1.5s alternate infinite;
}

@media (max-width: 800px) {
  .about-section {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .cosmic-card {
    padding: 1.2rem 0.5rem;
  }
  .hero-text h1.glow-text {
    font-size: 2rem;
  }
}
