/* verso.css — Shared styles for all 81 verse pages */
/* El Poder Sutil — elpodersutil.com */

:root {
  --charcoal: #2b3338;
  --charcoal-light: #3d474d;
  --charcoal-dark: #1e2528;
  --gray-medium: #5a6670;
  --gray-light: #8a939a;
  --gray-subtle: #f7f7f7;
  --white: #ffffff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.8;
}
.chinese { 
  font-family: 'Ma Shan Zheng', 'KaiTi', 'STKaiti', cursive; 
}
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--charcoal); }
.logo .chinese { font-size: 28px; }
.logo-text { font-size: 13px; letter-spacing: 2px; font-weight: 600; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-family: 'Source Sans Pro', sans-serif; font-size: 13px;
  letter-spacing: 1px; text-decoration: none; color: var(--charcoal);
  text-transform: uppercase; transition: color 0.2s; cursor: pointer;
}
.nav-links a:hover { color: var(--gray-medium); }
.app { padding-top: 70px; }
.reader {
  max-width: 720px; margin: 0 auto; padding: 60px 24px 120px;
}
.reader-header {
  text-align: center; margin-bottom: 48px;
  padding-bottom: 32px; border-bottom: 1px solid #eee;
}
.reader-label {
  font-family: 'Source Sans Pro', sans-serif; font-size: 12px;
  letter-spacing: 3px; color: var(--gray-light);
  text-transform: uppercase; margin-bottom: 8px;
}
.reader-title { font-size: 32px; font-weight: 400; margin-bottom: 24px; }
.verse-character {
  font-family: 'Ma Shan Zheng', 'KaiTi', cursive;
  font-size: 80px; line-height: 1; margin-bottom: 8px;
}
.verse-pinyin {
  font-family: 'Source Sans Pro', sans-serif; font-size: 14px;
  color: var(--gray-light);
}
.verse-interpretation { text-align: center; margin-bottom: 40px; }
.verse-interpretation p {
  font-size: 19px; font-style: italic; line-height: 1.9;
  margin-bottom: 20px; color: var(--charcoal);
}
.verse-interpretation p:last-child { margin-bottom: 0; }
.verse-etymology {
  background: var(--gray-subtle); padding: 24px;
  border-radius: 4px; margin-bottom: 32px;
}
.section-label {
  font-family: 'Source Sans Pro', sans-serif; font-size: 11px;
  letter-spacing: 2px; color: var(--gray-light);
  text-transform: uppercase; margin-bottom: 8px;
}
.etymology-text {
  font-size: 16px; color: var(--charcoal-light); line-height: 1.7;
}
.verse-original {
  margin-bottom: 32px; padding: 24px; border-left: 3px solid #eee;
}
.original-text {
  font-size: 17px; color: var(--charcoal-light); line-height: 1.8;
}
.verse-practice {
  background: var(--charcoal); color: white;
  padding: 32px; border-radius: 4px;
}
.verse-practice .section-label { color: rgba(255,255,255,0.6); }
.practice-text { font-size: 17px; line-height: 1.8; }

/* Verse breadcrumb */
.verse-breadcrumb {
  font-family: 'Source Sans Pro', sans-serif; font-size: 12px;
  letter-spacing: 1px; color: var(--gray-light);
  margin-bottom: 12px;
}
.verse-breadcrumb a {
  color: var(--gray-light); text-decoration: none;
  transition: color 0.2s;
}
.verse-breadcrumb a:hover { color: var(--charcoal); }

/* Verse CTA section */
.verse-cta {
  margin-top: 40px; padding: 32px;
  background: var(--gray-subtle); border-radius: 4px;
  text-align: center;
}
.verse-cta-title {
  font-size: 20px; font-weight: 400; margin-bottom: 8px;
}
.verse-cta-text {
  font-family: 'Source Sans Pro', sans-serif; font-size: 14px;
  color: var(--gray-medium); margin-bottom: 20px; line-height: 1.6;
}
.verse-cta-form {
  display: flex; gap: 10px; max-width: 440px; margin: 0 auto 16px;
  flex-wrap: wrap; justify-content: center;
  position: relative;
}
.verse-cta-form input[type="email"] {
  flex: 1 1 220px; padding: 12px 16px; font-size: 14px;
  border: 1px solid #ddd; border-radius: 4px;
  font-family: 'Source Sans Pro', sans-serif; outline: none;
  transition: border-color 0.2s;
}
.verse-cta-form input[type="email"]:focus { border-color: var(--charcoal); }
.verse-cta-form button {
  padding: 12px 24px; font-size: 13px;
  font-family: 'Source Sans Pro', sans-serif; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  border: none; border-radius: 4px;
  background: var(--charcoal); color: white;
  cursor: pointer; transition: background 0.2s;
}
.verse-cta-form button:hover { background: var(--charcoal-dark); }
.verse-cta-form .hp-field {
  opacity: 0; position: absolute; top: 0; left: 0;
  height: 0; width: 0; z-index: -1; pointer-events: none;
}
.verse-cta-buy {
  font-family: 'Source Sans Pro', sans-serif; font-size: 13px;
  color: var(--gray-light); margin-top: 12px;
}
.verse-cta-buy a {
  color: var(--gray-medium); text-decoration: underline;
  transition: color 0.2s;
}
.verse-cta-buy a:hover { color: var(--charcoal); }

/* Navigation */
.reader-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; margin-top: 48px; border-top: 1px solid #eee;
}
.nav-btn {
  font-family: 'Source Sans Pro', sans-serif; font-size: 13px;
  letter-spacing: 1px; text-decoration: none; color: var(--charcoal);
  padding: 12px 20px; border: 1px solid #ddd; border-radius: 4px;
  cursor: pointer; transition: all 0.2s; background: white;
  display: inline-block;
}
.nav-btn:hover { background: var(--charcoal); color: white; border-color: var(--charcoal); }
.nav-btn.disabled { opacity: 0.3; pointer-events: none; }
.nav-center {
  font-family: 'Source Sans Pro', sans-serif; font-size: 12px;
  color: var(--gray-light);
}
.back-link {
  display: block; text-align: center; padding: 16px;
  font-family: 'Source Sans Pro', sans-serif; font-size: 13px;
  color: var(--gray-medium); text-decoration: none; margin-top: 24px;
}
.back-link:hover { color: var(--charcoal); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; z-index: 200;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--charcoal); transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none !important; position: absolute; top: 100%;
    left: 0; right: 0; background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px); flex-direction: column;
    padding: 20px 24px; gap: 20px; border-bottom: 1px solid #eee;
  }
  .nav-links.open { display: flex !important; }
  .reader { padding: 40px 20px 80px; }
  .reader-title { font-size: 26px; }
  .verse-character { font-size: 60px; }
  .verse-interpretation p { font-size: 17px; }
  .reader-nav { flex-direction: column; gap: 16px; }
  .verse-cta-form { flex-direction: column; }
  .verse-cta-form input[type="email"],
  .verse-cta-form button { width: 100%; }
}
