
@font-face {
  font-family: "Nippo";
  src: url("fonts/Nippo-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Stardom";
  src: url("fonts/Stardom-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "DancingScript";
  src: url("fonts/DancingScript-Regular.woff2") format("woff2");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none;
}

html,body {
  overflow-x: hidden;
}

/* Cursor */

#cursor {
  height: 3rem;
  width: 3rem;
  border: 2px solid white;
  border-radius: 50%;
  position: fixed;
  z-index: 100;
  transform:  translate(-50%, -50%);
  top: 0;
  left: 0;
  pointer-events: none;
}

#point {
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background-color: white;
  position: fixed;
  z-index: 100;
}

/* Overflow */

#overflow-links {
  height: 10%;
  width: 40%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 150;
}

/* Page 1 */

#rotating-element {
  height: 15rem;
  width: 15rem;
  box-shadow: 0px 0px 10px #000000;
  background: url("images/Tech_circle-removebg-preview.png");
  background-size: cover;
  border-radius: 50%;
  position: absolute;
  top: 7rem;
  right: 15rem;
  perspective: 1000px;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#sv {
  font-size: 4rem;
  font-weight: 800;
  color: #000000;
  position: absolute;
  transform: translate(-50%, -50%);
  border: hidden;
}

/* Nav Bar Section */

#nav-bar {
  width: 100%;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 40vw;
}

#logo {
  font-size: 3rem;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 2px;
  border-bottom: 1px solid #FFD700;
  height: 100%;
  align-content: center;
  text-align: center;
}

#nav-links {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 10vw;
  height: 100%;
}

#nav-links a {
  text-decoration: none;
  color: #AEEBFF;
  font-size: 1.2rem;
  font-weight: 600;
  height: 100%;
  text-align: center;
  align-content: center;
  border-bottom: 1px solid #FFD700;
}

#nav-links a:hover {
  font-size: 1.3rem;
}

/* Hero Section */

#hero-section {
  height: 100vh;
  width: 100%;
}

#hero-section video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -100;
  position: absolute;
  top: 0;
}

#hero-name {
  height: 15rem;
  margin-top: 1rem;
  /* border: 1px solid #FFD700; */
  display: flex;
  flex-direction: column;
}

#hero-name p {
  height: 3.3rem;
  width: 10%;
  font-size: 2rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-left: 5rem;
  border-bottom: #FFD700 1px solid;
  color: white;
  font-family: 'DancingScript', sans-serif;
}

#hero-name h1 {
  height: 10rem;
  width:54%;
  font-size: 10vw;
  position: absolute;
  left: 3rem;
  top: 10rem;
  font-weight: 1000;
  color: #ffffff;
  font-family: "Nippo", sans-serif;
}

#hero-frontend {
  height: 10rem;
  width: 100%;
  margin-top: 1rem;
  /* border: 1px solid #FFD700; */
  display: flex;
  /* flex-direction: column; */
  justify-content: flex-end;
}

#hero-frontend h1 {
  font-size: 8vw;
  width: 90%;
  position: absolute;
  right: 1rem;
  color: white;
  font-weight: 100;
  font-family: "Stardom", sans-serif;
  width: 100%;
  display: flex;
  justify-content:flex-end;
  align-items: center;
}

#hero-backend {
  height: 15rem;
  width: 90%;
  margin-top: 1rem;
  /* border: 1px solid #FFD700; */
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  align-items: flex-start;
}

#hero-backend p {
  font-size: 3rem;
  font-weight: 600;
  position: absolute;
  right: 14rem;
  margin-top: 0.5rem;
  color: white;
  font-family: 'DancingScript', sans-serif;
  border-bottom: #FFD700 1px solid;
}

#hero-backend h1 {
  font-size: 8vw;
  width: 100%;
  position: absolute;
  left: 2rem;
  margin-top: 3rem;
  color: white;
  font-family: "Stardom", sans-serif;
  font-weight: 100;
  visibility: visible;
}

/* Page 2 */

.profile-section {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  /* background: url("images/Profile-background.png");
  background-size: cover; */
  color: white;
}

.animated-gradient {
    background: linear-gradient(135deg, #0a0fb0 0%, #30b3b3 100%);
    background-size: 180% 180%; animation: animated-gradient-wave 5s ease-in-out infinite;
}


@keyframes animated-gradient-wave {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

#profile-picture {
  height: 80%;
  width: 30%;
  border: 2px solid black;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

#picture {
  height: 60%;
  width: 80%;
  background: url("images/Github_profile_picture.jpg");
  background-size: cover;
  border: 2px solid black;
  border-radius: 10px;
}

#social-media-links {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 15%;
  width: 80%;
  /* border: 2px solid black; */
  border-radius: 10px;
}

#social-media-links a {
  height: 90%;
  width: 22%;
  /* border: 1px solid black; */
  border-radius: 50%;
  align-content: center;
  text-align: center;
  color: white;
  text-decoration: none;
}

#insta {
  background: url("images/Insta_logo.png");
  background-size: cover;
}

#github {
  background: url("images/GitHub-Logo.png");
  background-size: cover;
  color: #000000;
}

#discord {
  background: url("images/Discord-Logo-PNG-Pic.png");
  background-size: cover;
}

#profile-intro {
  height: 80%;
  width: 60%;
  /* border: 2px solid black; */
  border-radius: 10px;
  padding: 3rem;
  font-size: 1.2rem;
}

#scroll-down {
  height: 100vh;
  width: 100%;
  background-color: lightgreen;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}

#scroll-down h1 {
  font-size: 30rem;
  white-space: nowrap;
  transform: translate(40%);
}

.animated-scroll-section {
    background: linear-gradient(135deg, #30b3b3 0%, lightgreen 100%);
    background-size: 180% 180%; animation: animated-gradient-wave 5s ease-in-out infinite;
}


@keyframes animated-gradient-wave {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

#my-work {
  height: 100vh;
  width: 100%;
  background-color: #000000;
}

#project-cards {
  height: 100%;
  width: 100%;
  background-color: red;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.animated-project-section {
    background: linear-gradient(135deg, lightgreen 0%, #30b3b3 50%, #1d00d6 100%);
    background-size: 180% 180%; animation: animated-gradient-wave 5s ease-in-out infinite;
}

@keyframes animated-gradient-wave {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.cards {
  height: 75%;
  width: 30%;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  filter: blur(0.5px);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

/* ========================
   Footer
======================== */

.footer {
  height: 25vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: clamp(2rem, 10vw, 14.2rem);
  position: relative;
  z-index: -10;
  bottom: 0;
  font-family: "Nippo", sans-serif;
}

.footer-gradient {
  background: linear-gradient(135deg, #30b3b3 0%, #1d00d6 50%, #000000 100%);
  background-size: 180% 180%;
  animation: animated-gradient-wave 5s ease-in-out infinite;
}