/* ================= HOMEPAGE (minimaal) ================= */

body{overflow-x:hidden;}
a{text-decoration:none;}

/* welcome section */
.welcome{
  min-height:calc(100vh - 78px);
  display:flex; align-items:center; justify-content:center;
  padding:80px 6%;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(163,17,31,0.18), transparent 55%),
    var(--black);
  text-align:center;
}
.welcome-box{max-width:680px;}
.welcome-box h1{
  font-family:'Anton', sans-serif; text-transform:uppercase;
  font-size:clamp(2.2rem, 6vw, 3.6rem);
  color:var(--off-white);
  margin-bottom:28px;
  text-shadow:0 0 30px rgba(216,30,44,0.25);
}
.welcome-text{
  font-size:1.08rem;
  line-height:1.9;
  color:var(--steel-light);
  font-weight:300;
}
.welcome-text .rich-link{
  color:var(--red-bright);
  border-bottom:1px solid rgba(216,30,44,0.4);
  transition:border-color 0.2s ease;
}
.welcome-text .rich-link:hover{border-color:var(--red-bright);}

/* custom page view (page.php) reuses this too */

/* footer */
.home-footer{padding:36px 8%; background:var(--black); border-top:1px solid rgba(255,255,255,0.06); text-align:center;}
.footer-brand span{font-family:'Anton', sans-serif; font-size:0.95rem; color:var(--steel-light);}
.footer-note{font-size:0.72rem; color:#4a4744; margin-top:10px;}
.footer-note a{color:#4a4744;}
.footer-note a:hover{color:var(--red-bright);}
