
/* ─── SOCIAL ICONS ─── */
.social-icons {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* small – navbar & footer */
.social-icons--sm .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
}
.social-icons--sm .social-link svg {
  width: 15px;
  height: 15px;
}
.social-icons--sm .social-link:hover {
  color: var(--neon);
  transform: translateY(-2px);
}

/* medium – strona o mnie */
.social-icons--md {
  gap: 0.8rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.social-icons--md .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.social-icons--md .social-link svg {
  width: 18px;
  height: 18px;
}
.social-icons--md .social-link:hover {
  color: var(--neon);
  border-color: var(--neon);
  box-shadow: 0 0 12px var(--neon-glow);
  transform: translateY(-2px);
}

/* ─── ABOUT PAGE ─── */
.about-page {
  max-width: 560px;
  padding: 2.5rem 0 5rem;
}
.about-page-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}

/* ─── CONTACT PAGE ─── */
.contact-wrap { max-width: 520px; padding: 2.5rem 0 5rem; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-field label {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-field input,
.form-field textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.65rem 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--neon);
  box-shadow: 0 0 10px var(--neon-glow);
}

.btn-neon {
  align-self: flex-start;
  background: transparent;
  border: 1px solid var(--neon);
  color: var(--neon);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.btn-neon:hover {
  background: var(--neon-dim);
  box-shadow: 0 0 18px var(--neon-glow);
  transform: translateY(-1px);
}

/* ─── PORTFOLIO PAGE ─── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0 5rem;
}
.project-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--bg-card);
  transition: border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
  animation: fadeUp 0.6s ease both;
}
.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }
.project-card:nth-child(4) { animation-delay: 0.4s; }

.project-card:hover {
  border-color: #999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
[data-theme="dark"] .project-card:hover {
  border-color: #555;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.project-num {
  font-size: 0.6rem;
  color: var(--neon);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.project-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.project-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}
