body {
  background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

#hero img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius);
  object-fit: cover;
  margin-bottom: 1rem;
}

/* Projects Section */
.projects {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 2rem;
}

.project-card {
  background: var(--primary);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease;
  padding: 1.5rem;
}

.project-card:hover {
  transform: scale(1.05);
}

.project-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.project-card p {
  color: var(--text-dark);
  font-size: 0.95rem;
}

.projects-grid a {
  text-decoration: none;
}