@charset "UTF-8";
/* Cyber-Professional / Neo-Brutalist Theme */
/* Optimized for high-end teacher portfolio */
@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap");
:root {
  /* Colors */
  --bg-color: #0B0B0B;
  --card-bg: #141414;
  --text-main: #FFFFFF;
  --text-dim: #666666;
  --text-secondary: #A0A0A0;
  --neon-green: #C1FF00;
  --accent-glow: rgba(193, 255, 0, 0.3);
  --card-border: rgba(255, 255, 255, 0.05);
  /* Fonts */
  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  /* Spacing & Radius */
  --radius-lg: 24px; }

/* Base Styles */
body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(circle at 0% 0%, rgba(193, 255, 0, 0.1), transparent 40%);
  background-attachment: fixed; }

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--neon-green);
  z-index: 9999; }

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px; }

/* Selection */
::selection {
  background: #FFFFFF;
  color: #000000; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: #FFFFFF !important;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.1;
  text-shadow: 0 0 10px var(--accent-glow); }

/* Home Page Hero Header */
.home-hero h1:first-of-type {
  font-size: 5.5rem !important;
  line-height: 0.9 !important;
  margin-bottom: 20px !important;
  background: linear-gradient(to right, #FFFFFF, var(--neon-green)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: block;
  filter: drop-shadow(0 0 15px var(--accent-glow)); }

h1 {
  font-size: 4rem; }

h2 {
  font-size: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 20px; }

h3 {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em; }

p {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 65ch;
  margin-bottom: 1.5em; }

strong, b, em, i {
  color: var(--neon-green);
  font-weight: 600; }

blockquote {
  font-size: 1.3rem;
  line-height: 1.5;
  margin: 40px 0 !important;
  border-left: 3px solid var(--neon-green) !important;
  padding: 10px 0 10px 30px !important;
  color: #FFFFFF !important;
  font-style: italic; }

/* Links */
a {
  color: var(--neon-green) !important;
  text-decoration: none;
  transition: all 0.3s ease; }

a:hover {
  text-shadow: 0 0 8px var(--neon-green); }

/* Header */
header.site-header {
  background: rgba(11, 11, 11, 0.8);
  backdrop-filter: blur(15px) saturate(180%);
  border-bottom: 2px solid var(--neon-green);
  box-shadow: 0 0 20px rgba(193, 255, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0; }

.site-title {
  font-family: var(--font-display) !important;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--text-main) !important; }

.site-nav .page-link {
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-secondary) !important;
  margin-left: 30px; }

.site-nav .page-link:hover {
  color: var(--neon-green) !important;
  text-shadow: 0 0 10px var(--neon-green); }

/* Bento Grid - Balanced Professional Middle Ground */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 45px; }

.portfolio-item {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 140px 140px 20px 20px;
  padding: 95px 30px 40px 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: visible;
  text-align: center;
  max-width: 400px;
  margin: 0 auto; }

.portfolio-item:hover {
  transform: translateY(-8px);
  border-color: rgba(193, 255, 0, 0.4);
  box-shadow: 0 15px 40px -10px var(--accent-glow); }

.portfolio-item h3 {
  margin-top: 20px;
  color: #FFFFFF !important;
  text-shadow: 0 0 12px var(--accent-glow);
  font-size: 1.45rem; }

.portfolio-item p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
  color: var(--text-dim); }

/* Icon Wrapper - Balanced Middle Ground */
.icon-wrapper {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 55px;
  background-color: var(--neon-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(193, 255, 0, 0.4);
  z-index: 2;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1.35rem;
  color: #000; }

/* --- Divider Lines --- */
hr {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(193, 255, 0, 0.5), transparent);
  margin: 4rem 0; }

/* Automated Sections Layout */
.about-flex {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
  align-items: center;
  margin: 40px 0; }

@media (min-width: 850px) {
  .about-flex {
    flex-direction: row;
    align-items: center;
    justify-content: space-between; }

  .about-text {
    flex: 1;
    padding-right: 40px; }

  .about-image {
    flex-shrink: 0;
    width: 350px;
    display: flex;
    justify-content: center; } }
.portfolio-section, .connect-section, .extra-section {
  padding: 40px 0; }

.home-hero h1:first-child {
  margin-top: 0; }

/* Tilted Wrapper */
.tilted-wrapper {
  position: relative;
  transform: rotate(7deg);
  border: 1.5px solid var(--neon-green);
  padding: 12px;
  background: #111111;
  display: inline-block;
  box-shadow: 25px 25px 50px rgba(0, 0, 0, 0.7);
  transition: transform 0.4s ease-out; }

.tilted-wrapper:hover {
  transform: rotate(0deg) scale(1.02); }

.rotating-badge {
  animation: spin 10s linear infinite;
  display: inline-block; }

@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
/* Footer */
footer.site-footer {
  margin-top: 80px;
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #444;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em; }

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px; }

::-webkit-scrollbar-track {
  background: var(--bg-color); }

::-webkit-scrollbar-thumb {
  background: var(--neon-green);
  border-radius: 5px;
  border: 2px solid var(--bg-color); }

/* Tables - Universal Plain Dark Theme */
.post-content table,
table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 2rem 0 !important;
  background-color: #141414 !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important; }

.post-content table tr,
.post-content table td,
.post-content table th,
table tr,
table td,
table th {
  background-color: #141414 !important;
  background: #141414 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #FFFFFF !important; }

.post-content table th,
table th {
  background-color: rgba(255, 255, 255, 0.1) !important;
  font-family: var(--font-display) !important;
  text-transform: uppercase !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.05em !important;
  padding: 12px 15px !important; }

.post-content table tr:nth-child(even),
.post-content table tr:nth-child(odd),
table tr:nth-child(even),
table tr:nth-child(odd) {
  background-color: #141414 !important; }

.post-content table tr:hover,
table tr:hover {
  background-color: rgba(193, 255, 0, 0.05) !important; }

/* Custom styles for assessments */
.blueprint-schema {
  max-width: 1200px;
  margin: 4rem auto;
  padding-top: 40px;
  font-family: var(--font-body);
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative; }

.bp-main-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative; }

/* Zone Styles */
.bp-zone {
  flex: 1;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 5; }

.bp-zone:hover {
  border-color: var(--neon-green);
  box-shadow: 0 0 30px rgba(193, 255, 0, 0.1); }

.bp-zone-header {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px; }

.bp-node {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px;
  border-radius: 8px;
  font-size: 1.05rem;
  /* Increased from 0.9rem */
  line-height: 1.4; }

.bp-node strong {
  display: block;
  color: var(--neon-green);
  margin-bottom: 4px;
  font-size: 1.1rem;
  /* Increased from 0.85rem */ }

/* Explanation Row */
.expl-container {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
  gap: 80px; }

.expl-box {
  flex: 1;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  font-size: 1rem;
  /* Increased from 0.85rem */
  line-height: 1.5;
  color: var(--text-dim);
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); }

.expl-box strong {
  display: block;
  color: #fff;
  margin-bottom: 5px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.9rem;
  /* Increased from 0.7rem */
  letter-spacing: 1px; }

/* Connector System */
.expl-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 40px;
  position: relative; }

.expl-line {
  width: 4px;
  height: 100%;
  background: rgba(255, 255, 255, 0.4); }

.expl-arrow {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 14px solid rgba(255, 255, 255, 0.4); }

.bp-connector {
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 20; }

.bp-line {
  width: 100%;
  height: 2px;
  background: var(--neon-green);
  position: relative; }

.bp-arrow-head {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--neon-green); }

.bp-conn-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  /* Increased from 0.55rem */
  color: var(--neon-green);
  text-transform: uppercase;
  background: #000;
  padding: 4px 8px;
  border: 1px solid var(--neon-green);
  border-radius: 4px;
  margin-bottom: 8px;
  white-space: nowrap;
  letter-spacing: 1px;
  z-index: 25;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8); }

/* Sub-elements */
.bp-subgraph {
  border: 1px dashed rgba(189, 0, 255, 0.3);
  padding: 10px;
  border-radius: 8px;
  background: rgba(189, 0, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 10px; }

.bp-subgraph-title {
  font-size: 0.9rem;
  /* Increased from 0.75rem */
  text-transform: uppercase;
  color: #bd00ff;
  font-weight: bold; }

.inventory-node {
  border: 1px solid rgba(0, 212, 255, 0.2);
  background: rgba(0, 212, 255, 0.02);
  font-size: 0.95rem;
  /* Added explicitly */ }

.v-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 15px;
  opacity: 0.4; }

.v-line {
  width: 2px;
  height: 100%;
  background: #fff; }

.v-arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #fff; }

.refines-practice-loop {
  width: 100%;
  height: 80px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  border-radius: 0 0 50px 50px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; }

.loop-label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--text-main);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2); }

.bp-legend {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--neon-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8; }

/* Feedback Arc styling */
.feedback-arc {
  position: absolute;
  top: 0px;
  left: 15%;
  width: 35%;
  height: 40px;
  border: 2px dashed var(--neon-green);
  border-bottom: none;
  border-radius: 40px 40px 0 0;
  display: flex;
  justify-content: center;
  z-index: 10;
  opacity: 0.6; }

.feedback-arc::before {
  content: "◀";
  position: absolute;
  left: -6px;
  bottom: -2px;
  color: var(--neon-green);
  font-size: 12px;
  text-shadow: 0 0 10px var(--neon-green); }

.feedback-label {
  background: #0b0b0b;
  padding: 2px 12px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--neon-green);
  text-transform: uppercase;
  border: 1px solid var(--neon-green);
  border-radius: 4px;
  margin-top: -15px;
  white-space: nowrap;
  box-shadow: 0 0 15px rgba(193, 255, 0, 0.2); }

/* 
   ==========================================================================
   Separate Sections (PGP Style)
   ========================================================================== 
*/
.assessment-content {
  max-width: 1100px;
  margin: 0 auto; }

.assessment-section {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  margin-bottom: 25px;
  padding: 30px;
  transition: all 0.3s ease;
  border-radius: 12px; }

.assessment-section:hover {
  border-color: var(--neon-green);
  box-shadow: 0 0 30px rgba(193, 255, 0, 0.2);
  transform: translateY(-4px); }

.assessment-section h2 {
  font-family: var(--font-display) !important;
  font-size: 1.5rem !important;
  border-bottom: 2px solid var(--neon-green) !important;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: none !important;
  margin-top: 0; }

.assessment-section h3 {
  font-size: 1.2rem !important;
  color: var(--neon-green) !important;
  margin-top: 25px;
  margin-bottom: 15px;
  text-transform: uppercase; }

.assessment-section p {
  color: var(--text-secondary);
  line-height: 1.7; }

.assessment-section strong {
  color: var(--neon-green); }

.assessment-references-box {
  margin-top: 40px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--neon-green);
  border-radius: 12px; }

.assessment-references-box h2 {
  border: none !important;
  font-size: 1.5rem !important;
  font-family: var(--font-display) !important;
  text-transform: uppercase; }

.assessment-references-box ul {
  list-style: none;
  padding: 0; }

.assessment-references-box li {
  color: var(--text-dim);
  margin-bottom: 10px;
  font-size: 0.95rem; }

/* Floating Explanation Boxes */
.bp-expl-floating {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 15px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-dim);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  max-width: 300px;
  z-index: 10; }

.bp-expl-floating strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px; }

.v-arrow-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0.6; }

.v-arrow-line {
  width: 3px;
  height: 30px;
  background: var(--text-dim); }

.v-arrow-head {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid var(--text-dim); }

.v-arrow-head.up {
  border-top: none;
  border-bottom: 12px solid var(--text-dim); }

@media (max-width: 1000px) {
  .bp-main-row, .expl-container {
    flex-direction: column;
    align-items: center;
    gap: 20px; }

  .bp-connector {
    width: 2px;
    height: 40px; }

  .bp-line {
    width: 2px;
    height: 100%; }

  .bp-arrow-head {
    right: auto;
    left: 50%;
    bottom: 0;
    top: auto;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid var(--neon-green); }

  .expl-container {
    gap: 40px;
    margin-top: 20px; }

  .expl-box {
    width: 100%;
    max-width: 400px; }

  .expl-connector {
    display: none; }

  .refines-practice-loop {
    display: none; } }
