/* Le Khoa užrašai - Unique literary journal style for Lithuania 2026
   Warm cream background, soft lavender accents, elegant typography
   No green tones, modern yet timeless, fully responsive
*/

:root {
  --lavender: #7C6B9E;
  --rose: #C9A9A6;
  --cream: #FDF8F3;
  --stone: #2C2A3A;
  --sand: #EDE4D9;
  --accent: #A38F9E;
}

body {
  font-family: 'Inter', system_ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--stone);
  background-color: var(--cream);
  line-height: 1.75;
}

/* Literary feel for headings */
h1, h2, h3, .serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.3;
}

/* Unique button style - soft pill with border */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 9999px;
  border: 2px solid var(--lavender);
  color: var(--lavender);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

.btn:hover {
  background-color: var(--lavender);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgb(124 107 158 / 0.2);
}

.btn-primary {
  background-color: var(--lavender);
  color: white;
  border-color: var(--lavender);
}

.btn-primary:hover {
  background-color: #6B5B8A;
  border-color: #6B5B8A;
}

/* Journal card - unique asymmetric shadow and left accent */
.journal-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px -15px rgba(44, 42, 58, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  border: 1px solid #EDE4D9;
  position: relative;
}

.journal-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--lavender), var(--rose));
}

.journal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(44, 42, 58, 0.15);
}

/* Pull quote box - unique style */
.pullquote {
  background: linear-gradient(135deg, #F8F4FF 0%, #FDF8F3 100%);
  border-left: 6px solid var(--lavender);
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
  font-style: italic;
  font-size: 1.15rem;
  color: #4A4759;
  border-radius: 0 16px 16px 0;
}

/* Section divider - decorative line */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rose), transparent);
  margin: 3rem 0;
}

/* Form inputs - clean with focus ring */
input, textarea, select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #D1D5DB;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: white;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--lavender);
  box-shadow: 0 0 0 4px rgba(124, 107, 158, 0.1);
}

/* Unique header */
.site-header {
  background: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #EDE4D9;
}

/* Mobile menu */
#mobile-menu {
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Article content */
.article-content p {
  margin-bottom: 1.5rem;
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.65rem;
  color: var(--stone);
}

.article-content ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.75rem;
  position: relative;
}

/* Footer unique */
.site-footer {
  background: #2C2A3A;
  color: #EDE4D9;
}

.site-footer a {
  color: #C9A9A6;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: white;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .journal-card::before {
    width: 4px;
  }
  
  .pullquote {
    padding: 1.5rem;
    font-size: 1.05rem;
  }
}

/* Subtle decorative elements */
.decorative-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--lavender), var(--rose));
  border-radius: 3px;
  margin: 1.5rem 0;
}

/* Author avatar placeholder - CSS only */
.author-avatar {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--lavender) 0%, #A38F9E 100%);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  font-weight: 600;
  box-shadow: 0 10px 25px -5px rgb(124 107 158 / 0.3);
  flex-shrink: 0;
}