/* ============================================================
   PORTFOLIO.CSS – Extracted from inline styles
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #060606;
  font-family: 'Segoe UI', sans-serif;
  color: #e2e2e2;
}

/* ── MAIN CONTENT CONTAINER ───────────────────────────────── */
#work-page-content {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #e2e2e2;
  line-height: 1.75;
}

/* ── PAGE HERO SECTION ────────────────────────────────────── */
.hero-section {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  border-bottom: 1px solid #1e1e1e;
  padding-bottom: 48px;
  margin-bottom: 60px;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #5ae0c8;
  margin-bottom: 18px;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.hero-description {
  font-size: 16px;
  color: #888;
  max-width: 520px;
}

/* ── FILTER BUTTONS ───────────────────────────────────────── */
#olvWorkFilters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #1e1e1e;
  background: transparent;
  color: #888;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
}

.filter-btn.active {
  border: 1px solid #5ae0c8;
  background: #5ae0c8;
  color: #060606;
}

/* ── PROJECT GRID ─────────────────────────────────────────── */
#olvWorkGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
}

/* ── PROJECT CARDS ────────────────────────────────────────── */
.project-card {
  background: #0d0d0d;
  border: 1px solid #161616;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
  cursor: default;
}

.project-card:hover {
  border-color: rgba(90, 224, 200, 0.2);
  transform: translateY(-3px);
}

/* Card visual bands */
.card-visual {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.card-visual-web {
  background: linear-gradient(135deg, #0f1f1d 0%, #0d2a26 50%, #071410 100%);
}

.card-visual-ai {
  background: linear-gradient(135deg, #0f1520 0%, #111a2e 50%, #080d18 100%);
}

.card-visual-software {
  background: linear-gradient(135deg, #141006 0%, #1e1800 50%, #0d0c04 100%);
}

/* Category badge */
.category-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(90, 224, 200, 0.1);
  border: 1px solid rgba(90, 224, 200, 0.2);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #5ae0c8;
}

/* Card body */
.card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.2px;
}

.card-description {
  font-size: 14px;
  color: #777;
  flex: 1;
}

/* Technology tags */
.card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.tag {
  padding: 3px 10px;
  border-radius: 6px;
  background: #111;
  border: 1px solid #1e1e1e;
  font-size: 12px;
  color: #666;
}

/* Card CTA link */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #5ae0c8;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.card-link:hover {
  gap: 12px;
}

.card-link-arrow {
  font-size: 16px;
}

/* Coming soon / NDA status */
.card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 13px;
  color: #444;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #333;
  display: inline-block;
}

/* ── ADD MORE CARD (CTA) ──────────────────────────────────── */
.cta-card {
  border: 1px dashed #1e1e1e;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 28px;
  gap: 16px;
  min-height: 320px;
}

.cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: 1px solid #1e1e1e;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.cta-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.cta-description {
  font-size: 13px;
  color: #2a2a2a;
}

.cta-button {
  padding: 10px 22px;
  border-radius: 8px;
  border: 1px solid #1e1e1e;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cta-button:hover {
  border-color: rgba(90, 224, 200, 0.3);
  color: #5ae0c8;
}

/* ── BOTTOM CTA SECTION ───────────────────────────────────── */
.bottom-cta {
  margin-top: 72px;
  padding: 40px;
  border: 1px solid #1a1a1a;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.015);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.bottom-cta-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.bottom-cta-description {
  font-size: 14px;
  color: #666;
  max-width: 400px;
}

.bottom-cta-button {
  display: inline-block;
  padding: 13px 28px;
  background: #5ae0c8;
  color: #060606;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.bottom-cta-button:hover {
  opacity: 0.85;
}

a {
  text-decoration: none;
}