/* PORTFOLIO */
.portfolio-section {
  padding: 80px 20px;
  position: relative;
  /* background: linear-gradient(180deg, #020617, #01030a); */
}

.portfolio-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.portfolio-header h1 {
  font-size: 2.5rem;
}

.portfolio-header span {
  color: var(--accent-cyan);
}

.portfolio-header p {
  margin-top: 15px;
  color: var(--text-light);
}

/* GRID */
.portfolio-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.portfolio-card {
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,234,255,0.2);
  transition: 0.3s;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(0,234,255,0.3);
}

/* IMG */
.portfolio-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* CONTENT */
.portfolio-content {
  padding: 20px;
}

.portfolio-content h3 {
  color: var(--accent-cyan);
  margin-bottom: 10px;
}

.portfolio-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

/* BUTTON */
.portfolio-btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  background: var(--accent-cyan);
  color: #000;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.portfolio-btn:hover {
  background: #378cbb;
}
