/* reminders.css */

/* === Hero === */
.reminders-hero {
  background: url('../images/reminders-hero.jpg') center/cover no-repeat;
  padding: 6rem 0;
  text-align: center;
  color: #fff;
}
.reminders-hero .hero-overlay {
  background: rgba(0,0,0,0.5);
  display: inline-block;
  padding: 2rem;
  border-radius: 0.5rem;
}
.reminders-hero h1 {
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
}
.reminders-hero p {
  font-size: 1.2rem;
}

/* === Main Content === */
.reminders-list {
  margin: 4rem 0;
}
.reminders-list h2 {
  color: var(--primary);
  margin: 2rem 0 1rem;
  position: relative;
  display: inline-block;
}
.reminders-list p {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}
.reminders-list ul {
  list-style: disc inside;
  margin: 0 0 1.5rem;
  color: #333;
}
.reminders-list ul li {
  margin-bottom: 0.75rem;
}

/* === Scroll-to-Top Button === */
#scrollTopBtn {
  display: none;               /* hidden by default */
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.75rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.5rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: opacity 0.3s ease;
}
#scrollTopBtn.show {
  display: block;
  opacity: 0.8;
}
#scrollTopBtn:hover {
  opacity: 1;
}

/* === Responsive tweaks === */
@media (max-width: 600px) {
  .reminders-hero {
    padding: 4rem 1rem;
  }
  .reminders-hero .hero-overlay {
    width: 100%;
    padding: 1.5rem;
  }
  .reminders-hero h1 {
    font-size: 2rem;
  }
  .reminders-hero p {
    font-size: 1rem;
  }
}
