/*breadcrumb*/

.custom-breadcrumb {
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  margin: 0;
}

.custom-breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.custom-breadcrumb li {
  display: flex;
  align-items: center;
  color: #000000;
}

.custom-breadcrumb a {
  color: #283C94;           /* Primär boja */
  text-decoration: none;
  transition: color 0.3s ease;
}

.custom-breadcrumb a:hover {
  color: #1B2E7E;           /* Akcent boja (tamnija nijansa) */
  text-decoration: underline;
}

.custom-breadcrumb .current {
  color: #FAA930;           /* Text boja za trenutnu stranicu */
  font-weight: 600;
  pointer-events: none;
}

/* Elegantni chevron separator (koristi tvoju sekundarnu boju) */
.custom-breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 10px;
  color: #3049B4;           /* Sekundäre boja */
  font-size: 18px;
  line-height: 1;
  opacity: 0.85;
}

/* Responsive prilagođavanje */
@media (max-width: 768px) {
  .custom-breadcrumb {
    font-size: 14px;
  }
  
  .custom-breadcrumb ol {
    gap: 6px;
  }
}

/*blog post card*/
/*
 * Adial Blog Cards — Custom CSS v2
 * Appearance → Customize → Additional CSS
 */

/* ── Grid kontejner ──────────────────────────────────────────────────────────── */

.blog .ast-row,
.archive .ast-row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1px !important;
    background-color: rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    padding: 0 !important;
    float: none !important;
}

/* ── Kartica — popravi Astrinu širinu i float ────────────────────────────────── */

.blog .ast-article-post,
.archive .ast-article-post {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    background: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
    padding: 2rem 1.75rem 1.75rem !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    transition: background 0.2s ease;
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
}

.blog .ast-article-post:hover,
.archive .ast-article-post:hover {
    background: #f8f8f6 !important;
}

/* ── Sakrij thumbnail ────────────────────────────────────────────────────────── */

.blog .ast-article-post .post-thumb,
.archive .ast-article-post .post-thumb {
    display: none !important;
}

/* ── Kategorija tag ──────────────────────────────────────────────────────────── */

.blog .ast-article-post .ast-taxonomy-container a,
.archive .ast-article-post .ast-taxonomy-container a {
    display: inline-block !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    padding: 3px 9px !important;
    border-radius: 100px !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    color: #888780 !important;
    text-decoration: none !important;
    background: transparent !important;
    margin-bottom: 0.9rem !important;
    white-space: normal !important;
}

/* ── Naslov ───────────────────────────────────────────────────────────────────── */

.blog .ast-article-post .entry-title,
.archive .ast-article-post .entry-title {
    word-break: normal !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    hyphens: auto !important;
}

.blog .ast-article-post .entry-title a,
.archive .ast-article-post .entry-title a {
    font-size: 1.25rem !important;
    line-height: 1.3 !important;
    color: #1a1a18 !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    word-break: normal !important;
    white-space: normal !important;
    display: block !important;
}

.blog .ast-article-post:hover .entry-title a,
.archive .ast-article-post:hover .entry-title a {
    text-decoration: underline !important;
    text-underline-offset: 4px;
}

/* ── Excerpt ──────────────────────────────────────────────────────────────────── */

.blog .ast-article-post .ast-excerpt-container p,
.archive .ast-article-post .ast-excerpt-container p {
    font-size: 13px !important;
    line-height: 1.65 !important;
    color: #6b6a63 !important;
    font-weight: 300 !important;
    margin-bottom: 1.5rem !important;
    white-space: normal !important;
}

/* ── Meta (datum) ─────────────────────────────────────────────────────────────── */

.blog .ast-article-post .entry-meta,
.archive .ast-article-post .entry-meta {
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    padding-top: 1rem !important;
    margin-top: auto !important;
    font-size: 11px !important;
    color: #aaa9a0 !important;
    letter-spacing: 0.05em;
}

.blog .ast-article-post .entry-meta a,
.archive .ast-article-post .entry-meta a {
    color: #aaa9a0 !important;
    text-decoration: none !important;
}

.blog .ast-article-post .entry-meta .posted-by,
.archive .ast-article-post .entry-meta .posted-by {
    display: none !important;
}

/* ── Responsive ──────────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
    .blog .ast-row,
    .archive .ast-row {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .blog .ast-row,
    .archive .ast-row {
        grid-template-columns: 1fr !important;
    }
}


/* footer*/

/* ============================================
   ADIAL FOOTER — Custom CSS
   WordPress → Appearance → Customize → Additional CSS
   ============================================ */

.adial-footer {
  background-color: #283C94;
  color: #ffffff;
  width: 100%;
  margin-top: 0;
}

/* ── Inner grid ── */
.adial-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
}

/* ── Logo ── */
.adial-footer__logo-link {
  display: inline-block;
  margin-bottom: 20px;
}

.adial-footer__logo {
  width: 180px;
  height: auto;
  display: block;
}

/* ── Tagline ── */
.adial-footer__tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 24px;
  max-width: 300px;
}

/* ── Address / Contact ── */
.adial-footer__address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.adial-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.5;
}

.adial-footer__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: #FAA930;
}

.adial-footer__icon svg {
  width: 16px;
  height: 16px;
}

/* ── Headings ── */
.adial-footer__heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #FAA930;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.adial-footer__heading--spaced {
  margin-top: 32px;
}

/* ── Lists ── */
.adial-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.adial-footer__list li::before {
  content: none;
}

/* ── Links ── */
.adial-footer__link {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  transition: color 0.2s ease;
  display: inline-block;
}

.adial-footer__link:hover {
  color: #FAA930;
  text-decoration: none;
}

/* ── Bottom bar ── */
.adial-footer__bottom {
  border-top: 1px solid #1B2E7E;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.adial-footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.adial-footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.50);
  margin: 0;
}

.adial-footer__copy--right {
  color: rgba(255, 255, 255, 0.38);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .adial-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 48px 24px 36px;
  }

  .adial-footer__col--brand {
    grid-column: 1 / -1;
  }

  .adial-footer__tagline {
    max-width: 100%;
  }
}

@media (max-width: 580px) {
  .adial-footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px 32px;
  }

  .adial-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 20px;
  }

  .adial-footer__logo {
    width: 150px;
  }
}

/* page header contact*/

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px; /* ili 50% za krug */
  text-decoration: none;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
}

.phone-btn {
  background: #046BD2;
  color: #fff;
}
.phone-btn:hover {
  background: #045CB4;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(4, 107, 210, 0.28);
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
}
.whatsapp-btn:hover {
  background: #1DA851;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.28);
}

/* novo */

.kliz-icon {
    animation: bounce-pulse 2.2s infinite ease-in-out;
}

@keyframes bounce-pulse {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-15px) scale(1.05);
    }
    60% {
        transform: translateY(-7px) scale(0.98);
    }
}


.slow-shake svg {
    display: inline-block;
    animation: slowShake 5s infinite ease-in-out;
}

@keyframes slowShake {
    0%, 75%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    78% {
        transform: translateX(3px) rotate(5deg);
    }
    81% {
        transform: translateX(-3px) rotate(-5deg);
    }
    84% {
        transform: translateX(2px) rotate(3deg);
    }
    87% {
        transform: translateX(-2px) rotate(-3deg);
    }
    90% {
        transform: translateX(1px) rotate(2deg);
    }
    93% {
        transform: translateX(0) rotate(0deg);
    }
}

.slow-pulse {
    animation: slowPulse 4.2s infinite ease-in-out;
}

.slow-pulse span {
    color: #FAA930;
    animation: colorShift 4.2s infinite ease-in-out;
}

/* Nežni puls (veličina) */
@keyframes slowPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.12);
    }
}

/* Lagano menjanje boje: narandžasta → bela → narandžasta */
@keyframes colorShift {
    0%, 100% {
        color: #FAA930;
    }
    50% {
        color: #ffffff;        /* bela */
    }
}