body {
  background-color: #f8fafc;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
  margin: 0;
  padding: 0;
}
.topbar {
  background-color: #285093;
  padding: 0.7rem 1rem;
  color: #fff;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 6px rgba(40,80,147,0.07);
}
.topbar a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.topbar a.active,
.topbar a:hover {
  color: #ffd700; /* žuta koja se već koristi */
}
.topbar-logo {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
  font-size: 1.1rem;
}
/* Uvod članka: slika lijevo, sadržaj desno */
.clanak-uvod {
  margin-bottom: 2.6rem;
}
.clanak-main-img {
  width: 100%;
  max-width: 430px;
  max-height: 340px;
  object-fit: contain;
  border-radius: 0.85rem;
  background: #f7fafc;
  box-shadow: 0 3px 24px rgba(40,80,147,0.07);
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .clanak-main-img {
    max-width: 100%;
  }
  .clanak-uvod { margin-bottom: 1.3rem; }
}
@media (max-width: 767px) {
  .clanak-main-img {
    max-width: 95vw;
    max-height: 220px;
  }
  .clanak-uvod { flex-direction: column; }
}

/* Razmišljanja kartice */
.misao-kartica {
  transition: all 0.3s ease;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0.05rem 0.15rem rgba(40,80,147,0.08);
  padding: 1rem;
}
.misao-kartica:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}

/* Naslov razmišljanja */
.razmisljanja-naslov {
  font-size: 1.15rem;
  color: #4666ae;
  font-weight: 600;
  text-align: center;
  margin: 2.2rem 0 1.2rem 0;
}

/* Kutak za djecu */
.djeca-blok {
  background: #fff7d6;
  border-left: 6px solid #ffd700;
  border-radius: 1rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  padding: 2rem 1rem;
  box-shadow: 0 0.2rem 1.2rem rgba(250, 220, 50, 0.06);
}
.djeca-naslov {
  font-size: 1.2rem;
  font-weight: 600;
  color: #b48a00;
  text-align: center;
  margin-bottom: 1.2rem;
  letter-spacing: 0.03em;
}
.djeca-misao-box {
  background: #fffbea;
  border: 1.5px dashed #ffd700;
  border-radius: 0.6rem;
  padding: 1.3rem 1.1rem;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.08rem;
  color: #816306;
  box-shadow: 0 0.07rem 0.3rem rgba(250, 220, 50, 0.04);
  margin-bottom: 1.2rem;
}
@media (max-width: 767px) {
  .djeca-misao-box {
    min-height: 110px;
  }
}

/* Social share sidebar i ostalo ostaje nepromijenjeno */
.social-share {
  position: fixed;
  top: 35%;
  right: 18px;
  background: #fff;
  z-index: 999;
  border-radius: 2.2rem;
  box-shadow: 0 4px 16px rgba(40,80,147,0.09);
  padding: 0.6rem 0.7rem;
}
.social-share a {
  display: block;
  margin: 0.7rem 0;
  color: #285093;
  font-size: 1.4rem;
  text-decoration: none;
}
.social-share a:hover {
  color: #1a2947;
}

/* Responsive slike i figure */
figure img,
.card-img-top {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  background-color: #f8fafc;
}
/* OBRIŠI bilo koji stari height za .card-img-top! */

/* Ostale globalne prilagodbe */
body, html {
  scroll-behavior: smooth;
}
