@charset "utf-8";
/* CSS Document */

/* =====================
   developer.css
   ===================== */

* {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
}

/* HERO */
.dev-hero {
  text-align: center;
  padding: 50px 40px 50px 40px;
  position: relative;
  z-index: 1;
}

.dev-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #a020f0;
  margin: 0 0 14px 0;
}

.dev-title {
  font-size: 3em;
  font-weight: 700;
  margin: 0 0 16px 0;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 45%, #c040ff 65%, #a020f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.dev-subtitle {
  color: #D8B4FF;
  font-size: 1em;
  font-weight: 400;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.85;
}

/* MAIN CONTENT — single column rows */
.dev-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* PROJECT CARDS — full width rows */
.dev-project-card {
  width: 100%;
  background: rgba(120, 0, 180, 0.08);
  border: 1px solid rgba(160, 32, 240, 0.35);
  border-radius: 16px;
  padding: 28px 32px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35),
              0 0 15px rgba(160, 32, 240, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dev-project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(160, 32, 240, 0.25);
}

.dev-project-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.dev-tag {
  font-size: 11px;
  font-weight: 500;
  color: #a020f0;
  background: rgba(160, 32, 240, 0.1);
  border: 1px solid rgba(160, 32, 240, 0.3);
  border-radius: 20px;
  padding: 4px 12px;
  letter-spacing: 0.05em;
}

.dev-status {
  font-size: 11px;
  font-weight: 500;
  border-radius: 20px;
  padding: 4px 12px;
}

.dev-status.live {
  background: rgba(0, 200, 100, 0.1);
  border: 1px solid rgba(0, 200, 100, 0.3);
  color: #00c864;
}

.dev-status.in-progress {
  background: rgba(160, 32, 240, 0.1);
  border: 1px solid rgba(160, 32, 240, 0.3);
  color: #c040ff;
}

.dev-project-card h3 {
  color: #ffffff;
  font-size: 1.2em;
  font-weight: 600;
  margin: 0 0 10px 0;
  letter-spacing: -0.01em;
}

.dev-project-card p {
  color: #D8B4FF;
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.85;
}

.dev-project-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(160, 32, 240, 0.15);
}

.dev-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #a020f0;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, gap 0.3s ease;
}

.dev-link:hover {
  color: #c040ff;
  gap: 10px;
}

/* INFO BOXES — also full width rows */
.dev-left,
.dev-right {
  display: contents;
}

.dev-desc-box {
  width: 100%;
  padding: 22px 28px;
  background: rgba(120, 0, 180, 0.08);
  border: 1px solid rgba(160, 32, 240, 0.35);
  border-radius: 16px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35),
              0 0 15px rgba(160, 32, 240, 0.08);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.dev-desc-box:hover {
  box-shadow: 0 0 20px rgba(160, 32, 240, 0.25);
  transform: translateY(-2px);
}

.dev-desc-box h3 {
  color: #ffffff;
  font-size: 0.95em;
  font-weight: 600;
  margin: 0 0 10px 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.dev-desc-box p {
  color: #D8B4FF;
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.85;
}

/* TAGS */
.dev-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.dev-lang-tag {
  font-size: 12px;
  font-weight: 500;
  color: #D8B4FF;
  background: rgba(160, 32, 240, 0.1);
  border: 1px solid rgba(160, 32, 240, 0.25);
  border-radius: 20px;
  padding: 4px 14px;
}

/* CODEPEN EMBED */
.codepen-preview {
  position: relative;
  margin-top: 16px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(160, 32, 240, 0.25);
}

.codepen-preview iframe {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.codepen-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s ease;
}

.codepen-overlay span {
  color: white;
  font-size: 14px;
  font-weight: 500;
  background: rgba(160, 32, 240, 0.85);
  padding: 10px 20px;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.codepen-overlay:hover {
  background: rgba(0, 0, 0, 0.4);
}

.codepen-overlay:hover span {
  opacity: 1;
}