body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fafafa;
  color: #111;
}

header {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-bottom: 1px solid #ddd;
}

h1 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.subtitle {
  margin-top: 8px;
  color: #666;
}

.project-block {
  margin-bottom: 20px;
}

.img-block {
  position: relative;
  cursor: pointer;
}

.img-block img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 8px 12px;
  font-size: 14px;
}

.project-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  color: white;
  padding: 50px;
  overflow-y: auto;
  z-index: 10;
}

.modal-content {
  max-width: 900px;
  margin: auto;
}

.modal-content p {
  line-height: 1.7;
  margin-bottom: 20px;
}

.extra-imgs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.extra-imgs img,
.add-img {
  width: 48%;
  max-width: 420px;
}

.add-img {
  border: 2px dashed white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  font-size: 13px;
  opacity: 0.7;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

footer a {
  color: white;
  text-decoration: none;
  line-height: 1.8;
}


