

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 8vw, 3rem);
  text-transform: uppercase;
  background: linear-gradient(135deg, #0ff0fc 0%, #00ff41 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
  letter-spacing: clamp(2px, 1vw, 5px);
  transform: perspective(500px) rotateX(10deg);
  max-width: 100%;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(2px, 0.5vw, 3px);
  background: linear-gradient(to right, #0ff0fc, #00ff41);
  box-shadow: 0 0 15px #0ff0fc;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: rgba(0, 20, 10, 0.4) !important;
}

.hero-section ul li {
  position: relative;
  overflow: hidden;
  padding: 10px;
  border-radius: 5px;
  transition: 0.3s;
}

.hero-section ul li:hover {
  background: rgba(0, 255, 65, 0.1);
  padding-left: 20px;
}

#about {
  perspective: 1500px;
}

#about p {
  line-height: 1.7;
  color: #cbd5e0;
  transform: translateZ(50px);
  color: rgba(255, 255, 255, 0.8);
}

#about .terminal-header {
  transform: translateZ(120px);
  color: #fff;
  text-shadow: 2px 2px 0px #000;
}

#about .lead-custom {
  transform: translateZ(80px);
  color: rgba(255, 255, 255, 0.9);
}

#about strong,
#about .text-neon-green {
  transform: translateZ(100px);
  display: inline-block;
  color: #00ff41;
}

#education,
#skills,
#projects,
#certificates {
  position: relative;
  overflow: hidden;
  transition: all 0.8s ease-out;
  perspective: 1500px;
}

#education::before,
#skills::before,
#projects::before,
#certificates::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(0, 240, 252, 0.05) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.8s ease-out;
}

#education > *,
#skills > *,
#projects > *,
#certificates > * {
  position: relative;
  z-index: 2;
}

#education {
  transform: perspective(1500px) rotateY(-20deg) translateX(-60px);
  opacity: 0;
  filter: blur(6px);
}

#education.camera-view-left-active {
  transform: perspective(1500px) rotateY(0deg) translateX(0);
  opacity: 1;
  filter: blur(0px);
}

#education.fog-fade-in::before {
  opacity: 1;
  animation: none;
}

#education.fog-fade-out::before {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

#education .timeline {
  display: flex;
  flex-direction: column;
  gap: 100px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

#skills {
  transform: perspective(1500px) rotateY(20deg) translateX(60px);
  opacity: 0;
  filter: blur(6px);
}

#skills.camera-view-right-active {
  transform: perspective(1500px) rotateY(0deg) translateX(0);
  opacity: 1;
  filter: blur(0px);
}

#skills.fog-fade-in::before {
  opacity: 1;
  animation: none;
}

#skills.fog-fade-out::before {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

#projects {
  transform: perspective(1500px) rotateX(15deg) translateY(-60px);
  opacity: 0;
  filter: blur(6px);
}

#projects.camera-view-up-active {
  transform: perspective(1500px) rotateX(0deg) translateY(0);
  opacity: 1;
  filter: blur(0px);
}

#projects.fog-fade-in::before {
  opacity: 1;
  animation: none;
}

#projects.fog-fade-out::before {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

#certificates {
  transform: perspective(1500px) rotateY(20deg) translateX(60px);
  opacity: 0;
  filter: blur(6px);
}

#certificates.camera-view-left-active {
  transform: perspective(1500px) rotateY(0deg) translateX(0);
  opacity: 1;
  filter: blur(0px);
}

#certificates.fog-fade-in::before {
  opacity: 1;
  animation: none;
}

#certificates.fog-fade-out::before {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

#contact {
  position: relative;
  overflow: hidden;
  transition: all 0.8s ease-out;
}

#contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(0, 240, 252, 0.05) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.8s ease-out;
}

#contact > * {
  position: relative;
  z-index: 2;
}

#contact {
  transform: perspective(1500px) rotateX(-20deg) translateZ(-60px);
  opacity: 0;
  filter: blur(6px);
}

#contact.camera-view-back-active {
  transform: perspective(1500px) rotateX(0deg) translateZ(0px);
  opacity: 1;
  filter: blur(0px);
}

#contact.fog-fade-in::before {
  opacity: 1;
  animation: none;
}

#contact.fog-fade-out::before {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

@media (max-width: 992px) {
  .section-title {
    transform: perspective(500px) rotateX(5deg);
    margin-bottom: 2rem;
    text-align: center;
    display: table;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .section-title {
    transform: perspective(500px) rotateX(5deg);
    margin-bottom: 2rem;
    text-align: center;
    display: table;
    margin-left: auto;
    margin-right: auto;
  }
}
