*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  width: 100vw;
  overflow-x: hidden;
  min-height: 100vh;
  scrollbar-width: thin;
  scrollbar-color: rgba(180, 140, 90, 0.25) transparent;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(180,140,90,0.25); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: rgba(180,140,90,0.5); }

a {
  color: var(--link);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 10px;
}

main {
  flex: 1;
}

.content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.75rem 1rem;
  width: 100%;
}

.section-heading {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--text);
  line-height: 1.3;
}

.section-heading-center {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
}

.verse-inline {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  color: var(--verse-color);
}

.text-body {
  font-size: 0.97rem;
  opacity: 0.85;
  max-width: 700px;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.text-intro {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 1.25rem;
  max-width: 650px;
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 1rem;
}

.hero-verse-plain {
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.hidden {
  display: none;
}
