@import url('global.css');

/* Section title */
.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-top: 15%;
}

/* Grid layout for projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
}

/* Individual project item */
.project-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

/* Project thumbnails */
.project-thumbnail {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Project titles */
.project-title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
  color: #222;
}

/* Project descriptions */
.project-item p {
  font-size: 14px;
  color: #555;
  margin-top: 8px;
  line-height: 1.4;
}