.hero {
  padding: 120px 0;
}

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

.hero p {
  font-size: 1.3rem;
}

section {
  padding: 60px 0;
}

ul {
  list-style: none;
  padding: 0;
}

ul li::before {
  content: "• ";
  color: #0d6efd;
  font-weight: bold;
}

.profile-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.project-media {
  width: 100%;
  max-width: 640px;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.project-card a {
  display: block;
  position: relative;
}

.project-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
}

.project-card:hover .project-hover {
  opacity: 1;
}

.project-media {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.slideshow img {
  display: none;
  width: 100%;
  height: auto;
}

.slideshow img.active {
  display: block;
}
