/* ===== Base ===== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 2rem 1rem;
  min-height: 100vh;

  background-color: #1a1a1a;
  color: #e6e1dd;

  font-family: "Cormorant Garamond", serif;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

main{
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== Header ===== */
.hero {
  margin-bottom: 2rem;
}

h1 {
  font-family: "Cinzel Decorative", cursive;
  font-size: 2.5rem;
  color: #d6bb7b;
  margin: 0 0 0.5rem;
}

h3 {
  border-bottom: 1px double #38302f;
  padding: 5px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  background: var(--secondary-color);
  padding: 4px 8px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

a:hover {
  text-decoration: underline;
  transform: scale(1.125);
  background: var(--action-color);
  box-shadow: 0 4px 8px rgba(203, 169, 108, 1);
}

a.ritual-button {
  display: inline-block;
  padding: 0.6em 1.2em;
  background-color: #e1062c; /* blood red */
  color: #f8f3e6;            /* bone text */
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.75em;
  box-shadow: 0 0 10px #e1062c77;
  transition: all 0.2s ease-in-out;
  text-align: center;
}

a.ritual-button:hover {
  background-color: #ff1f44;
  box-shadow: 0 0 15px #ff1f4477;
  transform: scale(1.03);
  color: #ffffff; /* optional brightening */
}

a.ritual-button:active {
  transform: scale(0.98);
  filter: brightness(0.9);
}



.subtitle {
  font-style: italic;
  color: #a8a29e;
  margin: 0;
}

/* ===== Callout Card ===== */
.callout {
  max-width: 600px;
  width: 100%;

  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid #38302f;

  background: rgba(38, 35, 34, 0.6);
}

.callout p {
  line-height: 1.6;
  margin: 0.75rem 0;
}

.lead {
  margin-top: 1.5rem;
}

/* ===== List ===== */
.vibe-list {
  list-style: none;
  padding: 1.5rem;
  margin: 1rem;
  margin-right: 0.5rem;
  margin-left: 0.5rem;

  border: 1px solid #38302f;
  border-radius: 6px;

  display: flex;
  flex-direction: column;
}

.vibe-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;

  padding: 0.75rem 1rem;
  border-bottom: 1px solid #38302f66;
}

.vibe-list li:last-child {
  border-bottom: none;
}

.bullet {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ===== Sigil ===== */
.sigil {
  margin-top: 1.5rem;
  width: 50%;
  max-width: 260px;
  aspect-ratio: 1;
}

/* ===== Footer ===== */
.footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #8c7e72;
}

.footer span {
  display: block;
  margin-top: 0.25rem;
}