html{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #000000;
    overflow-x: hidden;
    font-family: 'Press Start 2P', cursive;
}

::-webkit-scrollbar{
    background: black;
}
::-webkit-scrollbar-thumb{
    /* background: linear-gradient(120deg, black, RGB(125, 18, 255)); */
    background: transparent;
    border-radius: 10px;
}

.hidden{
    opacity: 0;
    filter: blur(5px);
    transform: translateY(30px);
    transition: all 0.4s ease-out;
    will-change: transform, opacity;
}

.show{
    opacity: 1;
    filter: blur(0px);
    transform: translate(0%);
}


.navigation{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 20px 20px 20px;
}

.mainNav{
    position: relative;
    width: 650px;
    height: 50px;
    /* background: #111111; */
    /* background-color: rgba(125, 18, 255, 0.1); */
    /* background: linear-gradient(to right, rgba(125, 18, 255, 0.2), #111111); */
    /* backdrop-filter: blur(10px); */
    /* box-shadow: 0 0 20px rgba(125, 18, 255, 0.4); */
    background-color: rgba(15, 15, 15, 0.8);
    /* border: 1px solid RGB(125, 18, 255); */
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(125, 18, 255, 0.3);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navigation span{
    color: RGB(125, 18, 255);
}

.mainNav a{
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    padding: 0 23px;
    z-index: 1;
}

.mainNav span{
    position: absolute;
    top: 0;
    left: 172px;
    width: 95px;
    height: 50px;
    background: none;
    border-radius: 8px;
    box-shadow: 0.5px 0.5px 0.5px 0.5px black;
    transition: 0.5s;
}

.mainNav a:nth-child(1):hover~span{
    background: linear-gradient(120deg, black, RGB(125, 18, 255));
    left: 53px;
}
.mainNav a:nth-child(2):hover~span{
    background: linear-gradient(120deg, black, RGB(125, 18, 255));
    left: 172px;
}
.mainNav a:nth-child(3):hover~span{
    background: linear-gradient(120deg, black, RGB(125, 18, 255));
    left: 293px;
    width: 150px;
}
.mainNav a:nth-child(4):hover~span{
    background: linear-gradient(120deg, black, RGB(125, 18, 255));
    left: 470px;
    width: 120px;
}

.contactMeBut{
    position: relative;
    border: 2px solid RGB(125, 18, 255);
    padding: 20px 20px;
    border-radius: 10px;
    display: inline-block;
    transition: 0.3s ease-in-out;
}

.contactMeBut a{
    color: white;
    text-decoration: none;
    position: relative;
    display: block;
    transition: 0.3s ease-in-out;
}

.contactMeBut span{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-bottom: 2px solid RGB(125, 18, 255);
    border-radius: 15px;
    transform: scale(0) translateY(50px);
    opacity: 0;
    transition: 0.5s;
}

.contactMeBut:hover span{
    transform: scale(1) translateY(0);
    opacity: 1;
}

.contactMeBut:hover{
    border: 2px solid transparent;
}

.contactContainer{
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: space-evenly;
}

.contactLeft{
    z-index: 1;
    position: relative;
    right: 200px;
}

.contactInput{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    color: white;
}

.contactInput h2{
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 10px;
}

.contactInput hr{
    border: none;
    width: 100%;
    height: 5px;
    background: RGB(125, 18, 255);
    border-radius: 10px;
    margin-bottom: 20px;
}

.inputField{
    width: 400px;
    height: 50px;
    border: 2px solid RGB(125, 18, 255);
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    border-radius: 50px;
}

.contactInput textarea{
    height: 150px;
    padding-top: 15px;
    border-radius: 20px;
}

.contactInput button{
    width: 200px;
    height: 50px;
    padding: 15px 30px;
    border: 2px solid RGB(125, 18, 255);
    border-radius: 50px;
    background: linear-gradient(120deg, black, RGB(125, 18, 255));
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.contactInput button:hover{
    border-color: white;
}


iframe{
    width: 1200px;
    position: absolute;
    left: 32%;
    top: 50%;
    transform: translateY(-25%);
    height: 600px;
}


.footer {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(120deg, black, rgb(125, 18, 255));
  padding: 30px 20px;
  text-align: center;
}

.footer h4 {
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  bottom: 10px;
}

.footerContent {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Social Icons */
.socialLinksFooter a {
  color: white;
  margin: 0 10px;
  border: 2px solid white;
  padding: 10px;
  border-radius: 50%;
  font-size: 18px;
  transition: 0.4s ease-in-out;
}

.socialLinksFooter a:hover {
  color: black;
  background: rgb(125, 18, 255);
  border-color: rgb(125, 18, 255);
}

/* Contact Button */
.contactMeButFooter {
  position: relative;
  border: 2px solid rgb(125, 18, 255);
  border-radius: 10px;
  padding: 10px 25px;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}

.contactMeButFooter a {
  color: white;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.contactMeButFooter span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, black, rgb(125, 18, 255));
  border-radius: 10px;
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s ease-in-out;
  opacity: 0.3;
}

.contactMeButFooter:hover span {
  transform: scaleX(1);
}

.contactMeButFooter:hover {
  border-color: white;
}

i {
    position: relative;
    bottom: 3px;
}

.hamburger{
    display: none;
}



@media (min-width: 2560px) {
  html {
    font-size: 18px;
  }

  .navigation {
    margin: 40px 60px;
  }

  .mainNav {
    width: 850px;
    height: 70px;
  }

  .mainNav a {
    font-size: 22px;
    padding: 0 30px;
  }

  .mainNav span {
    height: 70px;
  }

  .contactMeBut {
    padding: 25px 30px;
    font-size: 18px;
  }

  .contactContainer {
    padding: 60px;
    gap: 80px;
  }

  .contactLeft {
    right: 150px;
  }

  .contactInput h2 {
    font-size: 56px;
  }

  .inputField {
    width: 600px;
    height: 60px;
    font-size: 16px;
    padding-left: 30px;
  }

  .contactInput textarea {
    width: 600px;
    height: 200px;
    font-size: 16px;
    padding: 20px 30px;
  }

  .contactInput button {
    width: 250px;
    height: 60px;
    font-size: 18px;
  }

  iframe {
    width: 2000px;
    height: 900px;
    left: 35%;
    transform: translateY(-30%);
  }

  /* FOOTER */
  .footer {
    padding: 50px 40px;
  }

  .footer h4 {
    font-size: 28px;
  }

  .footerContent {
    gap: 40px;
  }

  .socialLinksFooter a {
    font-size: 24px;
    padding: 14px;
  }

  .contactMeButFooter {
    padding: 14px 30px;
    font-size: 18px;
  }

  .contactMeButFooter a {
    font-size: 18px;
  }
}








@media (max-width: 1024px) {

  /* NAVIGATION */
  .navigation {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .navigation h2{
    font-size: 18px;
  }
  
  .heading h1 {
    font-size: 42px;
  }

  .heading p {
    font-size: 16px;
  }

  .about {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px;
  }

  .aboutImage {
    display: none;
  }

  .aboutContent {
    width: 90%;
    max-width: 750px;
    text-align: center;
  }

  .aboutContent h2 {
    font-size: 22px;
  }

  .aboutContent p {
    font-size: 14px;
    line-height: 1.6;
  }

  .conBut {
    margin-top: 20px;
  }

  .conBut a {
    font-size: 15px;
  }

  .navigation {
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }

  .mainNav{
        width: 510px;
    }
    
    .mainNav a{
        font-size: 13px;
        padding: 0 25px;
    }

    .mainNav span{
        left: 120px;
        width: 80px;
    }

    .mainNav a:nth-child(1):hover~span{
        left: 15px;
    }
    .mainNav a:nth-child(2):hover~span{
        left: 120px;
    }
    .mainNav a:nth-child(3):hover~span{
        left: 230px;
        width: 120px;
    }
    .mainNav a:nth-child(4):hover~span{
        left: 380px;
        width: 100px;
    }

  .contactMeBut {
    white-space: nowrap;
  }

  .contactMeBut a {
    white-space: nowrap;
  }
  /* CONTACT SECTION */
  .contactContainer {
    flex-direction: column;
    justify-content: center;
    height: auto;
    padding: 50px 0;
    margin-bottom: 185px;
  }

  .contactLeft {
    position: relative;
    right: 0;
    top: 0;
    margin: 0 auto;
    text-align: center;
  }

  .contactInput {
    align-items: center;
  }

  .inputField {
    width: 90%;
  }

  .contactInput textarea {
    width: 90%;
  }

  iframe {
    display: none;
  }

  /* TITLES */
  h1 {
    font-size: 22px;
    margin-top: 60px;
    margin-bottom: 40px;
  }

  h1:after {
    width: 50%;
    left: 25%;
  }

  /* FOOTER */
  .footer {
    padding: 30px 20px;
    /* margin-top: 80px; */
  }

  .footer h4 {
    font-size: 18px;
  }

  .footerContent {
    flex-direction: column;
    gap: 20px;
  }

  .socialLinksFooter a {
    font-size: 16px;
    padding: 8px;
  }

  .contactMeButFooter {
    padding: 8px 18px;
  }

  .contactMeButFooter a {
    font-size: 14px;
  }
}


@media (max-width: 768px) {

  /* NAVIGATION */
  .navigation {
    flex-direction: column;
    gap: 10px;
  }

  .mainNav {
    flex-wrap: wrap;
    height: auto;
    width: 100%;
    padding: 10px;
    justify-content: center;
    gap: 10px;
  }

  .mainNav a {
    font-size: 14px;
    padding: 8px 15px;
  }

  .mainNav span {
    display: none; /* hide hover effect bar */
  }

  iframe{
    display: none;
  }

  .contactLeft {
    left: 10px;
    bottom: 200px;
    right: 0;
    margin: 0 auto;
  }

  .contactInput{
    align-items: center;
  }

  /* TITLE */
  h1 {
    font-size: 20px;
    margin-top: 80px;
    margin-bottom: 40px;
  }

  h1:after {
    width: 50%;
    left: 30%;
  }

  /* FOOTER */
  .footer {
    padding: 20px;
  }

  .footer h4 {
    font-size: 18px;
  }

  .footerContent {
    flex-direction: column;
    gap: 20px;
  }

  .socialLinksFooter a {
    font-size: 16px;
    padding: 8px;
  }

  .contactMeBut{
    display: none;
  }

  .contactMeButFooter {
    padding: 8px 18px;
  }

  .contactMeButFooter a {
    font-size: 14px;
  }
}


@media (max-width: 820px) {

  /* NAVIGATION */
  .navigation {
    flex-direction: column;
    gap: 10px;
  }

  .mainNav {
    flex-wrap: wrap;
    height: auto;
    width: 100%;
    padding: 10px;
    justify-content: center;
    gap: 10px;
  }

  .mainNav a {
    font-size: 14px;
    padding: 8px 15px;
  }

  .mainNav span {
    display: none; /* hide hover effect bar */
  }

  iframe{
    display: none;
  }

  .contactLeft {
    left: 10px;
    bottom: 200px;
    right: 0;
    margin: 0 auto;
  }

  .contactInput{
    align-items: center;
  }

  /* TITLE */
  h1 {
    font-size: 20px;
    margin-top: 80px;
    margin-bottom: 40px;
  }

  h1:after {
    width: 50%;
    left: 30%;
  }

  /* FOOTER */
  .footer {
    padding: 20px;
}

  .footer h4 {
    font-size: 18px;
  }

  .footerContent {
    flex-direction: column;
    gap: 20px;
  }

  .socialLinksFooter a {
    font-size: 16px;
    padding: 8px;
  }

  .contactMeBut{
    display: none;
  }

  .contactMeButFooter {
    padding: 8px 18px;
  }

  .contactMeButFooter a {
    font-size: 14px;
  }
}








@media (max-width: 468px) {

  /* NAVIGATION */
  .navigation {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 10px 15px;
    position: relative;
    z-index: 999;
  }

  .hamburger {
    display: block;
    font-size: 28px;
    color: white;
    cursor: pointer;
    z-index: 1000;
  }

  .mainNav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: rgba(15, 15, 15, 0.95);
    flex-direction: column;
    display: none;
    gap: 15px;
    padding: 20px 0;
    z-index: 999;
    border-radius: 0;
  }

  .mainNav.active {
    display: flex;
  }

  .mainNav a {
    font-size: 14px;
    padding: 10px 0;
  }

  .mainNav span {
    display: none;
  }

  .contactMeBut {
    display: none;
  }

  /* CONTACT SECTION */
  .contactContainer {
    flex-direction: column;
    padding: 20px 10px;
    height: auto;
  }

  .contactLeft {
    position: static;
    margin: 0 auto;
    text-align: center;
  }

  .contactInput {
    align-items: center;
    width: 100%;
  }

  .contactInput h2 {
    font-size: 24px;
    text-align: center;
  }

  .inputField {
    width: 90%;
    height: 45px;
    font-size: 12px;
  }

  .contactInput textarea {
    width: 90%;
    font-size: 12px;
  }

  .contactInput button {
    width: 70%;
    font-size: 13px;
    height: 45px;
  }

  iframe {
    display: none;
  }

  /* FOOTER */
  .footer {
    padding: 20px;
    text-align: center;
    line-height: 1.5;
  }

  .footer h4 {
    font-size: 16px;
  }

  .footerContent {
    flex-direction: column;
    gap: 15px;
  }

  .socialLinksFooter a {
    font-size: 14px;
    padding: 6px;
  }

  .contactMeButFooter {
    padding: 8px 16px;
  }

  .contactMeButFooter a {
    font-size: 13px;
  }
}
