
body.loading {
  cursor: none; /* Hide cursor */
}
:root {
  --circle-outline: #0f0f0f;
}

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

html,
body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #0f0f0f;
  font-family: "Funnel Display", serif;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #BF1070;
}

.counter {
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  color: var(--circle-outline);
  padding: 2rem 4rem;
  font-size: 10vw;
  font-family: "SF Pro Display";
  font-weight: lighter;
  font-style: italic;
  z-index: 10000;
  color: #000000;
}

.site-teaser span {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2rem 4rem;
  color: var(--circle-outline);
  font-size: 1rem;
  font-family: "SF Pro Display";
  font-weight: Medium;
  font-style: italic;
  color: rgb(0, 0, 0);
}

.circles {
  position: absolute;
  left: 5rem;
  bottom: 5rem;
  width: 400px;
  height: 400px;
  border-radius: 100%;
  border-color: #00ddff;
}

.circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  border: 1px solid var(--circle-outline);
  border-radius: 100%;
  border-color: #00ddff;
}

.circle-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border-color: #00ddff;
}

.circle-inner-rotator {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 162.5px;
  height: 162.5px;
  background: none;
  border: 1px solid var(--circle-outline);
  border-radius: 100%;
  border-color: #00ddff;
}

.block {
  position: absolute;
  top: -100px;
  left: 200px;
  width: 0px;
  height: 0px;
  display: none;
  background: none;
  border: 1px solid var(--circle-outline);
  transform-origin: bottom;
  border-color: #00ddff;
}

.container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;  /* Stack items vertically */
  justify-content: center;
  align-items: center;
  background: #080808; /* Background color */
}

.container-image {
  position: absolute; 
  top: 10%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  opacity: 1; 
  z-index: 10; 

  /* Atur ukuran dengan max-width */
  max-width: 100px; /* Ukuran maksimum */
  height: auto; /* Jaga agar proporsi tetap */
}

.main.text {
  font-family: "Funnel Display", serif;
  position: absolute; /* Posisikan elemen secara absolut */
  top: 50%; /* Pindahkan ke tengah layar vertikal */
  left: 50%; /* Pindahkan ke tengah layar horizontal */
  transform: translate(-50%, -50%); /* Pusatkan elemen */
  opacity: 1; /* Pastikan opacity 100% */
  z-index: 10; /* Pastikan elemen ini di depan */
  text-align: center; /* Pusatkan teks */
  color: #fff; /* Warna teks */
}

@media only screen and (max-width: 600px) {
  .main.text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100vw;  /* Full viewport width */
    height: auto;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem; /* Adjust font size as needed for mobile */
  }
}

h1 {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
}

h1 span {
  color: #BF1070;
  position: relative;
}

h1 span::before {
  content: "";
  height: 30px;
  width: 2px;
  position: absolute;
  top: 50%;
  right: -8px;
  background: #BF1070;
  transform: translateY(-45%);
  animation: blink 2s infinite;
}

h1 span.stop-blinking::before {
  animation: none;
}

@keyframes blink {
  50% { opacity: 0 }
}



.clickable-title {
  color: inherit; /* Inherit color from parent (e.g., blue if that's your h1 color) */
  text-decoration: none; /* Remove underline if not desired */
}



.container h1 {
  font-family: "Funnel Display", serif;  /* Font family */
  font-weight: 800;                      /* Font weight */
  font-size: 5rem;                       /* Base size for desktops */
  color: #F0F0F0;                        /* Text color */
  text-align: center;                    /* Center text */
  line-height: 0.75;                     /* Line-height for spacing */
  cursor: pointer;                       /* Pointer cursor */
}

/* Small devices (phones, < 600px) */
@media (max-width: 600px) {
  .container h1 {
      font-size: 3rem;                   /* Smaller font size for mobile */
  }
}

/* Medium devices (tablets, 600px to 900px) */
@media (min-width: 601px) and (max-width: 900px) {
  .container h1 {
      font-size: 4rem;                   /* Adjusted size for tablets */
  }
}

/* Large devices (desktops, > 900px) */
@media (min-width: 901px) {
  .container h1 {
      font-size: 5rem;                   /* Maintained size for desktops */
  }
}

.container h2 {
  font-family: "Funnel Display", serif;  /* Font family */
  font-weight: 800;                      /* Font weight */
  font-size: 5rem;                       /* Base size for desktops */
  color: #2633FE;                        /* Text color */
  text-align: center;                    /* Center text */
  line-height: 0.75;                     /* Line-height for spacing */
  cursor: pointer;                       /* Pointer cursor */
}

/* Small devices (phones, < 600px) */
@media (max-width: 600px) {
  .container h2 {
      font-size: 3rem;                   /* Smaller font size for mobile */
  }
}

/* Medium devices (tablets, 600px to 900px) */
@media (min-width: 601px) and (max-width: 900px) {
  .container h2 {
      font-size: 4rem;                   /* Adjusted size for tablets */
  }
}

/* Large devices (desktops, > 900px) */
@media (min-width: 901px) {
  .container h2 {
      font-size: 5rem;                   /* Maintained size for desktops */
  }
}

button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "SF Pro Display";
  font-weight: 400;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  padding: 15px 30px;
  outline: none;
  box-shadow: none;
}

.gallery {
  width: 100%;
  height: 100%;
}

.item {
  position: fixed;
  max-width: fit-content;
  height: 275px;
}

@media (max-width: 600px) {
  .item {
      width: 90%; /* Slight padding for mobile */
      max-width: fit-content;
      height: 140px;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .item {
      width: 90%; /* Slight padding for medium devices */
      max-width: fit-content;
      height: 200px;
  }
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.link {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 10px;
  width: 30px;
  height: 30px;
  background: #000;
  align-items: center;
  display: flex;
  justify-content: center;
  border-radius: 5px;
}

.link a {
  text-decoration: none;
  color: #fff;
}

i {
  position: relative;
  top: 1.5px;
}

.cursor, .hand {
  position: fixed;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.1s;
}

.cursor {
  background: #BF1070;
  top: 0;
  width: 20px;
  height: 20px;
  z-index: 999;
}

.hand {
  background: #0b0b0b;
  top: 50%;
  width: 150px;
  height: 150px;
  z-index: 9999;
  display: grid;
  place-content: center;
  transform: rotate(45deg);
  opacity: 0;
}
.hand svg {
  width: 80px;
}

.transition-container {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 10;
  pointer-events: none;
}

.transition-container span {
  position: relative;
}

.transition-container.from-left {
  flex-direction: column;
}

.transition-container.from-left span {
  background: #BF1070;
  height: 100%;
  width: 0%;
}


.main.text {
  text-align: center;
  z-index: 1;
}


