.projects-container {
  width: 100%;
  background: #000000;
}

.project {
  min-height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background: #000000;
  scroll-snap-align: start;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.project .project-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 1100px;
  width: 100%;
}

.project img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.6);
  transition: transform 0.5s ease;
}

.project .project-meta { text-align: center; }

.project h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #fff;
}

.project p {
  max-width: 700px;
  color: #bbb;
  line-height: 1.2;
  margin-bottom: 15px;
}

.project a {
  display: inline-block;
  padding: 10px ;
  border-radius: 10px;
  background: #333;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  font-weight: bold;
}

.project a:hover { background: #1a3357; transform: translateY(-2px); }

@media (min-width: 1000px) {
  .project .project-inner { flex-direction: row; align-items: center; }
  .project img { max-width: 600px; }
  .project .project-meta { text-align: left; padding-left: 30px; }
}
