*, *::before, *::after {
  box-sizing: border-box;
}

body {
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

button {
  all: unset;
  cursor: pointer;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

header {
  color: #eee;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  z-index: 5;
}
header .contact {
  background: rgb(26, 116, 255);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .contact > * {
  padding: 0.5em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
header .contact a {
  color: inherit;
  text-decoration: none;
}
header .contact a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.main-nav {
  background: rgba(255, 255, 255, 0.8666666667);
  backdrop-filter: blur(0.5rem);
  color: #222;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.main-nav ul a {
  text-decoration: none;
  color: inherit;
  padding: 1em;
  display: block;
  position: relative;
  transition: background-color 200ms ease;
}
.main-nav ul a::before {
  content: "";
  background: rgb(26, 116, 255);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: scale(0);
  height: 3px;
  transition: transform 200ms ease;
}
.main-nav ul a.active::before {
  transform: scale(1);
}
.main-nav ul a:hover {
  background: rgba(0, 0, 0, 0.8);
  color: white;
}

#open-navbar, #close-navbar {
  padding: 1em;
  display: block;
}
#open-navbar:hover, #close-navbar:hover {
  background: rgba(0, 0, 0, 0.5);
  color: #eee;
}

.logo img {
  max-height: 56px;
}

#overlay {
  backdrop-filter: blur(0.3rem);
  position: fixed;
  inset: 0;
  z-index: 4;
  display: none;
  visibility: hidden;
}
#overlay.active {
  display: block;
  visibility: visible;
}

#nav-links-container {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(1rem);
  color: #eee;
  text-align: right;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(calc(-100% - 2.5rem));
  transition: transform 200ms ease;
}
#nav-links-container ul {
  min-width: 75vw;
  min-height: 100vh;
  flex-direction: column;
}
#nav-links-container.active {
  transform: translateY(0);
}

@media screen and (min-width: 50em) {
  #open-navbar, #close-navbar {
    display: none;
  }
  #nav-links-container {
    background: transparent;
    color: #222;
    position: relative;
    transform: none;
  }
  #nav-links-container ul {
    min-width: fit-content;
    min-height: fit-content;
    flex-direction: row;
  }
}
.hero {
  padding: 2em;
  color: #eee;
  min-height: 80vh;
  position: relative;
}
.hero .hero__title {
  font-size: 3rem;
  animation: animasi-masuk 1500ms ease;
}
.hero .hero__subtitle {
  font-size: 1.5rem;
  animation: animasi-masuk 3000ms ease;
}

@keyframes animasi-masuk {
  0% {
    opacity: 0;
    transform: translateY(-2rem);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.hero::before {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  filter: brightness(0.4);
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url(../assets/image1.jpg);
  background-size: cover;
  background-position: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  text-align: center;
}

#buka-cta {
  background: #ddd;
  text-decoration: none;
  padding: 2rem;
  margin: 2rem;
  color: #222;
  align-self: center;
}

footer {
  background: #222;
  color: #eee;
  padding: 2em;
  display: flex;
  flex-direction: column;
}
footer .contact {
  display: flex;
  flex-direction: column;
}
footer .contact a {
  color: inherit;
  text-decoration: none;
}
footer .contact a:hover {
  text-decoration: underline;
}
footer .contact-item {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  gap: 0.5rem;
}

.footer__map-container {
  flex: 2 1 0;
  padding: 0.5rem;
}

.footer__contact {
  flex: 1 1 0;
}

#map-iframe {
  min-width: 100%;
}

@media screen and (min-width: 50em) {
  footer {
    flex-direction: row;
  }
}
main img {
  border-radius: 0.5rem;
}

.main-section {
  padding: 2rem;
}
.main-section h2 {
  position: relative;
  width: fit-content;
}
.main-section h2::before {
  content: "";
  background: rgb(42, 42, 199);
  position: absolute;
  width: 105%;
  height: 0.2rem;
  left: -0.1rem;
  bottom: -0.1rem;
}
.main-section img {
  border-radius: 0.5rem;
}

#informasi {
  background: #222;
  color: #eee;
}

.infobox {
  outline: 1px solid;
  padding: 1em;
}
.infobox time {
  font-weight: bold;
}

.fasilitas-subsection {
  padding-block: 2rem;
  max-width: 75ch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.fasilitas-subsection img {
  margin: auto;
}

@media screen and (min-width: 50em) {
  .fasilitas-subsection {
    max-width: 100%;
    flex-direction: row;
  }
  .fasilitas-subsection img {
    max-width: 50%;
  }
  .fasilitas-subsection--2 img {
    order: 1;
  }
}
body {
  overflow-x: hidden;
}

@media (prefers-reduced-motion) {
  * {
    animation: none;
  }
}

/*# sourceMappingURL=style.css.map */
