body {
  background-color: #f4f0ff; /* light lavender background */
  color: #2b0047;            /* deep purple text */
  font-family: system-ui, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

h1, h2, h3 {
  color: #5a2a90; /* orchid/deep purple */
  margin-bottom: 0.5em;
}

button {
  background-color: #9e6fff;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  margin: 1rem 0;
}

button:hover {
  background-color: #7a4eea;
}

.card-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.card img {
  max-height: 300px;
  box-shadow: 0 0 20px rgba(60, 0, 90, 0.2); /* Optional: keep the shadow */
}

.interpretation {
  background-color: #f2e9ff;
  color: #2e004f;
  text-align: left;
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.interpretation h2,
.interpretation h3 {
  color: #4d008a;
}

.interpretation em {
  color: #7b35c8;
  font-style: italic;
}

header {
  background-color: transparent;
  text-align: center;
  padding: 1rem;
}

.site-logo {
  max-width: 200px;
  height: auto;
  transition: transform 0.3s ease;
}

.site-logo:hover {
  transform: scale(1.05);
}

footer {
  text-align: center;
  padding: 1.5rem;
  color: #6b4a8b;
  font-size: 0.9rem;
  background-color: #f2e9ff; /* matches your interpretation box */
  margin-top: 4rem;
  border-top: 1px solid #e0cce8;
}


