/* Lulla.net Custom Styles */

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* Body typography for Hindi/English */
body {
  font-family: 'Noto Sans', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2D1B0E;
  background-color: #FFF8F0;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Serif', 'Noto Serif Devanagari', Georgia, serif;
  color: #8B1A1A;
  letter-spacing: -0.01em;
}

h1 { font-weight: 700; }
h2 { font-weight: 600; }

/* Links */
a { color: #D4831F; transition: color 0.2s ease; }
a:hover { color: #8B1A1A; }

/* Hero section */
.lulla-hero {
  background: linear-gradient(135deg, #8B1A1A 0%, #D4831F 50%, #8B1A1A 100%);
  color: #FFF8F0;
  padding: 80px 40px;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 40px;
}
.lulla-hero h1 { color: #FFF8F0; font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 16px; }
.lulla-hero p { font-size: 1.2rem; opacity: 0.92; max-width: 700px; margin: 0 auto; }

/* Chapter cards grid */
.chapter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

/* Card styles for chapters */
.wp-block-group.chapter-card,
.chapter-card {
  background: #FDF5E6;
  border: 1px solid #F5E6CC;
  border-radius: 10px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.chapter-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 26, 26, 0.12);
}
.chapter-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.chapter-card p { font-size: 0.95rem; color: #6B5B4E; }

/* Section divider */
.lulla-divider {
  text-align: center;
  margin: 50px 0;
  position: relative;
}
.lulla-divider::before {
  content: '॥';
  font-size: 2rem;
  color: #D4831F;
}

/* Blockquote - for shlokas */
blockquote {
  border-left: 4px solid #D4831F;
  background: #FDF5E6;
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
  font-family: 'Noto Serif', 'Noto Serif Devanagari', Georgia, serif;
  font-style: normal;
}

/* Navigation */
.wp-block-navigation a {
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Footer */
.wp-block-template-part footer,
footer.wp-block-template-part {
  background: #2D1B0E;
  color: #F5E6CC;
}

/* Om symbol decoration */
.om-decoration {
  font-size: 3rem;
  color: #D4831F;
  text-align: center;
  line-height: 1;
  margin: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .lulla-hero { padding: 50px 20px; }
  .chapter-grid { grid-template-columns: 1fr; }
}
