body {
margin:0;
font-family:Arial, sans-serif;
}

header {
display:flex;
justify-content:space-between;
padding:20px;
background:black;
}

.logo {
color:white;
text-decoration:none;
font-weight:bold;
}

nav a {
color:white;
margin-left:20px;
text-decoration:none;
}

.container {
max-width:1100px;
margin:auto;
padding:40px 20px;
}

.hero {
padding:80px 0;
}

.grid {
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.grid img {
width:100%;
height:300px;
object-fit:cover;
}

.card {
border:1px solid #ccc;
padding:40px;
}

footer {
text-align:center;
padding:40px;
}

.header {
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
background:black;
}

.header-left {
display:flex;
align-items:center;
gap:40px;
}

.header-right img {
width:70px;
height:70px;
object-fit:cover;
border-radius:50%;
}

/* --- Photo: Head + Subnav --- */
.page-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.page-title { margin: 0; }

.subnav {
  display: flex;
  gap: 14px;
}

.subnav a {
  text-decoration: none;
  opacity: .7;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.subnav a.active {
  opacity: 1;
  border-bottom-color: currentColor;
}

/* --- Masonry-like Gallery (nicht stramm) --- */
.gallery {
  column-count: 2;
  column-gap: 40px;
}

@media (max-width: 900px) {
  .gallery { column-count: 1; }
}

@media (max-width: 650px) {
  .gallery { column-count: 1; }
}

.shot {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 0 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  break-inside: avoid;
}

.shot img {
  width: 100%;
  height: auto;
  display: block;
}

/* Optional: leicht editorial spacing/hover */
.shot img {
  transition: transform .18s ease, opacity .18s ease;
}
.shot:hover img {
  transform: scale(1.01);
  opacity: .95;
}

/* --- Series Grid --- */
.series-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 750px) {
  .series-grid { grid-template-columns: 1fr; }
}

.series-card {
  text-decoration: none;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  display: block;
}

.series-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.series-meta {
  padding: 14px 16px 18px;
}

.series-meta h2 {
  margin: 0 0 6px;
  font-size: 18px;
}

.series-meta p {
  margin: 0;
  opacity: .7;
}

.series-intro {
  max-width: 70ch;
  opacity: .8;
  margin-top: 0;
  margin-bottom: 22px;
}

/* LIGHTBOX OVERLAY */

.lightbox {

  display: none;

  position: fixed;
  inset: 0;

  z-index: 9999;

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  background: rgba(0,0,0,0.4);

}


/* kein weißer Kasten mehr */

.lightbox-panel {

  position: absolute;

  inset: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  background: transparent;
  padding: 40px;

}


/* FOTO */

#lightbox-img {

  max-width: 82vw;
  max-height: 82vh;

  width: auto;
  height: auto;

  object-fit: contain;

}


/* CAPTION */

#lightbox-caption {

  position: absolute;

  bottom: 40px;

  left: 50%;
  transform: translateX(-50%);

  color: white;

  font-size: 14px;

  opacity: 0.8;

}


/* CLOSE BUTTON */

.lightbox-close {

  position: absolute;

  top: 25px;
  right: 30px;

  color: white;

  font-size: 28px;

  background: none;
  border: none;

  cursor: pointer;

}

/* Lightbox Arrows */

.lb-arrow{
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10000;

  background: none;     /* kein Kreis */
  border: none;
  padding: 0;

  color: white;
  font-size: 44px;
  line-height: 1;

  cursor: pointer;

  opacity: 0.85;
}

.lb-arrow:hover{
  opacity: 1;
}

.lb-prev{ left: 18px; }
.lb-next{ right: 18px; }

@media (max-width: 600px){
  .lb-arrow{ font-size: 34px; }
  .lb-prev{ left: 10px; }
  .lb-next{ right: 10px; }
}
