/* Xoland Lithuania - Unique modern journal design */
/* Palette: warm cream, sage green, coral accent, charcoal text */
/* Book-like typography, generous spacing, clean UI */

:root {
  --cream: #FAF7F2;
  --sage: #5D7A5D;
  --coral: #D97757;
  --charcoal: #1F1F1F;
  --warmgray: #5C5C5C;
  --border: #E8E0D5;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--cream);
  color: var(--charcoal);
}

.article-body, .prose {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.78;
  color: #282828;
}

h1, h2, h3 {
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 600;
}

.journal-card {
  background-color: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.journal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.06);
}

.accent-line {
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--coral));
  border-radius: 3px;
}

.quote-block {
  border-left: 6px solid var(--sage);
  background-color: #F4F0E8;
  padding: 1.75rem 2rem;
  font-style: italic;
}

.btn-primary {
  background-color: var(--sage);
  color: white;
  padding: 14px 32px;
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background-color: #4A614A;
}

.btn-secondary {
  color: var(--sage);
  padding: 14px 28px;
  border: 2px solid var(--sage);
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background-color: var(--sage);
  color: white;
}

input, textarea {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 15px;
  background: white;
}

input:focus, textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(93, 122, 93, 0.08);
  outline: none;
}

.nav-link {
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--sage);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--sage);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.pull-quote {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--sage);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  margin: 2.5rem 0;
}

.footer {
  background-color: #F0EBE3;
  border-top: 1px solid var(--border);
}

.decorative-bar {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--coral), transparent);
}
