/* =================================================================
   blog.yoursouldances.com — style
   Paleta violeta cosmic + Inter + Playfair Display
   ================================================================= */

:root {
  --bg-deep: #050507;
  --bg-panel: #0d0a14;
  --violet-deep: #2E1F4A;
  --violet-primary: #5B3F8C;
  --violet-accent: #A78BFA;
  --violet-light: #C9B6F0;
  --gold: rgba(232, 196, 102, 0.95);
  --gold-soft: rgba(201, 168, 76, 0.65);
  --text: rgba(245, 245, 245, 0.96);
  --text-soft: rgba(220, 220, 220, 0.7);
  --border: rgba(167, 139, 250, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 300;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--violet-accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--violet-light); }
.serif { font-family: 'Playfair Display', serif; }
.italic { font-style: italic; }

/* === HEADER === */
.site-header {
  padding: 24px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(13, 10, 20, 0.5);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.brand {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: white;
}
.brand-sub {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: lowercase;
  color: var(--violet-accent);
  margin-top: 2px;
}
.site-nav {
  display: flex;
  gap: 24px;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}

/* === MAIN === */
.site-main {
  flex: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  width: 100%;
}

/* === HOMEPAGE — post list === */
.posts-intro {
  text-align: center;
  margin-bottom: 60px;
}
.posts-intro .eyebrow {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: lowercase;
  color: var(--violet-accent);
  margin-bottom: 16px;
}
.posts-intro h1 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  color: white;
  margin-bottom: 16px;
}
.posts-intro h1 em {
  font-weight: 600;
  color: var(--violet-accent);
}
.posts-intro p {
  color: var(--text-soft);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
  text-transform: lowercase;
}

.post-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.post-card {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.post-card:last-child { border-bottom: 0; }
.post-card .post-date {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: lowercase;
  color: var(--violet-accent);
  margin-bottom: 8px;
}
.post-card h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 8px;
}
.post-card h2 a { color: white; }
.post-card h2 a:hover { color: var(--violet-accent); }
.post-card .post-excerpt {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.post-card .post-more {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: var(--violet-accent);
}

/* === SINGLE POST === */
.post {
  max-width: 680px;
  margin: 0 auto;
}
.post-header {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.post-header .post-eyebrow {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: lowercase;
  color: var(--violet-accent);
  margin-bottom: 16px;
}
.post-header h1 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  color: white;
  margin-bottom: 16px;
}
.post-header h1 em { color: var(--violet-accent); font-weight: 600; }
.post-header .post-meta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: var(--text-soft);
}

.post-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
}
.post-body h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  margin: 48px 0 16px;
  color: var(--violet-accent);
}
.post-body h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin: 32px 0 12px;
  color: var(--violet-light);
}
.post-body p { margin-bottom: 20px; }
.post-body strong { color: white; font-weight: 600; }
.post-body em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--violet-accent);
}
.post-body blockquote {
  border-left: 2px solid var(--violet-accent);
  padding: 8px 24px;
  margin: 32px 0;
  background: rgba(167, 139, 250, 0.05);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--violet-light);
}
.post-body blockquote p:last-child { margin-bottom: 0; }
.post-body ul, .post-body ol {
  margin: 16px 0 20px 24px;
}
.post-body li { margin-bottom: 8px; }
.post-body ul li::marker { color: var(--violet-accent); }
.post-body hr {
  border: none;
  text-align: center;
  margin: 48px 0;
}
.post-body hr::after {
  content: "❋";
  color: var(--violet-accent);
  font-size: 14px;
  letter-spacing: 0.3em;
}

.post-cta {
  margin-top: 60px;
  padding: 32px 24px;
  background: linear-gradient(180deg, rgba(91, 63, 140, 0.1), rgba(46, 31, 74, 0.2));
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
}
.post-cta .eyebrow {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: lowercase;
  color: var(--gold-soft);
  margin-bottom: 12px;
}
.post-cta h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: white;
  margin-bottom: 12px;
}
.post-cta p {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 20px;
}
.post-cta a {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(167, 139, 250, 0.12);
  color: var(--violet-accent);
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  transition: all 0.25s;
}
.post-cta a:hover {
  background: rgba(167, 139, 250, 0.18);
  border-color: var(--violet-accent);
}

/* === FOOTER === */
.site-footer {
  padding: 60px 24px 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}
.footer-imprint {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--violet-accent);
  margin-bottom: 12px;
}
.footer-mission {
  font-size: 12px;
  color: var(--gold-soft);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.footer-links {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: var(--text-soft);
}
.footer-links a { margin: 0 8px; }

/* === RESPONSIVE === */
@media (max-width: 720px) {
  .site-header { padding: 16px; }
  .site-nav { gap: 16px; font-size: 12px; }
  .site-main { padding: 40px 16px 60px; }
}

/* === LANGUAGE SWITCHER === */
.lang-switcher {
  position: relative;
  display: inline-block;
}
.lang-toggle {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--violet-accent);
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
}
.lang-toggle:hover {
  color: var(--violet-light);
  border-color: var(--violet-accent);
}
.lang-toggle[aria-expanded="true"] {
  background: rgba(167, 139, 250, 0.08);
  border-color: var(--violet-accent);
}
.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 140px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 0;
  display: none;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  z-index: 200;
}
.lang-menu.open {
  display: flex;
}
.lang-link {
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--text-soft);
  border-left: 2px solid transparent;
  transition: all 0.2s;
}
.lang-link:hover {
  color: var(--violet-light);
  background: rgba(167, 139, 250, 0.05);
}
.lang-link.active {
  color: var(--violet-accent);
  border-left-color: var(--violet-accent);
  background: rgba(167, 139, 250, 0.06);
}
