/* ===== HERO SEKCIJA ===== */
.plakari-hero {
  background-color: #b91c1c;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(185,28,28,0.9), rgba(185,28,28,0.7) 70%, rgba(249,250,251,1));
  background-size: 40px 40px, 40px 40px, 100% 100%;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  animation: fadeInHero 1s ease-in-out;
}

.plakari-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.plakari-hero p {
  font-size: 1.1rem;
  color: #f3f4f6;
}

/* ===== SEKCIJE ===== */
.plakari-section {
  background-color: #f9fafb;
  background-image:
    linear-gradient(to right, rgba(185,28,28,0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(185,28,28,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  padding: 80px 0;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== REDOVI ===== */
.plakari-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.plakari-section.visible .plakari-row {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SLIKE I TEKST ===== */
.plakari-image {
  flex: 1 1 50%;
}

.plakari-image img {
  width: 100%;
  height: 400px; /* ⬅️ Fiksna visina kao kod kuhinja */
  border-radius: 12px;
  object-fit: cover; /* ⬅️ Zadržava “wide” izgled */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.6s ease;
}

.plakari-image img:hover {
  transform: scale(1.03);
}

.plakari-text {
  flex: 1 1 50%;
  color: #374151;
  animation: fadeInText 1s ease-in-out;
}

.plakari-text h2 {
  font-size: 1.9rem;
  margin-bottom: 15px;
  color: #1e293b;
}

.plakari-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4b5563;
}

/* ===== GALERIJA ===== */
.plakari-gallery {
  background: #f9fafb;
  background-image:
    linear-gradient(to right, rgba(185,28,28,0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(185,28,28,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  padding: 80px 0;
  text-align: center;
  animation: fadeInHero 1s ease-in-out;
}

.plakari-gallery h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1e293b;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .plakari-row {
    flex-direction: column;
    text-align: center;
  }

  .plakari-image {
    width: 100%;
  }

  .plakari-image img {
    width: 90%;
    max-width: 500px;
    height: auto; /* fleksibilno na manjim ekranima */
    margin: 0 auto;
  }

  .plakari-text {
    margin-top: 25px;
  }
}

@media (max-width: 600px) {
  .gallery-grid img {
    height: 200px;
  }
}

/* ===== ANIMACIJE ===== */
@keyframes fadeInHero {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInText {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
