:root {
  /* --primary: #429357; */
  --primary : #F9C202;
  --secondary : #0657F4;
  --accent : #2EF42B;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto";
}

body {
  font-family: "Lato";
}

.navigation {
  /* background-color: hsla(220, 18%, 17%, 0.55); */
  background-color: hsl(219.58, 95.2%, 49.02%, 0.55);
  backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  z-index: 1000;
}

.navigation__content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin: 0 auto;

}

.hero {
  background-image: linear-gradient(135deg, rgba(8, 42, 153, 0.2) 0%, rgba(0, 33, 14, 0.2) 100%), url('../images/gedung-sate.jpg');
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 700px;
  padding-top: 120px;
  border-bottom-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
}

.page-header {
  height: 240px;
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 33, 14, 0.8) 100%), url('../images/dinas-marga.webp');
  background-size: cover;
  background-position: center center;
  backdrop-filter: blur(8px);
  position: relative;
}

/* core */
/* button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  border: none;
  border-radius: 0.25rem;
  cursor: pointer;

  font-family: inherit;
  font-weight: 600;
  line-height: 1;

  text-decoration: none;
  white-space: nowrap;
  padding: 1rem 1.5rem;

  transition:
    background-color 0.2s,
    color 0.2s,
    transform 0.15s,
    opacity 0.2s;
}

.btn:hover {
  opacity: 0.9;
}

.btn:active {
  transform: scale(0.98);
}

.btn:disabled,
.btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* button variant */
.btn--primary {
  background: var(--primary);
  color: #000;
}

.btn--primary:hover {
  background: color-mix(in srgb, var(--primary), black 10%);
}

.btn--secondary {
  background: var(--secondary);
  color: #fff;
}

.btn--secondary:hover {
  background: color-mix(in srgb, var(--secondary), black 10%);
}



.btn--outline-transparent {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.btn--outline-transparent:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.btn--white {
  background-color: #fff;
  color: #000;
}

.px-8 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
}
