/* GALERIJA — isti vizuelni jezik: mrak, zlato, artefakt pod staklom */

/* Osnovni stil za stranicu */
body.galerija-page {
  background-color: #0b0b0c;
  color: #f2f2f2;
  font-family: "Merriweather", serif;
  overflow-x: hidden;
  margin: 0;
  text-shadow: 0 0 8px rgba(0,0,0,0.8);
}

/* Uvodni header galerije */
.gallery-header {
  position: relative;
  padding: 100px 20px 60px;
  background: radial-gradient(circle at 50% 20%, rgba(10,10,10,1) 0%, #0b0b0c 60%);
  box-shadow:
    0 -40px 120px rgba(0,0,0,0.9) inset,
    0 80px 160px rgba(0,0,0,0.9) inset;
}

.gallery-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 200px;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(212,175,55,0.12) 0%,
    rgba(0,0,0,0) 70%
  );
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
}

.gallery-header-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  color: #cfcfcf;
}

/* Naslov "Vizuelni trag utvrđenja" */
.gallery-title {
  color: #d4af37;
  font-family: "Cinzel Decorative", serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 1rem + 1vw, 2rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow:
    0 0 6px rgba(212,175,55,0.4),
    0 0 30px rgba(212,175,55,0.15);
  margin: 0 0 20px 0;
  opacity: 0.9;
}

/* Uvodni opis ispod naslova */
.gallery-desc {
  max-width: 780px;
  margin: 0 auto;
  font-size: 0.95em;
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #c9c9c9;
  opacity: 0.9;
  text-shadow: 0 0 8px rgba(0,0,0,0.9);
}

/* Grid sa slikama */
.gallery-grid {
  position: relative;
  padding: 60px 20px 40px;
  background: radial-gradient(circle at 50% 50%, rgba(12,12,12,1) 0%, #0b0b0c 70%);
  box-shadow:
    0 0 120px rgba(0,0,0,0.9) inset,
    0 120px 200px rgba(0,0,0,0.9) inset;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px,100%),1fr));
  gap: 50px;
  justify-items: center;
  text-align: center;
}

/* Kartica za jednu fotografiju */
.gallery-card {
  max-width: 420px;
  width: 100%;
  margin: 0;
  color: #cfcfcf;
  text-shadow: 0 0 10px rgba(0,0,0,0.9);
}

/* Okvir slike, visual "artefakt u vitrini" */
.gallery-frame {
  position: relative;
  width: 100%;
  background: #000;
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,0.25);
  box-shadow:
    0 0 60px rgba(212,175,55,0.15),
    0 40px 120px rgba(0,0,0,0.9);
  overflow: hidden;
}

.gallery-frame::after {
  /* unutrašnja staklena ivica */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(212,175,55,0.4);
  box-shadow: 0 0 30px rgba(212,175,55,0.4);
  mix-blend-mode: screen;
  opacity: 0.25;
  pointer-events: none;
}

/* Slika */
.gallery-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  display: block;
  object-fit: cover;
  background-color: #000;

  filter: brightness(1) contrast(1.08) saturate(1.05);
  transition: filter 0.4s ease, transform 0.4s ease;
  transform-origin: center;
}

/* Za široku panoramsku fotografiju (treća fotka sa zidom i čovekom) */
.gallery-img.landscape-wide {
  max-height: 360px;
  object-fit: cover;
}

/* Zlatni glow sloj */
.gallery-glow {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(212,175,55,0.15) 0%,
    rgba(0,0,0,0) 70%
  );
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: blur(40px);
}

/* Hover efekat vitrini */
.gallery-frame:hover .gallery-img {
  filter: brightness(1.05) contrast(1.12) saturate(1.12);
  transform: scale(1.02);
}
.gallery-frame:hover .gallery-glow {
  opacity: 0.4;
}

/* Caption ispod svake slike */
.gallery-caption {
  font-family: "Cormorant Garamond", serif;
  font-size: 1em;
  line-height: 1.6;
  font-weight: 300;
  color: #cfcfcf;
  opacity: 0.9;
  margin: 20px auto 0 auto;
  max-width: 90%;
  text-align: center;
  text-shadow: 0 0 8px rgba(0,0,0,0.8);
}

/* Status / sadašnje stanje lokacije */
.gallery-status {
  background: radial-gradient(circle at 50% 20%, rgba(10,10,10,1) 0%, #0b0b0c 60%);
  padding: 60px 20px 100px;
  text-align: center;
  box-shadow:
    0 -40px 120px rgba(0,0,0,0.9) inset,
    0 80px 160px rgba(0,0,0,0.9) inset;
}

.status-text {
  max-width: 780px;
  margin: 0 auto;
  color: #8f8f8f;
  font-size: 0.9em;
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.03em;
  text-shadow: 0 0 8px rgba(0,0,0,0.8);
  opacity: 0.8;
}

/* animacija pojavljivanja (isti fazon kao index / istorija / mapa) */
.fade-in {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  filter: blur(6px);
  transition:
    opacity 1s cubic-bezier(0.16, 0.84, 0.44, 1),
    transform 1s cubic-bezier(0.16, 0.84, 0.44, 1),
    filter 1s cubic-bezier(0.16, 0.84, 0.44, 1);
  will-change: opacity, transform, filter;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

/* responsive */
@media (max-width: 900px) {
  .gallery-header {
    padding: 80px 20px 50px;
  }

  .gallery-desc {
    font-size: 0.9em;
    line-height: 1.6;
    padding: 0 10px;
  }

  .gallery-grid {
    padding: 40px 20px 20px;
    gap: 40px;
  }

  .gallery-card {
    max-width: 360px;
  }

  .gallery-img {
    max-height: 360px;
  }

  .gallery-img.landscape-wide {
    max-height: 260px;
  }

  .gallery-status {
    padding: 50px 20px 80px;
  }

  .status-text {
    font-size: 0.85em;
    line-height: 1.6;
    padding: 0 10px;
  }
}

