@import url("https://fonts.googleapis.com/css2?family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&display=swap");

:root {
  --color-primary-white: #fff;
  --color-primary-black: #000;
  --color-primary-red: #ee1111;
  --color-background-cyan: #f0fcff;
  --color-primary-blue: #c2e8ff;
  --color-primary-dark-blue: #003f66;
  --fonts-family: "Libre Caslon Text", serif;
}

#solution-subtitle {
  font-family: var(--fonts-family);
  font-style: italic;
}

.stroke-text {
  -webkit-text-stroke: 2px var(--color-primary-white);
  color: #ffa527;
}

#slider .card {
  display: flex;
  flex-direction: column;
  /* flex: 0 0 calc((100% - 32px) / 3); 32px = 2 gap-4 (16px) antar 3 card */
  justify-content: space-between;
  align-items: start;
  background-color: var(--color-primary-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: auto;
  gap: 10px;
}
#slider-video .card-video {
  display: flex;
  flex-direction: column;
  /* flex: 0 0 calc((100% - 32px) / 3); 32px = 2 gap-4 (16px) antar 3 card */
  justify-content: space-between;
  align-items: start;
  background-color: var(--color-primary-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 500px;
  gap: 10px;
}

.badge {
  width: 7px;
  height: 7px;
  background-color: #e5e7eb; /* warna gray-200 */
  border-radius: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.badge.active {
  width: 35px;
  background-color: var(--color-primary-dark-blue);
  border-radius: 10px;
}

button {
  cursor: pointer;
}

#hero-button:hover,
#prevBtn:hover,
#nextBtn:hover {
  transition: all 0.3s ease;
  background-color: var(--color-white);
  color: var(--color-primary-dark-blue);
  shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
}

.counter-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
}

.number {
  -webkit-text-stroke: 2px #ffffff;
  font-size: 4rem;
  font-weight: bold;
  color: #0065c3;
}

.title-counter {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-primary-white);
  margin-bottom: 16px;
  text-align: center;
}
