@import url("https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&display=swap");

:root {
  --primary-font: "Gabarito", sans-serif;

  --primary-color: rgba(255, 122, 0, 1);
  --primary-color-hover: rgb(206, 104, 9);
  --primary-color-disabled: rgb(241, 162, 87);
  --text-dark-color: rgba(65, 65, 65, 1);
}

*,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-dark-color);
  font-family: var(--primary-font);
}

::selection {
  background-color: rgba(255, 122, 0, 0.7);
}

body {
  background-color: rgba(62, 62, 62, 1);
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-color-hover);
  border-color: var(--primary-color-hover);
}

.btn-outline-primary {
  color: darkslategray;
  background-color: white;
  border: none;
  outline: none;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active,
.btn-check + .btn:hover {
  color: white;
  background-color: #555555;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  background-color: var(--primary-color-disabled);
  border-color: var(--primary-color-disabled);
  cursor: not-allowed;
}

.text-dark {
  color: var(--text-dark-color);
}

.text-primary {
  color: var(--primary-color) !important;
}

.form-control,
.form-select,
.btn {
  padding: 9px;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.form-check-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(255, 122, 0, 0.25);
}

.form-control {
  background-color: rgba(246, 246, 246, 1);
}

.form-control::placeholder {
  color: rgba(176, 176, 176, 1);
  font-weight: 300;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(253, 121, 13, 0.25);
}

.section-title {
  font-size: 4rem;
}

.section-description {
  font-size: 1.4rem;
  width: 80%;
}

.background-image {
  position: absolute;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.bg-glass {
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 25px 25px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.logo-bottom {
  width: 136px;
  height: auto;
}

.satuan-waktu-container {
  width: 100px;
}

.satuan-waktu {
  margin-top: -8px;
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
    width: 100%;
  }

  .satuan-waktu-container {
    width: 65px;
  }

  .logo-bottom {
    width: 92px;
  }
}

@media screen and (max-width: 425px) {
  body {
    background-image: none !important;
    background-color: rgba(62, 62, 62, 1);
  }

  .content {
    padding-top: 180px !important;
  }

  .background-image {
    height: 55vh;
  }

  .background-image-container::after {
    content: "";
    width: 100%;
    height: 60px;
    background-image: linear-gradient(
      0deg,
      rgba(62, 62, 62, 1),
      rgba(62, 62, 62, 0)
    );
    position: absolute;
    top: calc(55vh - 60px);
  }

  .section-title {
    font-size: 2.3rem;
  }
}
