@charset "UTF-8";
body {
  background-color: #f3f0ee;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

h1 {
  font-family: "Merriweather Sans", serif;
  font-weight: 500;
  font-size: 2rem;
  color: #222222;
  margin-bottom: 36px;
}

h2 {
  font-family: "Merriweather Sans", serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: #333333;
  margin-top: 48px;
  margin-bottom: 24px;
}

h3 {
  font-family: "Merriweather Sans", serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2rem;
  color: #444444;
  margin-top: 32px;
  margin-bottom: 12px;
}

p {
  font-family: "Merriweather", serif;
  color: #555555;
}

p.lead {
  font-family: "Merriweather", serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #555555;
}

a {
  text-transform: none;
  color: #444444;
  text-underline-offset: 0.25em !important;
}

a:hover {
  text-transform: none;
  color: #333333;
}

ol {
  font-family: "Merriweather", serif;
  color: #555555;
}

ol li {
  margin-bottom: 0.5rem; /* Space between list items */
}

.text-danger {
  color: #de5a44;
}

.text-danger-subtle {
  color: #e47a69;
}

button,
.btn {
  font-family: "Merriweather Sans", sans-serif;
}

.book-cover {
  width: 100%;
  padding-top: 150%; /* Adjust based on the aspect ratio of your book cover */
  background-size: cover;
  background-position: center;
  display: block;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
  margin: 20px auto;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease; /* Smooth transition for hover effects */
}

.book-cover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2%; /* Positioned close to the left edge but not on it, adjust as needed */
  height: 100%;
  width: 6px; /* Thin strip to simulate the shadow */
  background: rgba(0, 0, 0, 0.1); /* Subtle shadow color */
  box-shadow: inset 3px 0 3px -3px rgba(0, 0, 0, 0.5); /* Inset shadow for the groove effect */
  transition: transform 0.5s ease, left 0.5s ease; /* Smooth transition for hover effects */
  opacity: 1; /* Always visible */
}

.book-cover:hover {
  transform: perspective(1000px) rotateY(-10deg); /* More dramatic perspective and rotation on hover */
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.5);
}

/* Base button style */
.btn-blood {
  position: relative;
  overflow: hidden;
  border: 2px solid #990000;
  color: #990000;
  background: transparent;
  transition: color 0.3s ease;
}

/* Inner “blood” animation */
.btn-blood::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, #cc0000 25%, #990000 70%);
  border-radius: 40%;
  transform: translateY(0);
  transition: transform 0.6s ease-in-out;
  animation: slosh 3s infinite ease-in-out alternate;
  z-index: 0;
}

/* Hover state: fill with blood */
.btn-blood:hover::before {
  top: 0;
  transform: translateY(-25%);
}

.btn-blood:hover {
  color: #fff;
  border-color: #990000;
}

/* Ensure text stays above */
.btn-blood span,
.btn-blood {
  position: relative;
  z-index: 1;
}

/* Blood sloshing effect */
@keyframes slosh {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10%) rotate(2deg);
  }
  100% {
    transform: translateY(0) rotate(-2deg);
  }
}
.site-logo {
  max-height: 60px;
  height: auto;
  width: auto;
}

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