/* ===== Base Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Georgia', serif;
  font-size: 16px;
  line-height: 1.7;
  background-color: #f7f5f9; /* soft lavender-beige tone */
  color: #2c2c2c; /* neutral dark gray for base text */
  text-align: center;
}

/* ===== Container Styles ===== */
.container {
  max-width: 700px;
  margin: 3em auto;
  padding: 2em;
  background-color: rgba(255, 255, 255, 0.88);
  border-radius: 12px;
  border: 1px solid #e6dfe8;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* ===== Headings ===== */
h1 {
  font-size: 2em;
  color: #5c4766; /* muted purple-gray */
  margin-bottom: 0.4em;
}

h2 {
  font-size: 1.4em;
  color: #6a5c76;
  margin: 1.5em 0 0.5em 0;
}

/* ===== Paragraphs & Text Elements ===== */
p {
  margin-bottom: 1.2em;
  color: #444; /* softened neutral */
}

.whisper {
  font-style: italic;
  color: #777;
}

.glow {
  color: #5c4766;
  text-shadow: 0 0 5px #e8dff1;
}

/* ===== Links ===== */
a {
  color: #7e5fa0;
  text-decoration: none;
  border-bottom: 1px dashed #b8a3cc;
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: #9b7dc1;
  border-bottom: 1px solid #9b7dc1;
}

/* ===== Audio Player ===== */
audio {
  margin-top: 2em;
  width: 100%;
}

/* ===== Breathing Circle (for Cal or calming visuals) ===== */
.breath-circle {
  width: 80px;
  height: 80px;
  margin: 2em auto;
  border-radius: 50%;
  background-color: #d3cbe6;
  opacity: 0.4;
  animation: breathe 6s infinite ease-in-out;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.4); opacity: 0.8; }
}

/* ===== Modal or Letter Styling ===== */
.letter {
  background-color: #ffffff;
  border: 1px solid #e1dce9;
  padding: 1.5em;
  margin-top: 2em;
  border-radius: 10px;
  font-family: 'Georgia', serif;
  box-shadow: 0 0 12px rgba(185, 170, 210, 0.2);
}

/* ===== Footer Navigation ===== */
.footer-link {
  display: inline-block;
  margin-top: 2em;
  font-size: 0.95em;
  color: #7e5fa0;
}
