html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background-color: #000000;                 /* fallback color while image loads */
  background: url('../assets/images/proverb-bg.webp') no-repeat;
  background-size: cover;
  background-attachment: fixed; /* keeps it pinned while scrolling */
}

/* Proverb content container */
.proverb-container {
  max-width: 600px;
  margin: 40px auto;
  background: rgba(0,0,0,0.65);
  padding: 20px 30px 60px; /* extra bottom padding for footer */
  box-shadow: 0 8px 30px rgba(0,0,0,0.75);
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.proverb-container h1 {
  font-size: 2.1rem;
  color: #eec01b;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
}
.proverb-container h3 {
  font-size:1.1rem;
  color: #b99100;
  text-shadow: 4px 4px 5px rgba(0,0,0,0.8);
}
/* targets <div id="proverbContent"> */
#proverbContent {
  color: #ffffff;
  line-height: 1.5;
  font-size: 1rem;
  /*text shadows */
  color: #fff;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.75),   /* small directional shadow (increased) */
    0 -2px 4px rgba(0,0,0,0.6),
    2px 0 4px rgba(0,0,0,0.6),
    -2px 0 4px rgba(0,0,0,0.6),
    0 0 12px rgba(0,0,0,0.45),    /* larger soft halo (was 6px) */
    0 0 22px rgba(0,0,0,0.25);    /* extra outer glow */
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke: 0.15px rgba(0,0,0,0.45);
}
/* Proverb commentary styling */
.proverb-commentary {
  font-size: 1.05rem;
  color: #e0e0e0;
  margin-top: 12px;
  line-height: 1.5;
  text-align: left;
  /*text shadows */
  color: #fff;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.75),   /* small directional shadow (increased) */
    0 -2px 4px rgba(0,0,0,0.6),
    2px 0 4px rgba(0,0,0,0.6),
    -2px 0 4px rgba(0,0,0,0.6),
    0 0 12px rgba(0,0,0,0.45),    /* larger soft halo (was 6px) */
    0 0 22px rgba(0,0,0,0.25);    /* extra outer glow */
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke: 0.15px rgba(0,0,0,0.45);
}

/* Proverb image */
.proverb-image {
  margin-top: 20px;
  max-width: 100%;
  border: 2px solid #fff;
}

/* Footer */
footer {
  position: relative; 
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  margin-top: 20px;
  margin-bottom: 0px;
  line-height: 1.5;
  z-index: 9999;
  box-sizing: border-box;
}
footer p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.80rem;
}

