/* Portfolio Custom Styles */

/* Hero */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #262626 0%, #111 100%);
  color: #fff;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero p.subtitle {
  font-size: 1.4rem;
  opacity: 0.85;
  margin-bottom: 2rem;
}

/* About */
.about-section {
  background: #f7f7f7;
}

.skill-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-list li {
  background: #262626;
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
}

/* Projects */
.p-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.p-card .p-card__content {
  flex: 1;
}

.project-tag {
  display: inline-block;
  background: #eee;
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
}

/* Contact */
.contact-section {
  background: #f7f7f7;
}

/* Footer */
.site-footer {
  background: #262626;
  color: #fff;
  text-align: center;
  padding: 2rem 0;
}

.site-footer a {
  color: #fff;
  margin: 0 0.75rem;
  text-decoration: none;
  opacity: 0.8;
}

.site-footer a:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p.subtitle {
    font-size: 1.1rem;
  }
}
