/*
 Theme Name: ForeverVault Base
 Theme URI: https://forevervault.com/
 Author: ForeverVault
 Description: Minimal base theme for STAGING (no third-party deps).
 Version: 0.1.0
 Text Domain: fv-base
*/

/* ===== ForeverVault header/footer polish ===== */
:root{
  --fv-bg:#F3EAFB;           /* soft lavender */
  --fv-surface:#FFFFFF;
  --fv-text:#2A1F3C;         /* deep readable purple */
  --fv-accent:#6A1B9A;       /* brand accent */
  --fv-accent-dark:#3B0D5B;  /* deeper accent */
  --fv-border:#E6DFF5;
  --fv-link:#5B27A6;
}

.container{width:min(1100px,92vw);margin:0 auto}
.site-header{
  background:var(--fv-surface);
  border-bottom:2px solid var(--fv-accent);
  position:sticky;top:0;z-index:20;
}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:12px 4px}
.site-nav .menu{display:flex;gap:16px;list-style:none;margin:0;padding:0}
.site-nav .menu a{color:var(--fv-text);text-decoration:none;padding:6px 8px;border-radius:8px}
.site-nav .menu a:hover{background:var(--fv-border)}

.main{padding:24px 0}
.site-footer{
  background:var(--fv-surface);
  color:var(--fv-text);           /* readable text */
  border-top:2px solid var(--fv-accent);
  padding:22px 0;margin-top:36px;
}
.site-footer a{color:var(--fv-accent-dark);text-decoration:none}
.site-footer a:hover{text-decoration:underline}

/* Optional: ensure any faint text in footer blocks is readable */
.site-footer small{opacity:1;color:var(--fv-text)}

/* If the homepage TXT includes an internal mini-footer box, hide it */
.fv-home .mini-footer, .fv-home .copyright, .fv-home .fv-copy { display:none !important; }

/* Prevent stray cards from hugging footer */
.fv-home{margin-bottom:22px}
