/*
Theme Name: Stank Resume
Theme URI: https://example.com/
Author: ChatGPT
Author URI: https://example.com/
Description: Minimal, premium, dark, compact digital resume theme (single-page dashboard layout).
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: stank-resume
Tags: one-column, custom-background, custom-logo, custom-menu, featured-images, block-styles
*/

/* CSS Reset-ish */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height: 1.5;
  color: #eaeaea;
  background: radial-gradient(1200px 800px at 20% 0%, #151515 0%, #0b0b0b 60%, #070707 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

:root {
  --bg: #070707;
  --panel: rgba(255,255,255,0.04);
  --panel-strong: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.08);
  --text: #eaeaea;
  --muted: rgba(234,234,234,0.72);
  --muted2: rgba(234,234,234,0.55);
  --accent: #b9b9b9; /* intentionally muted */
  --shadow: 0 18px 60px rgba(0,0,0,0.55);
  --radius: 20px;
  --radius2: 26px;
  --max: 1120px;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(7,7,7,0.88), rgba(7,7,7,0.55));
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand .site-title {
  font-weight: 650;
  letter-spacing: 0.2px;
  font-size: 15px;
  opacity: 0.95;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  color: rgba(234,234,234,0.9);
  font-size: 13px;
  text-decoration: none;
}
.nav a:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.10);
  text-decoration: none;
}

.hero {
  padding: 42px 0 24px;
}
.hero-card {
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  border-radius: var(--radius2);
  padding: 28px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}
.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.6px;
}
.hero .subtitle {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  max-width: 58ch;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(234,234,234,0.82);
  font-size: 12px;
}
.cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: start;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: rgba(234,234,234,0.95);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  min-width: 170px;
}
.btn:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  text-decoration: none;
}
.btn.primary {
  background: rgba(255,255,255,0.10);
}
.btn.primary:hover {
  background: rgba(255,255,255,0.13);
}

.grid {
  padding: 18px 0 46px;
}
.grid-inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
}
.card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}
.card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  letter-spacing: -0.1px;
}
.card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
}
.card .meta {
  font-size: 12px;
  color: var(--muted2);
}
.card .card-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
  font-size: 13px;
  color: rgba(234,234,234,0.92);
  text-decoration: none;
}
.card .card-link:hover {
  text-decoration: underline;
}
/* Span helpers */
.span-6 { grid-column: span 6; }
.span-5 { grid-column: span 5; }
.span-7 { grid-column: span 7; }
.span-12 { grid-column: span 12; }
.span-4 { grid-column: span 4; }
.span-8 { grid-column: span 8; }

.divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 12px 0;
}

.footer {
  padding: 26px 0 42px;
  color: rgba(234,234,234,0.6);
  font-size: 12px;
}
.footer a { color: rgba(234,234,234,0.8); }

.small {
  font-size: 12px;
  color: rgba(234,234,234,0.72);
}

.notice {
  border: 1px dashed rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.02);
  border-radius: 16px;
  padding: 12px 14px;
  color: rgba(234,234,234,0.78);
  font-size: 12px;
}

@media (max-width: 900px) {
  .hero-card {
    grid-template-columns: 1fr;
  }
  .cta {
    justify-content: flex-start;
  }
}
@media (max-width: 720px) {
  .grid-inner { grid-template-columns: repeat(6, 1fr); }
  .span-6, .span-5, .span-7, .span-12, .span-4, .span-8 { grid-column: span 6; }
  .btn { min-width: unset; width: 100%; }
}
