
/* Hero Section */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100vh;
  padding-left: 5rem;
  z-index: 1;
}

.hero-section h1 {
  font-weight: lighter;
  font-size: 3.5rem;
  margin-left: 7rem;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 3rem;
  gap: 2rem;
}

.status-box {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-left: 7rem;
  padding: 0.5rem 1.5rem;
  background-color: rgba(34, 34, 34, 0.63);
  border-radius: 3rem;
  width: fit-content;
}

.glow-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: red;
  box-shadow: 0 0 0.5rem red, 0 0 1rem red;
}

.status-text {
  font-size: 1.2rem;
  letter-spacing: 0.05rem;
}

.student-phrase {
  font-family: 'poppins', sans-serif;
  line-height: 1.2;
}

.hero-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4.5rem;
  z-index: 0;
}

.hero-image {
  margin-right: 5rem;
  margin-bottom: 9rem;
  width: 60rem;
  height: auto;
  z-index: -1;
  position: relative;
}

.hero-name {
  font-family: 'Bebas Neue', sans-serif;
  position: absolute;
  bottom: 0rem;
  left: calc(50% - 2rem);
  transform: translateX(-50%);
  font-size: 10rem;
  color: white;
  font-weight: 600;
  letter-spacing: 0.1rem;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
}


.firstn,
.surn {
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: steps(1, end); 
}

.firstn{
  animation-name: kenFlicker;
}

.surn {
  animation-name: bautistaFlicker;
}

.hero-right {
  position: absolute;
  right: 15rem;
  top: 50%;
  transform: translateY(-50%);
  width: 25rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 1;
}

.intro-text {
  font-family: 'poppins', sans-serif;
  font-size: 1.6rem;
  line-height: 2.5rem;
  color: white;
  text-align: left;
  margin-bottom: 2rem;
  margin-top: 8rem;
}

.works-button {
  text-decoration: none;
  width: fit-content;
  padding: 0.7rem 2rem;
  font-size: 1.2rem;
  background-color: transparent;
  border: 1px solid white;
  border-radius: 1rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 8rem;
}

.works-button:hover {
  background-color: white;
  color: black;
}

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

.projects-section,
footer,
.hero-section,
.hero-right-content,
.video-container:not(.header-video) {
  animation: fadeSlideUp 1s ease-out;
  animation-fill-mode: both;
}

@keyframes kenFlicker {
  0%, 100% {
    color: white;
    -webkit-text-stroke: 0;
  }
  50% {
    color: transparent;
    -webkit-text-stroke: 1px white;
  }
}

@keyframes bautistaFlicker {
  0%, 100% {
    color: transparent;
    -webkit-text-stroke: 1px white;
  }
  50% {
    color: white;
    -webkit-text-stroke: 0;
  }
}


