/* Reset and global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
  color: #f5f5f5;
}

/* Background Video */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

/* Overlay content */
.overlay {
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.5); /* contrast layer */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #00ffe0;
}

/* Social Icons as PNGs */
.social-icons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.icon-img {
  width: 72px;
  height: 72px;
  transition: transform 0.3s ease;
}

.icon-img:hover {
  transform: scale(1.2);
}

h1:hover {
  transform: scale(1.1);
  text-shadow: 0 0 10px #00ffe0;
}

p:hover {
  transform: scale(1.1);
  color: #00ffe0;
}

h1 {
  font-size: 6rem;
  font-weight: bold;
  margin-bottom: 3rem; /* space below the name */
  color: #ffffff;
  transition: transform 0.3s ease;
}

p {
  font-size: 3rem;
  margin-top: 3rem;     /* space above the tagline */
  font-weight: bold;
  margin-bottom: 6rem;  /* space below the tagline before icons */
  color:  #ff1d58;
  transition: transform 0.3s ease;
}

body, html {
  font-family: 'Poppins', sans-serif;
}

@keyframes flashPulse {
  0% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 0 0px #00ffe0);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px #00ffe0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 0 0px #00ffe0);
  }
}


.icon-img:hover {
  animation: flashPulse 1.2s ease-in-out infinite;
}


@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.fade-in {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0; /* ensures it's hidden before animation */
}

.fade-in:nth-child(1) { animation-delay: 0.2s; }
.fade-in:nth-child(2) { animation-delay: 0.4s; }
.fade-in:nth-child(3) { animation-delay: 0.6s; }



