/* ===== VIZZYNESS — styles (recreating the Argent theme look) ===== */
:root {
  --black: #1a1a1a;
  --accent: #6cc24a;        /* green from the VIZZYNESS badge */
  --ink: #3a3a3a;
  --muted: #8a8a8a;
  --bg: #f4f4f4;
  --line: #e2e2e2;
  --maxw: 1200px;
  --content: 760px;
  --sans: "Cabin", system-ui, sans-serif;
  --serif: "Alegreya", Georgia, serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: 1.05rem; line-height: 1.7; }
img { max-width: 100%; height: auto; }
a { color: var(--accent); }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--content); }

/* ===== Top nav ===== */
.topbar { background: var(--black); position: sticky; top: 0; z-index: 50; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 64px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo { width: 40px; height: 40px; }
.brand-text { display: flex; flex-direction: column; color: #fff; font-weight: 700; letter-spacing: .12em; line-height: 1; }
.brand-text small { color: var(--accent); font-size: .6rem; letter-spacing: .25em; margin-top: 3px; }
.site-nav ul { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.site-nav a { color: #d6d6d6; text-decoration: none; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.site-nav a:hover, .site-nav a.is-active { color: var(--accent); }

.nav-toggle, .nav-toggle-label { display: none; }
@media (max-width: 960px) {
  .nav-toggle-label { display: block; cursor: pointer; width: 28px; height: 22px; position: relative; }
  .nav-toggle-label span, .nav-toggle-label span::before, .nav-toggle-label span::after {
    content: ""; position: absolute; left: 0; width: 28px; height: 3px; background: #fff; border-radius: 2px; }
  .nav-toggle-label span { top: 10px; } .nav-toggle-label span::before { top: -8px; } .nav-toggle-label span::after { top: 8px; }
  .site-nav { flex-basis: 100%; max-height: 0; overflow: hidden; transition: max-height .25s ease; }
  .nav-toggle:checked ~ .site-nav { max-height: 640px; }
  .site-nav ul { flex-direction: column; gap: 0; padding: 10px 0; }
  .site-nav li { border-top: 1px solid rgba(255,255,255,.1); }
  .site-nav a { display: block; padding: 12px 0; }
}

/* ===== Header band / hero ===== */
.page-hero { background: var(--black) center/cover no-repeat; position: relative; min-height: 300px; display: flex; align-items: center; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.35); }
.page-hero-inner { position: relative; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 40px 24px; text-align: center; }
.page-hero h1 { color: #fff; font-family: var(--serif); font-style: italic; font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.6rem); margin: 0; text-shadow: 0 2px 10px rgba(0,0,0,.5); }

/* ===== Entry content ===== */
.entry { background: #fff; }
.entry-content { padding: 56px 0 64px; }
.entry-content > p:first-of-type { font-size: 1.18rem; color: #444; }
.entry-content h2, .entry-content h3 { font-family: var(--serif); font-style: italic; text-align: center; font-weight: 700; }
.entry-content h2 { font-size: 1.9rem; margin: 1.8em 0 .6em; }
.entry-content h3 { font-size: 1.4rem; margin: 1.5em 0 .5em; }
.entry-content p { margin: 0 0 1.25em; }
.entry-content img { display: block; margin: 1.6em auto; border-radius: 4px; }
.entry-content strong { color: var(--black); }
.entry-content hr { border: 0; border-top: 1px solid var(--line); margin: 2.5em 0; }
.entry-meta { color: var(--muted); font-family: var(--serif); font-style: italic; }
.back-link { margin-top: 3em; }

/* video embeds (shared shortcode output) */
.video-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 5px; background: #000; margin: 1.8em 0; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ===== Footer ===== */
.site-footer { background: var(--black); color: #cfcfcf; text-align: center; padding: 40px 0; }
.footer-brand { font-weight: 700; letter-spacing: .12em; margin: 0 0 6px; color: #fff; }
.footer-brand span { color: var(--accent); }
.footer-contact { margin: 0 0 6px; }
.footer-contact a { color: var(--accent); }
.footer-copy { color: var(--muted); font-size: .85rem; margin: 8px 0 0; }
