:root {
  --primary: #8e05c2;
  --black: #0f0f0f;
  --white: #fff;
  --gray: #7a7a7a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--black);
  color: var(--white);
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 1.5rem 6rem;
}


/* HEADER SECTION START */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 10vh;
  background-color: transparent;
  z-index: 10;
  mix-blend-mode: difference;
}

header .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

header.aos-init.aos-animate.hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

.logo a {
  font: italic bold 1.5rem "IBM Plex Sans", sans-serif;
  color: var(--white);
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

nav a::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: var(--white);
  transition: width 0.3s;
  margin-top: 4px;
}

nav a:hover::after {
  width: 100%;
}

.extra-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.extra-nav a,
.extra-nav button {
  border: 2px solid var(--white);
  border-radius: 16px;
  padding: 0.5rem 1.5rem;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.2s linear;
}

.extra-nav button:hover,
.extra-nav a:hover {
  background-color: var(--white);
  color: var(--black);
}
/* HEADER SECTION END */




/* HERO SECTION START */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  z-index: 2;
  position: relative;
}

.left-side,
.right-side {
  position: relative;
  z-index: 2;
}

.left-side {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.left-side h3 {
  font-size: 1.2rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.left-side h3 hr {
  width: 20px;
  height: 2px;
  background-color: var(--gray);
  border: none;
}

.left-side h1 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.3;
}

.text-background {
  background-color: var(--white);
  color: var(--black);
  padding: 4px 8px;
  border-radius: 6px;
  font-style: italic;
}

.action {
  display: flex;
  gap: 1rem;
}

.action button {
  border: 2px solid var(--white);
  background-color: transparent;
  padding: 0.75rem 1.5rem;
  border-radius: 32px;
  font-weight: bold;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s linear;
}

.action button:hover {
  background-color: var(--white);
  color: var(--black);
}

.action a {
  font-size: 1rem;
  color: var(--white);
}

.right-side {
  width: 48%;
  display: flex;
  justify-content: center;
}

.right-side img {
  width: 100%;
  max-width: 400px;
  object-fit: contain;
  border-radius: 16px;
}
/* HERO SECTION END */




/* Animasi Cahaya START */
.shape-1, .shape-2, .line {
  position: absolute;
  background-color: #fff;
  filter: blur(90px);
  opacity: 30%;
  z-index: 1;
  border-radius: 50%;
}

.shape-1 {
  width: 200px;
  height: 200px;
  animation: shape-1 60s infinite;
}

.shape-2 {
  width: 300px;
  height: 50px;
  animation: shape-2 120s infinite;
}

.line {
  width: 100%;
  height: 4%;
  transform: rotate(45deg);
  background-color: #fff;
  top: 0;
  right: -100%;
  filter: blur(50px);
  animation: line 50s infinite;
}

@keyframes shape-1 {
  0% { left: 0; top: 0; }
  25% { left: 50%; top: 50%; }
  50% { left: 30%; top: 80%; }
  75% { left: 20%; top: 50%; }
  100% { left: 0; top: 0; }
}

@keyframes shape-2 {
  0% { left: 0; top: 0; }
  25% { left: 40%; top: 70%; }
  50% { left: 20%; top: 50%; }
  75% { left: 50%; top: 100%; }
  100% { left: 0; top: 0; }
}

@keyframes line {
  from { right: -100%; top: 0; opacity: 30%; }
  to { right: 100%; top: 100%; opacity: 0; }
}
/* ANIMASI CAHAYA END */




/* INFORMASI SECTION START */
.information {
  margin: 4rem 0;
}

.information .content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.information .left-side,
.information .right-side {
  width: 48%;
}

.information h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.information p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #b0b0b0;
  margin-bottom: 1rem;
}

.information ul {
  list-style: none;
  padding: 0;
}

.information li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.information li h1 {
  font-size: 1.5rem;
}

.information .right-side hr {
  margin-top: 2rem;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 5px #fff, 0 0 10px #fff;
}
/* INFORMASI SECTION END */




/* EXPERIENCE SECTION START */
.experience {
  margin: 4rem 0;
  min-height: 100vh;
  overflow: hidden;
}

.experience .container .content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.experience .title {
  text-align: center;
  font: italic bold 1.3rem "IBM Plex Sans", sans-serif;
}

.experience .title h2 {
  color: var(--gray);
  font-size: 1.2rem;
}

.experience .title h1 {
  font-size: 3rem;
  color: var(--white);
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.experience-item {
  border-left: 4px solid var(--white);
  padding-left: 1.5rem;
  position: relative;
}

.experience-item h3 {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 0.3rem;
}

.experience-item h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.experience-item p {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.6;
}
/* EXPERIENCE SECTION START */





/* CONTACT SECTION START */
.contact {
  margin: 4rem 0;
  min-height: 100vh;
  overflow: hidden;
}

.contact .container {
  padding: 1.5rem 6rem;
}

.contact .container .content {
  display: flex;
  flex-direction: column;
  height: 100vh;
  gap: 2rem;
}

.contact .container .content .title {
  text-align: center;
  font: italic bold 1.3rem "IBM Plex Sans", sans-serif;
}

.contact .container .content .title h2 {
  color: var(--gray);
  font-size: 1.2rem;
}

.contact .container .content .title h1 {
  font-size: 3rem;
  color: var(--white);
}

.contact .container .content .contact-area {
  display: flex;
  height: 80%;
  gap: 2rem;
}

.contact .container .content .contact-area .left-side {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact .container .content .contact-area .left-side h1 {
  font: 500 4rem "IBM Plex Sans", sans-serif;
  transform: scale(1, 1.5);
  line-height: 1.2;
}

.contact .container .content .contact-area .left-side h1:nth-child(2) {
  margin-left: 30%;
}

.contact .container .content .contact-area .right-side {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact .container .content .contact-area .right-side form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact .container .content .contact-area .right-side form input,
.contact .container .content .contact-area .right-side form textarea {
  padding: 1rem;
  font-size: 1.2rem;
  color: var(--white);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--white);
  outline: none;
}

.contact .container .content .contact-area .right-side form input::placeholder,
.contact .container .content .contact-area .right-side form textarea::placeholder {
  font-weight: bold;
  color: var(--gray);
}

.contact .container .content .contact-area .right-side form textarea {
  resize: none;
  height: 150px;
}

.contact .container .content .contact-area .right-side form button {
  cursor: pointer;
  padding: .7rem;
  margin-top: 0.5rem;
  border: 2px solid var(--white);
  border-radius: 16px;
  font: bold 1.2rem "IBM Plex Sans", sans-serif;
  background: var(--black);
  color: var(--white);
  transition: .2s linear;
}

.contact .container .content .contact-area .right-side form button:hover {
  background-color: var(--white);
  color: var(--black);
}
/* CONTACT SSECTION END */




/* Footer */
footer {
  min-height: 20vh;
}

footer .container .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

footer .container .content h1 {
  font: italic bold 1.5rem "IBM Plex Sans", sans-serif;
}

footer .container .content .social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

footer .container .content .social .logo {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: var(--black);
  border: 2px solid var(--white);
  border-radius: 50%;
  fill: var(--white);
  transition: 0.2s linear;
}

footer .container .content .social .logo:hover {
  background-color: var(--white);
  fill: var(--black);
  transition: 0.2s linear;
}

