/*
  site.css
  The "real" site that lives underneath the confession overlay.
  Replace the placeholder content in index.html / about.html with
  your own — this just keeps everything on-theme while you do.
*/

#site-root[hidden]{ display: none; }

#site-root{
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  animation: site-fade-in 0.8s ease both;
}
@keyframes site-fade-in{
  from{ opacity: 0; }
  to{ opacity: 1; }
}

header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid #1c1c2a;
}
.brand{
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text-bright);
}
#site-nav a{
  margin-left: 16px;
  font-size: 16px;
  color: var(--text-dim);
}
#site-nav a.active{
  color: var(--accent-calm);
}
#site-nav .sep{
  color: var(--text-dim);
  margin-left: 16px;
}

main.hero{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  padding: 40px 24px;
}
main.hero h1{
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.6;
  color: var(--text-bright);
  margin: 0 0 18px;
}
main.hero p{
  font-size: 19px;
  color: var(--text-main);
  max-width: 58ch;
}

main.page{
  flex: 1;
  max-width: 720px;
  padding: 40px 24px;
}
main.page h1{
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-bright);
  margin-bottom: 18px;
}

footer{
  padding: 14px 24px;
  font-size: 14px;
  color: var(--text-dim);
  border-top: 1px solid #1c1c2a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
