/* ===== Reset ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Lato', sans-serif;
  background:#f3f6f5;
  color:#1f2a27;
  line-height:1.6;
}

/* ===== Container ===== */
.container{
  max-width:1100px;
  margin:auto;
  padding:40px 24px;
}

/* ===== Header / Hero ===== */
.hero{
  background:url("/images/begin-again-header.png") center/cover no-repeat;
  min-height:60vh;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
 background:rgba(0,0,0,0.15);
}

.hero__content{
  position:relative;
  text-align:center;
  color:white;
  padding:20px;
  margin-top:80px; /* pushes button down slightly */
}
.hero__title{
  font-family:'Playfair Display', serif;
  font-size:64px;
  margin-bottom:10px;
}

.hero__version{
  opacity:.85;
  margin-bottom:25px;
  font-size:16px;
}

.hero__button{
  display:inline-block;
  background:#6f8f84;
  color:white;
  text-decoration:none;
  padding:18px 36px;
  border-radius:10px;
  font-size:22px;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
  transition:.25s;
}

.hero__button:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 32px rgba(0,0,0,.35);
}

.hero__hint{
  margin-top:18px;
  opacity:.9;
}

/* ===== Intro Section ===== */
.intro{
  text-align:center;
  padding:60px 20px;
  background:#fbfbfa;
}

.intro__lead{
  font-family:'Playfair Display', serif;
  font-size:28px;
  margin-bottom:18px;
}

.intro__text{
  max-width:600px;
  margin:0 auto 30px;
  font-size:18px;
}

.intro__actions{
  margin-bottom:30px;
}

/* ===== Buttons ===== */
.btn{
  display:inline-block;
  background:#6f8f84;
  color:white;
  text-decoration:none;
  padding:16px 28px;
  border-radius:10px;
  margin:8px;
  font-size:18px;
  transition:.25s;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(0,0,0,.18);
}

.btn--ghost{
  background:transparent;
  color:#6f8f84;
  border:2px solid #6f8f84;
}

/* ===== Crisis Note ===== */
.intro__small{
  font-size:14px;
  max-width:560px;
  margin:30px auto 0;
  opacity:.75;
}

/* ===== Footer ===== */
.footer{
  text-align:center;
  padding:40px 20px;
  font-size:14px;
  color:#6b7571;
  background:#f3f6f5;
}
.free-note{
  margin-top:15px;
  font-size:14px;
  opacity:0.75;
}
.daily-hero{
  background:url("/images/daily-header.png") center/cover no-repeat;
  height:260px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.daily-hero-overlay{
  background:rgba(0,0,0,0.18);
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.daily-hero h1{
  color:white;
  font-family:'Playfair Display', serif;
  font-size:40px;
}
.bookmark{ margin-top: 18px; text-align:center; }
.bookmark-note{ margin-top:10px; font-size:14px; opacity:.75; }

.site-footer{
  margin-top:40px;
  padding:30px 0 50px 0;
  text-align:center;
  font-size:14px;
  opacity:.75;
}

.site-footer p{
  margin:6px 0;
}

.site-footer a{
  color:var(--sage);
  text-decoration:none;
}

.site-footer a:hover{
  text-decoration:underline;
}

.support-link{
  font-size:13px;
  opacity:.7;
}