/* Custom Styles for Matt Hodges Portfolio */

/* Hero Section Overlay */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-section .container {
  z-index: 2;
  text-align: center;
}

/* Project Card Hover Effect */
.project-card img {
  transition: transform 0.3s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}
