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

h1, h2 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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


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

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

.caption {
  position: absolute;
  bottom: 15px;
  left: 20px;
  background: rgba(0,0,0,0.6);
  padding: 6px 10px;
  color: white;
  font-size: 14px;
  border-radius: 4px;
}


.project-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  color: white;
  padding: 40px;
  overflow-y: auto;
  box-sizing: border-box;
  z-index: 10;
}

.project-modal h2 {
  margin-top: 0;
}

.modal-content .extra-imgs {
  display: flex;
  justify-content: center; 
  gap: 30px;              
  flex-wrap: wrap;          
  margin-top: 20px;
}

.modal-content .extra-imgs img {
  width: 48%;       
  max-width: 500px; 
  border-radius: 6px;
}


.modal-content p {
  line-height: 1.6;
  margin-top: 15px;
}
