@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;600&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: prompt;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000000;
    color: white;
    overflow-x: hidden;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0;
    margin-bottom: 85vh;
}

nav menu {
    display: flex;
    list-style: none;
    align-items: center;
    position: relative;
}



nav menu svg {
    cursor: pointer;
    width: 80px;
    margin-top: 10px;
}


nav menu li {
    display: flex;
    align-items: center;
    justify-content: center;
    width:15vw;
}

nav menu li a {
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    font-weight: 100;
    font-size: 13px;
}

nav menu li a:hover {
    color: #ffd700;
}

.color{
    width: 600px;
    height: 550px;
    position: absolute;
    top: -180px; /* Move it slightly above the screen */
    right: -180px;
    z-index: -1;
    background: radial-gradient(#FF805E 0%, #0000 72%);
    filter: blur(60px);
    opacity: 0.8;
}
.color2{
    width: 500px;
    height: 350px;
    position: absolute;
    top: 15px; /* Move it slightly above the screen */
    right: 70px;
    z-index: -1;
    background: radial-gradient(#3AD35D 0%, #0000 72%);
    filter: blur(60px);
    transform: rotate(133deg);
    opacity: 0.8;
}
.color3{
    width: 500px;
    height: 450px;
    position: absolute;
    top: 150px; /* Move it slightly above the screen */
    right: 5px;
    z-index: -1;
    background: radial-gradient(#1999BD 0%, #0000 72%);
    filter: blur(60px);
    transform: rotate(133deg);
    opacity: 0.8;
}
.color4{
    width: 400px;
    height: 550px;
    position: absolute;
    top: 20px; /* Move it slightly above the screen */
    right: -90px;
    z-index: -1;
    background: radial-gradient(#8119BD 0%, #0000 72%);
    filter: blur(60px);
    transform: rotate(128deg);
    opacity: 0.6;
}

.color5{
    width: 450px;
    height: 550px;
    position: absolute;
    top: 25rem; /* Move it slightly above the screen */
    left: 30px;
    z-index: -1;
    background: radial-gradient(#8119BD 0%, #0000 72%);
    filter: blur(60px);
    transform: rotate(105deg);
    opacity: 0.8;
}

.color6{
    width: 550px;
    height: 650px;
    position: absolute;
    top: 20rem; /* Move it slightly above the screen */
    left: 10px;
    z-index: -2;
    background: radial-gradient(#3AD35D 0%, #0000 72%);
    filter: blur(60px);
    transform: rotate(30deg);
    opacity: 0.6;
}
.color7{
    width: 400px;
    height: 550px;
    position: absolute;
    top: 29rem; /* Move it slightly above the screen */
    left: 110px;
    z-index: -3;
    background: radial-gradient(#1999BD 0%, #0000 72%);
    filter: blur(60px);
    transform: rotate(155deg);
    opacity: 0.6;
}
.color8{
    width: 550px;
    height: 650px;
    position: absolute;
    top: 17rem; /* Move it slightly above the screen */
    left: -230px;
    z-index: -2;
    background: radial-gradient(#FF805E 0%, #0000 72%);
    filter: blur(60px);
    transform: rotate(30deg);
    opacity: 0.6;
}

.header-image{
    position: absolute;
    width: 65%;
    display: flex;
    top: 6rem;
    left: 12rem;
    z-index: -3;
}

@keyframes flyInFromLeft {
    from {
        transform: translateX(-100vw); 
        opacity: 0;
    }
    to {
        transform: translateX(0); 
        opacity: 1; 
    }
}

@keyframes flyInFromRight {
    from {
        transform: translateX(100vw); 
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1; 
    }
}

.name{
    position: absolute;
    top: 6.5rem;
    left: 15rem;
    font-size: 7rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    animation: flyInFromLeft 1s ease-out; 
}
.surname{
    position: absolute;
    top: 15rem;
    right: 15rem;
    font-size: 7rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    animation: flyInFromRight 1s ease-out; 
}

.outcome-ver1{
    background-color: #D9D9D9;
    padding: 2rem 5rem 5rem 5rem;
  }
  .outcome-ver1 hr{
    border: 2px solid #C8C8C8;
    border-radius: 10px;
  }
  .content-container{
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin-top: 2rem;
    gap: 20px;
  
  }
  .images{
    background-color: #E9E9E9;
    padding: 4.2rem 3rem 4.2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    border-radius: 30px;
    flex:0 0 40%;
    position: relative;
    overflow: hidden;
  }
  .images img {
      width: 100%;
      height: auto;
      border-radius: 30px;
      z-index: 1;
      display: none; /* Hide all images by default */
    }
    
    .images img.active {
      display: block; /* Show only the active image */
    }
  
  .phase1{
      display: flex;
      flex-direction: column;
      gap: 20px;
  }
  .text-container{
    background-color: #E9E9E9;
    color: #000000;
    padding: 3rem;
    border-radius: 30px;
    flex: 1 1 45%;
  
  }

  /* footer */
.socials{
    display: flex;
    text-transform: uppercase;
    padding: 1.5rem;
    flex-direction: row;
    gap: 15rem;
    justify-content: center;
  }
  .socials a{
    color: white;
    font-weight: 100;
    transition: color 0.3s ease;
    text-decoration: none;
  }
  .socials a:hover{
    color: #a0a0a0;
  }