.elementor-51 .elementor-element.elementor-element-ed4f192{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-b2bb0af *//* Naslov iznad gumba */
.dnevnik-share .share-header {
  text-align: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-bottom: 12px;
  font-family: 'Georgia', serif;
  letter-spacing: 0.5px;
}

/* Gumbi u redu */
.dnevnik-share .share-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.dnevnik-share::after {
  content: "✦";
  display: block;
  text-align: center;
  font-size: 16px;
  color: rgba(255, 204, 0, 0.4);
  margin-top: 16px;
  animation: twinkle 3s infinite ease-in-out;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}
.dnevnik-share {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(255, 204, 0, 0.03) 0%, rgba(0,0,0,0) 80%);
  box-shadow: 0 0 25px rgba(255, 204, 0, 0.04);
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-ed4f192 *//* Glavni kontejner */
.nebeski-vodic-stranica {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 20px 60px 20px;
  background: radial-gradient(circle at center, #0e0c1f, #090716);
  color: #f0e6d2;
  font-family: 'Georgia', serif;
  line-height: 1.8;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.5), 0 0 40px rgba(75, 0, 130, 0.3);
  z-index: 1;
}

/* Naslov */
.vodic-naslov h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  text-align: center;
  color: #ffcc88;
  margin-bottom: 10px;
}
.vodic-naslov p {
  text-align: center;
  color: #cfcfcf;
  font-style: italic;
  margin-bottom: 40px;
}
.vodic-naslov {
  margin-top: 30px;
}

/* Sadržaj */
.nebeski-vodic-sadrzaj h2 {
  font-size: 1.6rem;
  color: #ffcc88;
  margin-top: 40px;
  margin-bottom: 10px;
}
.nebeski-vodic-sadrzaj ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}
.nebeski-vodic-sadrzaj li {
  margin-bottom: 15px;
}
.nebeski-vodic-sadrzaj blockquote {
  font-style: italic;
  color: #d0c9b6;
  border-left: 3px solid #ffcc88;
  padding-left: 15px;
  margin: 20px 0;
}
.nebeski-vodic-sadrzaj {
  animation: fadeInVodic 2.5s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-delay: 0.4s;
}
@keyframes fadeInVodic {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nebeski-vodic-sadrzaj h2:hover {
  color: #ffe9b8;
  text-shadow: 0 0 8px rgba(255, 204, 136, 0.5);
  transition: all 0.9s ease-in-out;
}

/* Separator */
.vodic-separator {
  text-align: center;
  margin: 40px 0 20px 0;
  font-size: 1.6rem;
  color: #ffcc88;
  text-shadow: 0 0 8px rgba(255, 204, 136, 0.5);
}

/* Animirani Mjesec */
.animirani-mjesec {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at center, #fff8cc, #f0e6d2);
  background: radial-gradient(circle at 30% 30%, #fff8cc 60%, #0e0c1f 65%);

  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  z-index: 10;
  animation: mjesecSjaj 4s ease-in-out infinite, lebdenje 6s ease-in-out infinite;
}
@keyframes mjesecSjaj {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.8);
  }
}
@keyframes lebdenje {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-6px);
  }
}

/* Svjetlucave zvjezdice */
.svjetlucave-zvijezde {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.zvijezda {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #fff8cc;
  border-radius: 50%;
  opacity: 0;
  animation: blinkStar 8s infinite;
}
.zvijezda:nth-child(2) {
  animation-delay: 3s;
}
.zvijezda:nth-child(3) {
  animation-delay: 6s;
}
@keyframes blinkStar {
  0%, 90%, 100% {
    opacity: 0;
    transform: scale(1);
  }
  45%, 55% {
    opacity: 1;
    transform: scale(1.6);
  }
}

/* Canvas za zvjezdano nebo */
#starCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.meteor {
  position: fixed;
  top: -10px;
  left: -10px;
  width: 2px;
  height: 80px;
  background: linear-gradient(45deg, #fff, transparent);
  opacity: 0;
  animation: meteorMove 10s linear infinite;
  z-index: 2;
}

@keyframes meteorMove {
  0% {
    transform: translate(0, 0) rotate(45deg);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  15% {
    transform: translate(500px, 500px) rotate(45deg);
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translate(1000px, 1000px) rotate(45deg);
  }
}
.astro-footer {
  text-align: center;
  color: #d8cfc0;
  font-style: italic;
  margin-top: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 2.5s ease, transform 2.5s ease;
}
.astro-footer.visible {
  opacity: 0.85;
  transform: translateY(0);
}
.svjetlosna-traka {
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #ffe8b2, #ffcc88, #ffe8b2);
  margin: 30px auto 0 auto;
  border-radius: 2px;
}
.svjetlosna-traka.aktivna {
  animation: prodiSvjetlo 2.5s ease-out forwards;
}
@keyframes prodiSvjetlo {
  0% {
    width: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    width: 80%;
    opacity: 1;
  }
}
.astro-vizija {
  text-align: center;
  font-size: 1rem;
  font-style: italic;
  color: #f0e6d2;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: pojaviVizija 3s ease-out 2.5s forwards;
}

@keyframes pojaviVizija {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.astro-tipkanje {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1rem;
  color: #ffecd1;
  font-style: italic;
  font-family: 'Georgia', serif;
  min-height: 24px;
  position: relative;
}

.kursor {
  display: inline-block;
  animation: blink 1s step-start infinite;
  color: #ffcc88;
  font-weight: bold;
}

@keyframes blink {
  50% { opacity: 0; }
}

.auricno {
  color: #ffe9b8;
  text-shadow: 0 0 8px #ffdd88, 0 0 12px #f6c888;
  font-weight: bold;
}
.astro-tipkanje {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 40px;
  font-size: 1.2rem;
  color: #ffecd1;
  font-style: italic;
  font-family: 'Georgia', serif;
}
.nebeski-vodic-stranica::before {
  content: "♓ ♍ ♈ ♑ ♎ ♋";
  font-size: 120px;
  position: absolute;
  top: 20%;
  left: 10%;
  color: rgba(255, 236, 209, 0.035);
  pointer-events: none;
  z-index: 0;
  white-space: pre;
  line-height: 1.5;
  transform: rotate(-20deg);
}
.nebeski-vodic-sadrzaj h2:hover {
  color: #ffe9b8;
  text-shadow:
    0 0 6px rgba(255, 204, 136, 0.4),
    0 0 12px rgba(255, 236, 209, 0.5),
    0 0 18px rgba(255, 204, 136, 0.3);
  transform: scale(1.02);
  transition: all 0.6s ease-in-out;
}
.nebeski-vodic-stranica::after {
  content: "";
  position: absolute;
  top: -100px;
  left: -50px;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(186, 127, 255, 0.05), transparent 60%),
              radial-gradient(circle at 70% 60%, rgba(255, 218, 185, 0.04), transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.plutajuci-simboli {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.lebdeci-zodiak {
  display: inline-block;
  font-size: 1.4rem;
  margin-left: 6px;
  animation: lebdiMalo 6s ease-in-out infinite;
  transition: color 0.4s ease;
  cursor: default;
}

.lebdeci-zodiak:hover {
  color: #ffcc88;
}

/* Pastel boje po planetima */
.merkurov {
  color: rgba(173, 216, 230, 0.4); /* svijetloplava */
}
.venerin {
  color: rgba(255, 192, 203, 0.4); /* roza */
}
.marsov {
  color: rgba(255, 160, 122, 0.4); /* svijetlonarančasta/crvenkasta */
}

@keyframes lebdiMalo {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-4px) rotate(6deg);
  }
}
.ovan {
  color: rgba(255, 180, 120, 0.7); /* topla narančasto-crvena */
}

.ribe {
  color: rgba(173, 216, 230, 0.7); /* akvamarin plava */
}
.djevica {
  color: rgba(240, 230, 200, 0.7); /* zemljani ton, prigušeno zlatno-bež */
}
.lebdeci-zodiak {
  font-family: 'Segoe UI Symbol', 'Arial Unicode MS', 'Georgia', serif;
}
.interaktivni-horoskop-blok {
  margin-top: 60px;
  padding: 40px 20px;
  background: radial-gradient(circle at center, #1a162b, #0f0c1a);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.2);
  color: #f0e6d2;
  text-align: center;
}

.naslov-horoskop {
  font-family: 'Cormorant Garamond', serif;
  color: #ffcc88;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.interaktivni-horoskop {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.zodijak-znak {
  cursor: pointer;
  margin: 8px;
  display: inline-block;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
  color: #ffe9b8;
}

.zodijak-znak:hover {
  transform: scale(1.3);
  text-shadow: 0 0 8px rgba(255, 204, 136, 0.7);
}

.horoskop-poruka {
  font-style: italic;
  font-size: 1.1rem;
  color: #ffecd1;
  margin-top: 20px;
  min-height: 32px;
}
.zodijak-znak.kliknuto {
  animation: zasjaji 0.6s ease-out;
}

@keyframes zasjaji {
  0% {
    text-shadow: 0 0 0px transparent;
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 14px #ffcc88;
    transform: scale(1.4);
  }
  100% {
    text-shadow: 0 0 0px transparent;
    transform: scale(1);
  }
}
.aktivan-znak {
  color: #ffddaa !important;
  text-shadow: 0 0 8px #ffcc88, 0 0 14px rgba(255, 204, 136, 0.5);
  transform: scale(1.2);
}/* End custom CSS */