/* Custom overrides on top of Tailwind CDN */

body {
  font-feature-settings: "ss01", "ss02";
}

/* Reading section collapsibles */
.reading-section {
  border-left: 2px solid rgb(139 111 71 / 0.3);
  padding-left: 1.25rem;
  transition: border-color 200ms;
}
.reading-section:hover {
  border-left-color: rgb(201 123 92 / 0.6);
}
.reading-section summary {
  cursor: pointer;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 500;
  list-style: none;
  padding: 0.25rem 0;
}
.reading-section summary::-webkit-details-marker {
  display: none;
}
.reading-section summary::before {
  content: "+";
  display: inline-block;
  width: 1rem;
  color: rgb(201 123 92);
}
.reading-section[open] summary::before {
  content: "−";
}
.reading-section .reading-body {
  padding-top: 0.75rem;
  padding-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgb(42 32 24 / 0.85);
}
.reading-section .reading-body h1,
.reading-section .reading-body h2,
.reading-section .reading-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.reading-section .reading-body p {
  margin-bottom: 0.75rem;
}
.reading-section .reading-body ul,
.reading-section .reading-body ol {
  margin-left: 1.25rem;
  margin-bottom: 0.75rem;
}
.reading-section .reading-body li {
  margin-bottom: 0.25rem;
}
.reading-section .reading-body strong {
  color: rgb(201 123 92);
  font-weight: 600;
}
.reading-section .reading-body em {
  color: rgb(92 74 107);
}

/* Chat bubbles */
.chat-bubble {
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  max-width: 85%;
  line-height: 1.5;
  font-size: 0.95rem;
}
.chat-bubble.user {
  background: rgb(201 123 92 / 0.15);
  margin-left: auto;
  border-bottom-right-radius: 0.25rem;
}
.chat-bubble.coach {
  background: white;
  border: 1px solid rgb(139 111 71 / 0.15);
  border-bottom-left-radius: 0.25rem;
  white-space: pre-wrap;
}
.chat-bubble.coach strong {
  color: rgb(92 74 107);
}

/* Numerology cards */
.num-card {
  background: white;
  border: 1px solid rgb(139 111 71 / 0.2);
  border-radius: 0.75rem;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: transform 150ms, box-shadow 150ms;
}
.num-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgb(139 111 71 / 0.25);
}
.num-card .num-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgb(139 111 71);
  margin-bottom: 0.5rem;
}
.num-card .num-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: rgb(201 123 92);
  line-height: 1;
}
.num-card .num-meaning {
  font-size: 0.75rem;
  color: rgb(42 32 24 / 0.7);
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* Subtle scroll for chat */
#chat-messages::-webkit-scrollbar {
  width: 6px;
}
#chat-messages::-webkit-scrollbar-thumb {
  background: rgb(139 111 71 / 0.3);
  border-radius: 3px;
}

/* Loading shimmer */
.loading-shimmer {
  background: linear-gradient(90deg, rgb(139 111 71 / 0.05) 0%, rgb(139 111 71 / 0.15) 50%, rgb(139 111 71 / 0.05) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
