body {
  background: #222;
  margin: 0;
}

h1,
h2 {
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  color: #d4af37;
}

p,
li,
.journal-line,
.checkbox-group label,
.daily-scripture {
  font-family: 'Montserrat', sans-serif;
  color: #d6d6d6;
}

.page {
  width: 8.5in;
  height: 11in;
  margin: 0 auto;
  background: #161616;
  color: white;
  padding: 0.25in;
  box-sizing: border-box;
  border: 2px solid #d4af37;
  page-break-after: always;
  break-after: page;
  position: relative;
  overflow: hidden;
}

h1 {
  font-size: 42px;
  margin-top: 0;
}

h2 {
  margin-top: 32px;
}

p,
li {
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

/* COVER PAGE */

.cover-page {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0.25in;
}

.cover-content h1 {
  font-size: 72px;
}

.tagline {
  color: #d4af37;
  font-size: 24px;
  margin-top: 30px;
}

.cover-logo {
  width: 180px;
  height: auto;
  margin-bottom: 30px;
}

/* GENERAL LOGO */

.page-logo {
  position: absolute;
  top: 35px;
  right: 35px;
  width: 60px;
  height: auto;
  z-index: 2;
}

.watermark-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0.035;
  z-index: 0;
}

/* TRACKER PAGE */

.tracker-page {
  display: flex;
  flex-direction: column;
  padding: 0.25in;
}

.tracker-page h1 {
  font-size: 34px;
  margin: 0 0 12px 0;
  position: relative;
  z-index: 2;
}

.daily-scripture {
  text-align: center;
  font-size: 11px;
  line-height: 1.25;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}

.tracker-box {
  border: 2px solid #d4af37;
  flex: 1;
  padding: 18px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.tracker-section {
  margin-bottom: 18px;
}

.tracker-section h2 {
  font-size: 17px;
  margin: 0 0 8px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.45);
  padding-bottom: 4px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.checkbox-group label {
  font-size: 13px;
}

.journal-line {
  margin-top: 8px;
  margin-bottom: 6px;
  font-size: 12.5px;
  line-height: 1.35;
}

.writing-space {
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  height: 24px;
  margin-bottom: 8px;
}

.writing-space.large {
  height: 45px;
}

.spiritual-section {
  height: 150px;
}

.spiritual-prompts {
  height: 95px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.encouragement {
  margin-top: 40px;
  border-left: 4px solid #d4af37;
  padding-left: 20px;
  color: #d4af37;
  font-size: 18px;
  line-height: 1.4;
}

/* FOOTER */

.footer {
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  color: rgba(212, 175, 55, 0.55);
  z-index: 2;
}

/* PRINT FIXES */

@media print {
  body {
    background: #161616;
  }

  .page {
    margin: 0;
    page-break-after: always;
    break-after: page;
  }
}
.download-button {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  border: 2px solid #d4af37;
  color: #d4af37;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 18px;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.download-button:hover {
  background: #d4af37;
  color: #161616;
}
.about-community-link {
  text-align: center;
  margin-top: 50px;
}

.community-button {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid #d4af37;
  background: #d4af37;
  color: #161616;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 18px;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.community-button:hover {
  opacity: 0.85;
}