/* ============================================================
   win95-portfolio.css
   ============================================================ */
:root {
  --win-bg: #008080;
  --win-gray: #c0c0c0;
  --win-dark: #808080;
  --win-darker: #404040;
  --win-white: #ffffff;
  --win-black: #000000;
  --win-blue: #000080;
  --win-blue-light: #1084d0;
  --win-yellow: #ffff00;
  --win-red: #ff0000;
  --shadow-out: inset -1px -1px #404040, inset 1px 1px #ffffff, inset -2px -2px #808080, inset 2px 2px #dfdfdf;
  --shadow-in:  inset -1px -1px #ffffff, inset 1px 1px #404040, inset -2px -2px #dfdfdf, inset 2px 2px #808080;
}
.win95-desktop {
  background-color: var(--win-bg);
  background-image: radial-gradient(circle at 20% 50%, rgba(0,100,100,0.3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(0,60,60,0.4) 0%, transparent 40%);
  font-family: 'Share Tech Mono', monospace;
  padding: 20px 20px 60px;
  min-height: 80vh;
  cursor: default;
  position: relative;
}
.win95-taskbar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 36px;
  background: var(--win-gray);
  box-shadow: var(--shadow-out);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 4px;
  z-index: 9999;
}
.win95-start-btn {
  display: flex; align-items: center; gap: 4px;
  padding: 2px 8px;
  background: var(--win-gray);
  box-shadow: var(--shadow-out);
  font-family: 'VT323', monospace;
  font-size: 18px; font-weight: bold;
  cursor: pointer; height: 28px; border: none; user-select: none;
}
.win95-start-btn:active { box-shadow: var(--shadow-in); }
.win95-win-logo { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; width: 16px; height: 16px; }
.win95-win-logo span { display: block; }
.win95-win-logo span:nth-child(1) { background: #ff0000; }
.win95-win-logo span:nth-child(2) { background: #00ff00; }
.win95-win-logo span:nth-child(3) { background: #0000ff; }
.win95-win-logo span:nth-child(4) { background: #ffff00; }
.win95-taskbar-divider { width: 2px; height: 24px; box-shadow: inset -1px 0 #fff, inset 1px 0 #808080; margin: 0 2px; }
.win95-taskbar-clock {
  margin-left: auto; padding: 2px 8px; box-shadow: var(--shadow-in);
  font-size: 13px; height: 28px; display: flex; align-items: center;
  min-width: 70px; justify-content: center; font-family: 'Share Tech Mono', monospace;
}
.win95-taskbar-btn {
  padding: 2px 10px; background: var(--win-gray); box-shadow: var(--shadow-in);
  font-size: 13px; height: 28px; display: flex; align-items: center; gap: 4px;
  font-family: 'Share Tech Mono', monospace;
}
.win95-desktop-icons {
  position: absolute; top: 20px; right: 20px;
  display: flex; flex-direction: column; gap: 16px; z-index: 10;
}
.win95-icon { display: flex; flex-direction: column; align-items: center; gap: 4px; cursor: pointer; width: 64px; text-align: center; }
.win95-icon:hover .win95-icon-label { background: var(--win-blue); color: white; }
.win95-icon-img { font-size: 32px; filter: drop-shadow(1px 1px 0 #000); }
.win95-icon-label { font-size: 11px; color: white; text-shadow: 1px 1px #000; padding: 1px 3px; line-height: 1.2; font-family: 'Share Tech Mono', monospace; }
.win95-marquee-strip {
  background: var(--win-black); color: var(--win-yellow);
  font-family: 'VT323', monospace; font-size: 18px;
  padding: 4px 0; overflow: hidden; white-space: nowrap;
  box-shadow: var(--shadow-in); margin-bottom: 16px;
}
.win95-marquee-inner { display: inline-block; animation: win95marquee 18s linear infinite; }
@keyframes win95marquee { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }
.win95-window {
  background: var(--win-gray);
  box-shadow: var(--shadow-out);
  border: 2px solid; border-color: #fff #808080 #808080 #fff;
  margin-bottom: 16px;
  animation: win95open 0.15s ease-out;
}
@keyframes win95open { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.win95-titlebar {
  background: linear-gradient(to right, var(--win-blue), var(--win-blue-light));
  padding: 3px 4px; display: flex; align-items: center; gap: 4px; user-select: none;
}
.win95-title-icon { font-size: 14px; }
.win95-title-text { font-family: 'VT323', monospace; color: white; font-size: 16px; flex: 1; letter-spacing: 0.5px; }
.win95-titlebar-btns { display: flex; gap: 2px; }
.win95-titlebar-btns button {
  width: 16px; height: 14px; background: var(--win-gray); box-shadow: var(--shadow-out);
  border: none; font-size: 9px; font-weight: bold; cursor: pointer;
  display: flex; align-items: center; justify-content: center; padding: 0; font-family: monospace;
}
.win95-titlebar-btns button:active { box-shadow: var(--shadow-in); }
.win95-menubar { display: flex; padding: 2px 4px; border-bottom: 1px solid var(--win-dark); background: var(--win-gray); }
.win95-menubar span { padding: 1px 6px; font-size: 13px; cursor: pointer; font-family: 'Share Tech Mono', monospace; }
.win95-menubar span:hover { background: var(--win-blue); color: white; }
.win95-content { padding: 12px; }
.win95-statusbar { display: flex; gap: 2px; padding: 2px 4px; border-top: 1px solid var(--win-dark); background: var(--win-gray); font-size: 11px; font-family: 'Share Tech Mono', monospace; }
.win95-statusbar span { padding: 1px 6px; box-shadow: var(--shadow-in); }
.win95-hero-inner { display: flex; gap: 16px; align-items: flex-start; }
.win95-avatar-frame { flex-shrink: 0; width: 100px; background: var(--win-gray); box-shadow: var(--shadow-in); padding: 4px; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.win95-avatar { width: 88px; height: 88px; background: linear-gradient(135deg, #1a1a6e, #4040c0); display: flex; align-items: center; justify-content: center; font-size: 48px; border: 2px solid var(--win-black); }
.win95-avatar-label { font-size: 10px; text-align: center; font-family: 'Share Tech Mono', monospace; }
.win95-hero-text { flex: 1; }
.win95-hero-text h1 { font-family: 'VT323', monospace; font-size: 36px; color: var(--win-black); line-height: 1; margin-bottom: 6px; }
.win95-blink { animation: win95blink 1s step-end infinite; color: var(--win-blue); }
@keyframes win95blink { 50% { opacity: 0; } }
.win95-hero-text p { font-size: 13px; color: var(--win-darker); line-height: 1.6; margin-bottom: 12px; font-family: 'Share Tech Mono', monospace; }
.win95-btn-row { display: flex; gap: 8px; flex-wrap: wrap; }
.win95-btn { padding: 4px 16px; background: var(--win-gray); box-shadow: var(--shadow-out); border: none; font-family: 'Share Tech Mono', monospace; font-size: 13px; cursor: pointer; text-decoration: none; color: var(--win-black); display: inline-block; }
.win95-btn.primary { outline: 1px dotted var(--win-black); outline-offset: -4px; }
.win95-btn:active { box-shadow: var(--shadow-in); }
.win95-progress-label { font-size: 11px; margin: 10px 0 2px; color: var(--win-darker); font-family: 'Share Tech Mono', monospace; }
.win95-progress-bar { height: 16px; background: var(--win-white); box-shadow: var(--shadow-in); overflow: hidden; }
.win95-progress-fill { height: 100%; width: 0; background: repeating-linear-gradient(90deg, var(--win-blue) 0px, var(--win-blue) 8px, var(--win-blue-light) 8px, var(--win-blue-light) 10px); transition: width 1.2s ease; }
.win95-skills-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px; }
.win95-skill-item { background: var(--win-white); box-shadow: var(--shadow-in); padding: 6px 8px; display: flex; align-items: center; gap: 8px; font-size: 12px; font-family: 'Share Tech Mono', monospace; }
.win95-skill-icon { font-size: 18px; }
.win95-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.win95-file-list { background: var(--win-white); box-shadow: var(--shadow-in); }
.win95-file-header { display: grid; grid-template-columns: 1fr 80px 70px; background: var(--win-gray); box-shadow: var(--shadow-out); font-size: 12px; font-weight: bold; border-bottom: 1px solid var(--win-dark); font-family: 'Share Tech Mono', monospace; }
.win95-file-header span { padding: 2px 6px; border-right: 1px solid var(--win-dark); }
.win95-file-row { display: grid; grid-template-columns: 1fr 80px 70px; font-size: 12px; cursor: pointer; border-bottom: 1px solid #e0e0e0; font-family: 'Share Tech Mono', monospace; }
.win95-file-row:hover { background: var(--win-blue); color: white; }
.win95-file-name { display: flex; align-items: center; gap: 6px; padding: 2px 6px; }
.win95-file-row span { padding: 2px 6px; border-right: 1px solid #e0e0e0; }
.win95-error-box { display: flex; gap: 12px; align-items: flex-start; padding: 8px; animation: win95shake 0.4s ease 1.5s; }
.win95-error-icon { font-size: 32px; flex-shrink: 0; }
.win95-error-text h3 { font-family: 'VT323', monospace; font-size: 20px; margin-bottom: 4px; }
.win95-error-text p { font-size: 12px; line-height: 1.6; color: var(--win-darker); font-family: 'Share Tech Mono', monospace; }
.win95-blink-red { animation: win95blink 0.8s step-end infinite; color: var(--win-red); font-family: 'VT323', monospace; font-size: 14px; }
.win95-error-btns { display: flex; gap: 6px; margin-top: 12px; }
@keyframes win95shake { 0%,100% { transform: translateX(0); } 20%,60% { transform: translateX(-4px); } 40%,80% { transform: translateX(4px); } }
.win95-form { display: flex; flex-direction: column; gap: 8px; }
.win95-field { display: flex; flex-direction: column; gap: 2px; }
.win95-field label { font-size: 12px; font-family: 'Share Tech Mono', monospace; }
.win95-field input, .win95-field textarea { background: var(--win-white); box-shadow: var(--shadow-in); border: none; padding: 4px 6px; font-family: 'Share Tech Mono', monospace; font-size: 13px; outline: none; resize: vertical; width: 100%; }
.win95-field input:focus, .win95-field textarea:focus { outline: 1px dotted var(--win-black); }
@media (max-width: 600px) { .win95-two-col { grid-template-columns: 1fr; } .win95-hero-inner { flex-direction: column; } .win95-desktop-icons { display: none; } }
