@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --pink: #ff6ec7;
  --pink-dark: #fb56bc;
  --lavender: #e6e6fa;
  --abu: #f9fafb;
  --hitam: #1f2937;
  --background: #081b29;
}

body {
  background-color: var(--background);
  font-family: "Nunito Sans", sans-serif;
  font-weight: 500;
  color: #fff;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  outline: none;
  cursor: pointer;
}

img {
  width: 100%;
}

.container {
  width: 80%;
  margin-inline: auto;
}

.primer {
  color: var(--pink);
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(8, 27, 41, 0.4392156863);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
.navbar .box-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.navbar .box-navbar .logo {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.navbar .box-navbar .logo span {
  font-weight: 800;
}
.navbar .box-navbar .logo:hover {
  transform: scale(1.1);
}
.navbar .box-navbar .menu {
  display: flex;
  gap: 30px;
}
.navbar .box-navbar .menu li a {
  position: relative;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.navbar .box-navbar .menu li a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 0;
  height: 2px;
  border-radius: 50px;
  background-color: var(--pink);
  transition: all 0.2s ease;
}
.navbar .box-navbar .menu li a:hover::before, .navbar .box-navbar .menu li a.active::before {
  width: 100%;
}
.navbar .box-navbar .menu li a:hover, .navbar .box-navbar .menu li a.active {
  color: var(--pink);
}
.navbar .box-navbar .menu-bar {
  display: none;
  font-size: 22px;
  color: #fff;
}

.hero {
  min-height: 100vh;
  width: 100%;
  display: flex;
}

.box-hero {
  padding-top: 120px;
  display: flex;
  justify-content: space-between;
}
.box-hero .hero-content {
  max-width: 500px;
}
.box-hero .hero-content .content .header {
  font-size: 30px;
}
.box-hero .hero-content .content .name {
  font-size: 50px;
  line-height: 1.1;
}
.box-hero .hero-content .content .name a {
  margin-left: -5px;
}
.box-hero .hero-content .content .job {
  font-size: 30px;
}
.box-hero .hero-content .content .description {
  max-width: 400px;
  margin: 10px 0 5px;
  max-height: 4rem;
  overflow: hidden;
  transition: all 5s ease;
}
.box-hero .hero-content .content .description.expanded {
  max-height: 100rem;
}
.box-hero .hero-content .content #selengkapnya {
  margin-bottom: 15px;
  display: inline-block;
  color: var(--pink);
  text-decoration: none;
  cursor: pointer;
}
.box-hero .hero-content .content #selengkapnya:hover {
  text-decoration: underline;
}
.box-hero .hero-content .media {
  display: flex;
  gap: 8px;
}
.box-hero .hero-content .media a {
  background-color: var(--pink);
  color: #081b29;
  padding: 8px;
  font-size: 22px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.box-hero .hero-content .media a:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 0 20px var(--pink);
}
.box-hero .hero-content .action-button {
  margin-top: 20px;
  display: flex;
  width: 80%;
  justify-content: space-between;
  gap: 30px;
}
.box-hero .hero-content .action-button .button {
  position: relative;
  background-color: var(--pink);
  border: 2px solid var(--pink);
  color: #081b29;
  width: 100%;
  font-size: 22px;
  padding: 20px;
  font-weight: 700;
  text-align: center;
  border-radius: 3px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s ease;
}
.box-hero .hero-content .action-button .button:first-child {
  box-shadow: 0 0 20px var(--pink);
}
.box-hero .hero-content .action-button .button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #081b29;
  z-index: -1;
  transition: all 0.5s ease;
}
.box-hero .hero-content .action-button .button:hover {
  box-shadow: none;
  color: var(--pink);
}
.box-hero .hero-content .action-button .button:last-child {
  background-color: #081b29;
  color: var(--pink);
}
.box-hero .hero-content .action-button .button:last-child::before {
  background-color: var(--pink);
}
.box-hero .hero-content .action-button .button:last-child:hover {
  box-shadow: 0 0 20px var(--pink);
  color: #081b29;
}
.box-hero .hero-content .action-button .button:hover::before {
  width: 100%;
}
.box-hero .image-animation {
  width: 35%;
  margin-right: 30px;
  margin-top: 20px;
}
.box-hero .image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 0 80px var(--pink);
  transition: all 0.5s ease;
}
.box-hero .image-wrapper:hover {
  box-shadow: 0 0 40px var(--pink);
}
.box-hero .image-wrapper img {
  transform: scale(1.1);
  border-radius: 50%;
  transition: all 0.5s ease;
  cursor: grab;
}
.box-hero .image-wrapper img:hover {
  transform: scale(1.2);
}

#secret {
  display: inline-block;
  animation: gerak 5s ease-in-out 20s infinite;
  cursor: pointer;
}

.popup {
  animation: toDown 1s ease-in-out;
}

.popup,
.lanjutan,
.clue {
  position: fixed;
  display: none;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--pink);
  box-shadow: 0 0 20px var(--pink);
  padding: 10px;
  border: 2px solid var(--pink);
  outline: none;
  border-radius: 10px;
  width: 350px;
  margin: 20px auto;
  text-align: center;
}
.popup p,
.lanjutan p,
.clue p {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.popup button,
.lanjutan button,
.clue button {
  width: 30%;
  padding: 8px 10px;
  margin-top: 8px;
}

.fade-up {
  transform: translate(0, 50px);
  opacity: 0;
  transition: all 1s ease;
}

.fade-down {
  transform: translate(0, -50px);
  opacity: 0;
  transition: all 1s ease;
}

.fade-right {
  transform: translate(-50px, 0);
  opacity: 0;
  transition: all 1s ease;
}

.fade-left {
  transform: translate(50px, 0);
  opacity: 0;
  transition: all 1s ease;
}

.fade-up.show,
.fade-down.show,
.fade-left.show,
.fade-right.show {
  opacity: 1;
  transform: translate(0);
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-400 {
  transition-delay: 0.4s;
}

.delay-600 {
  transition-delay: 0.6s;
}

.delay-800 {
  transition-delay: 0.8s;
}

.delay-200 {
  transition-delay: 0.2s;
}

@keyframes gerak {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.1);
  }
  40% {
    transform: scale(0.8);
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes toDown {
  0% {
    opacity: 0;
    transform: translate(-50%, -100%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 790px) {
  .container {
    width: 90%;
    margin: 0 20px;
  }
  .navbar {
    justify-content: space-evenly;
  }
  .navbar .box-navbar .menu {
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
    display: none;
  }
  .navbar .box-navbar .menu-bar {
    display: inline-block;
  }
  .hero .box-hero {
    padding-top: 120px;
    flex-direction: column-reverse;
    align-items: center;
    gap: 70px;
  }
  .hero .box-hero .image-animation {
    width: 60%;
    margin-left: 50px;
  }
}
@media (max-width: 530px) {
  .box-hero {
    padding-top: 70px;
  }
  .box-hero .hero-content {
    margin-top: -20px;
  }
  .box-hero .hero-content .content .header {
    font-size: 20px;
  }
  .box-hero .hero-content .content .name {
    font-size: 40px;
  }
  .box-hero .hero-content .content .job {
    font-size: 20px;
  }
  .box-hero .hero-content .action-button {
    width: 100%;
  }
  .box-hero .hero-content .action-button .button {
    width: 100%;
    font-size: 20px;
    padding: 20px;
  }
}
@media (max-width: 450px) {
  .box-hero {
    padding-top: 70px;
  }
  .box-hero .hero-content .content .header {
    font-size: 20px;
  }
  .box-hero .hero-content .content .name {
    font-size: 38px;
  }
  .box-hero .hero-content .content .job {
    font-size: 20px;
  }
  .box-hero .hero-content .action-button {
    width: 90%;
    gap: 10px;
  }
  .box-hero .hero-content .action-button .button {
    width: 100%;
    font-size: 20px;
    padding: 20px;
  }
}
@media (max-width: 428px) {
  .box-hero .hero-content .content .header {
    font-size: 20px;
  }
  .box-hero .hero-content .content .name {
    font-size: 33px;
  }
  .box-hero .hero-content .content .job {
    font-size: 20px;
  }
  .box-hero .hero-content .content .description {
    max-height: 3.4rem;
    font-size: 13px;
  }
  .box-hero .hero-content .action-button {
    width: 90%;
    gap: 10px;
  }
  .box-hero .hero-content .action-button .button {
    width: 100%;
    font-size: 18px;
    padding: 15px;
  }
  .box-hero .hero-content .image-animation {
    width: 55%;
    margin-top: 10px;
    margin-right: 0;
  }
}
@media (max-width: 370px) {
  .box-hero .hero-content .content .header {
    font-size: 18px;
  }
  .box-hero .hero-content .content .name {
    font-size: 30px;
  }
  .box-hero .hero-content .content .job {
    font-size: 18px;
  }
  .box-hero .hero-content .content .description {
    max-height: 3rem;
    font-size: 12px;
  }
  .box-hero .hero-content .action-button {
    width: 90%;
    gap: 10px;
  }
  .box-hero .hero-content .action-button .button {
    width: 100%;
    font-size: 14px;
    padding: 12px;
  }
}
@media (max-width: 336px) {
  .box-hero .hero-content .content .header {
    font-size: 14px;
  }
  .box-hero .hero-content .content .name {
    font-size: 26px;
  }
  .box-hero .hero-content .content .job {
    font-size: 14px;
  }
  .box-hero .hero-content .content .description {
    max-height: 3rem;
    font-size: 11px;
  }
  .box-hero .hero-content .media a {
    font-size: 18px;
  }
  .box-hero .hero-content .action-button {
    width: 90%;
    gap: 10px;
  }
  .box-hero .hero-content .action-button .button {
    width: 100%;
    font-size: 14px;
    padding: 12px;
  }
}/*# sourceMappingURL=style.css.map */