.lokacije-section {
  background: #f9fafb;
  padding: 60px 0;
}

.lokacije-section h1 {
  text-align: center;
  font-size: 2rem;
  color: #1e293b;
  margin-bottom: 10px;
}

.lokacije-section .intro {
  text-align: center;
  color: #475569;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1rem;
}

/* 🟢 GRID — 3 u redu na desktopu */
.lokacije-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.lokacija-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  text-decoration: none;
  color: #1e293b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

.lokacija-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  border-color: #10b981;
}

.lokacija-card .icon {
  font-size: 2.2rem;
  color: #10b981;
  margin-bottom: 15px;
}

.lokacija-card h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
}

/* --- Breadcrumb --- */
.breadcrumb {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.breadcrumb a {
  color: #10b981;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* --- Back link --- */
.back-link {
  text-align: center;
  margin-top: 40px;
}

.back-link a {
  color: #475569;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  padding: 10px 18px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.back-link a:hover {
  background: #10b981;
  color: #fff;
}

/* 📱 Tablet — 2 u redu */
@media (max-width: 768px) {
  .lokacije-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lokacije-section h1 {
    font-size: 1.6rem;
  }

  .lokacija-card {
    padding: 25px 15px;
  }

  .lokacija-card .icon {
    font-size: 1.8rem;
  }
}

/* 📱 Mobilni — 1 u redu */
@media (max-width: 480px) {
  .lokacije-grid {
    grid-template-columns: 1fr;
  }
}
