/*
Theme Name: GZL Portfolio
Theme URI: https://example.com/
Author: GZL
Description: Child theme of Twenty Twenty-Five replicating the portfolio blog style (dark theme, gradient overlays, translucent borders).
Version: 1.0.0
Requires at least: 6.5
Tested up to: 6.6
Requires PHP: 7.4
Template: twentytwentyfive
Text Domain: gzl-portfolio
*/

/* Base tweaks aligned with our Next.js site */
body {
  background: var(--wp--preset--color--surface-950);
  color: var(--wp--preset--color--text);
}

.gzl-card {
  border: 1px solid var(--wp--preset--color--border);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  box-shadow: 0 10px 60px -10px rgba(0,0,0,.6);
}

.gzl-badge {
  display: inline-block;
  padding: .25rem .6rem;
  font-size: .75rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--wp--preset--color--text) 12%, transparent);
  color: var(--wp--preset--color--text);
}

.gzl-overlay-gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.3), rgba(0,0,0,.0) 25%, rgba(0,0,0,.35));
  pointer-events: none;
}

.gzl-prose p { color: var(--wp--preset--color--muted); }
.gzl-prose h2, .gzl-prose h3 { color: var(--wp--preset--color--text); }


