/* ====== OPŠTI DEO ====== */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background: #f8f9fa;
  color: #333;
  scroll-behavior: smooth;
   font-family: 'Open Sans', sans-serif;
}

/* ====== HERO SEKCIJA PO GRADU ====== */
.city-page {
  min-height: 100vh;
  padding: 0px 20px 200px 20px;
  background: linear-gradient(to bottom right, #ffffff, #eef3f8);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.city-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

.city-text {
  flex: 1 1 500px;
  line-height: 1.7;
}

.city-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: #0078ff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.city-text p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 25px;
  font-weight: 400;
}

.city-text strong {
  color: #005fcc;
}

.city-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.city-text ul li {
  margin: 10px 0;
  font-size: 1rem;
  color: #555;
  position: relative;
  padding-left: 20px;
}

.city-text ul li::before {
  content: "•";
  color: #0078ff;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  top: -2px;
}

/* ====== MAPA ====== */
.city-map iframe {
  width: 100%;
  max-width: 550px;
  height: 350px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ====== BUTTONS ====== */
.btn-call,
.btn-scroll {
  display: inline-block;
  margin: 5px 10px 0 0;
  background: #0078ff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,120,255,0.25);
  cursor: pointer;
}

.btn-call:hover,
.btn-scroll:hover {
  background: #005fcc;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,120,255,0.35);
}

/* ====== SEKCIJA SA INFORMACIJAMA ====== */
.city-info {
  text-align: center;
  padding: 100px 20px;
  background: #eef3f8;
}

.city-info h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: #222;
  font-size: 2rem;
  margin-bottom: 50px;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.info-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px 25px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.info-card i {
  color: #0078ff;
  font-size: 2rem;
  margin-bottom: 15px;
}

.info-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #222;
}

.info-card p {
  color: #555;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ====== FOOTER ====== */
.footer-bottom {
  text-align: center;
  padding: 25px;
  background: #222;
  color: #fff;
  font-size: 0.95rem;
}

/* ====== ANIMACIJA (fade-in) ====== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .city-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .city-map iframe {
    max-width: 100%;
    height: 300px;
  }

  .city-text h1 {
    font-size: 2rem;
  }

  .city-text p {
    font-size: 1.05rem;
  }
}