@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Lora&family=Roboto+Mono&display=swap");
body {
  font-family: "Lora", serif;
  line-height: 1.6;
  color: #1a237e;
  background-color: #e8eaf6;
}

h1, h2, h3, h4 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #0d133f;
}

code, pre {
  font-family: "Roboto Mono", monospace;
}

/* Links */
a {
  color: #536dfe;
}
a:hover {
  color: rgb(49.4947976879, 80.5595375723, 253.8052023121);
}

/* Parallax Hero Sections */
.parallax {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: white;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--overlay-opacity, 0.35));
  z-index: 1;
}
.parallax .overlay {
  position: relative;
  z-index: 2;
  padding: 2rem;
  border-radius: 10px;
}
.parallax.light-overlay::before {
  background: rgba(255, 255, 255, var(--overlay-opacity, 0.4));
}
.parallax.dark-overlay::before {
  background: rgba(0, 0, 0, var(--overlay-opacity, 0.4));
}

/* Cards */
.card {
  border-radius: 12px;
  padding: 1.5rem;
  background-color: #e8eaf6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

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