/* EVOZIO — Bold Portfolio Styles */

:root {
  --accent: #ff0033;
  --bg: #000000;
  --card: #111111;
  --text: #ffffff;
  --muted: #666666;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #000000;
  color: #ffffff;
}

/* Navbar — bold solid */
#nav {
  background: #000000;
  border-bottom: 2px solid #ffffff;
}

#nav.scrolled {
  background: #000000;
  box-shadow: 0 4px 0 0 #ffffff;
}

/* Bold glitch effect on hero — solid accent only */
.glitch {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.glitch::before {
  color: var(--accent);
  animation: glitch-anim 1.5s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
  text-shadow: 3px 0 #ffffff;
}
.glitch::after {
  color: #ffffff;
  animation: glitch-anim2 1.1s infinite linear alternate-reverse;
  clip-path: polygon(0 66%, 100% 66%, 100% 100%, 0 100%);
  text-shadow: -3px 0 var(--accent);
}

@keyframes glitch-anim {
  0% { transform: translate(0); }
  20% { transform: translate(-3px, 1px); }
  40% { transform: translate(-1px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(1px, -1px); }
  100% { transform: translate(0); }
}
@keyframes glitch-anim2 {
  0% { transform: translate(0); }
  25% { transform: translate(2px, -2px); }
  50% { transform: translate(-2px, 1px); }
  75% { transform: translate(1px, 2px); }
  100% { transform: translate(0); }
}

/* Hero canvas container */
#hero-canvas {
  mix-blend-mode: screen;
  opacity: 0.65;
}

/* Bold skill tags */
.skill-tag {
  display: inline-block;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 0;
  background: #111111;
  border: 3px solid #ffffff;
  cursor: pointer;
  transition: all 0.1s ease;
  user-select: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.skill-tag:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}
.skill-tag.active {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  font-weight: 700;
}

/* Bold project cards — hard edges, solid colors */
.project-card {
  position: relative;
  border-radius: 0;
  border: 4px solid #ffffff;
  background: #111111;
  overflow: hidden;
  transition: transform 0.1s ease, box-shadow 0.2s;
  cursor: pointer;
}
.project-card:hover {
  border-color: var(--accent);
  box-shadow: 8px 8px 0 #ffffff;
}
.project-card .preview {
  height: 190px;
  background: #000000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 4px solid #ffffff;
}
.project-card .preview .label {
  font-size: 12px;
  padding: 6px 16px;
  border: 3px solid #ffffff;
  background: #000000;
  color: #ffffff;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 90%;
  text-align: center;
  line-height: 1.4;
}
.project-card .content {
  padding: 22px 24px 24px;
}
.project-card h4 {
  font-size: 21px;
  line-height: 1.05;
  letter-spacing: -1.2px;
  margin-bottom: 6px;
}
.project-card .meta {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.tech-pill {
  font-size: 10px;
  padding: 1px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Bold filter buttons */
.filter-btn {
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 3px solid #ffffff;
  background: #000000;
  color: #ffffff;
  transition: all 0.1s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

/* Bold service cards */
.service-card {
  padding: 32px;
  border: 4px solid #ffffff;
  border-radius: 0;
  background: #111111;
  transition: all .1s ease;
  position: relative;
}
.service-card:hover {
  background: #000000;
  border-color: var(--accent);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #ffffff;
}

/* Modal */
#modal .modal-content {
  animation: modalPop 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 40px 120px -20px rgb(0 0 0 / 0.9);
}
@keyframes modalPop {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Misc bold touches */
.mobile-link {
  padding: 12px 0;
  display: block;
  border-bottom: 2px solid #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mobile-link:last-child {
  border-bottom: none;
}

/* Form input focus — bold */
input:focus, textarea:focus {
  box-shadow: 0 0 0 3px var(--accent);
  border-color: var(--accent) !important;
}

/* Bold stat numbers */
.stat {
  transition: all 0.4s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-link {
    padding: 16px 0;
    font-size: 16px;
  }
}