.project-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.project-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 300px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.project-card img {
  width: 100%;
  border-radius: 8px;
}

.project-card h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.project-card p {
  font-size: 0.95rem;
  color: #444;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  background: #1f2937;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #374151;
}
.full-width-overview {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-color: #1f2d3d;
  color: white;
  padding: 3rem 1rem;
  text-align: center;
}
.full-width-overview h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.full-width-overview p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Style the profile photo */
.profile-photo {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

/* Layout for image + content side by side */
.profile-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.profile-text {
  flex: 2 1 600px;
}

.profile-photo-wrapper {
  flex: 1 1 300px;
  max-width: 300px;
}

