body {
  font-family: "Merriweather", serif;
  /* font-family: "Cinzel", serif; */
  background-color: #1c0c24;
}

.cinzel {
  font-family: "Cinzel", serif;
}

.scrolled {
  background-color: #342d3a;
}

.navbar:hover {
  background-color: #342d3a;
}

.nav-link {
  color: #dc3545;
}

.nav-link:hover {
  color: #f8f9fa;
}

/* .navbar:not(.collapse) {
  background-color: #121624;
} */

.demon-card {
  position: relative;
  aspect-ratio: 7/8;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 1rem;
}

.demon-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 50%);
}

.demon-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1rem;
  z-index: 2;
  transform: translateY(0);

  /* animasi */
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.demon-card:hover .demon-card-content {
  transform: translateY(0);
}

.demon-title {
  color: #f8f9fa;
}

.grimoire-card {
  /* ukuran card sama */
  display: flex;
  flex-direction: column;

  background-color: #121624;
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
}

.grimoire-img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 10/8;
}

.line {
  width: 60px;
  height: 4px;
}

.accordion {
  border-style: none;
}

.accordion-button {
  background-color: #dc3545;
  border-style: none;
}
.accordion-button:not(.collapse) {
  background-color: #dc3545;
  border-style: none;
}

.accordion-item {
  background-color: rgba(0, 0, 0, 0.2);
  border-style: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: 1px solid white;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .demon-card-content {
    transform: translateY(calc(100% - 62px));
  }

  .demon-title {
    color: #dc3545;
  }
}

@media (min-width: 992px) {
  .demon-card-content {
    transform: translateY(calc(100% - 65px));
  }
}
