body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #111 0%, #050505 60%, #000 100%);
  color: #eaeaea;
  font-family: system-ui, Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  padding: 48px 56px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
  max-width: 500px;
}

h1 {
  margin: 0;
  font-size: 2.4rem;
}

.subtitle {
  opacity: 0.7;
  margin-top: 6px;
  margin-bottom: 30px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.links a {
  text-decoration: none;
  color: #7dfcff;
  font-size: 1.1rem;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  transition: 0.2s;
}

.links a:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.footer {
  margin-top: 30px;
  font-size: 0.85rem;
  opacity: 0.5;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.shot {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 10px;
}

.shot img{
  width: 100%;
  height: 160px;        /* pick a size */
  object-fit: cover;    /* crops, never squishes */
  display: block;
  border-radius: 8px;
}

.caption {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 6px;
}

.back {
  display: inline-block;
  margin-top: 30px;
  color: #7dfcff;
  text-decoration: none;
  opacity: 0.8;
}
/* Lightbox overlay */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  cursor: zoom-out;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0,0,0,0.8);
}
.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 24px;
  text-align: left;
}

.project {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 16px;
}

.project h2 {
  margin: 0 0 8px 0;
  font-size: 1.15rem;
}

.desc {
  margin: 0 0 12px 0;
  opacity: 0.8;
  line-height: 1.4;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.tag {
  font-size: 0.8rem;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  opacity: 0.85;
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.actions a {
  text-decoration: none;
  color: #7dfcff;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  transition: 0.2s;
}

.actions a:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

.project-empty {
  opacity: 0.75;
}
