/* GLOBALNA PODEŠAVANJA */
body {
  margin: 0;
  padding: 0;
  background: #7b552c;
  overflow-x: hidden;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', sans-serif;
}

/* HERO SEKCIJA SA NASLOVOM */
.galerija-hero {
  width: 100%;
  height: 60vh;
  background-image: url('img_onama/83cca471-9bb0-4f5c-bccf-ed306a1e9dc4.jpg'); /* Promijeni po potrebi */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.galerija-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.galerija-overlay h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(35px, 7vw, 72px);
  color: white;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  margin: 0;
  padding: 0 5vw;
  text-align: center;
}

/* GALERIJA SLIKA */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  row-gap: 0;
  padding: 10vh 20vh  0 20vh;
  box-sizing: border-box;
}

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

/* RESPONSIVE STILOVI */
@media (max-width: 1024px) {
  .gallery {
    padding: 30px 60px;
    grid-template-columns: repeat(3, 1fr); /* ostaje 3 kolone */
  }
}

@media (max-width: 768px) {
  .galerija-overlay h1 {
    font-size: 8vw;
    letter-spacing: 2px;
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr); /* i dalje 3 u redu */
    padding: 20px;
  }

  .gallery img {
    height: 25vh; 
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .galerija-overlay h1 {
    font-size: 7.5vw;
    letter-spacing: 1px;
    padding: 0 20px;
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr); 
  }

  .gallery img {
    height: 23vh;
    object-fit: cover;
  }
}
