/* ====================================================================
   Aurel Design — custom.css
   Dopune uz postojeći /aurel/assets/css/style.css za nove podstranice.
   Koristi iste boje (#3498db / #2383c4 / #55acee) i fontove (Raleway,
   Open Sans) kao i postojeća stranica — ne mijenja postojeći izgled.
   ==================================================================== */

/* --- Jezični prekidač (preneseno iz inline stila u index.html) --- */
.language-switcher {
  position: fixed; top: 20px; right: 20px; z-index: 1000;
  display: flex; gap: 10px;
}
@media (max-width: 992px) { .language-switcher { right: 60px; } }
@media (max-width: 768px) { .language-switcher { right: 45px; top: 15px; } }
.language-switcher a {
  display: inline-block; opacity: 0.7; transition: opacity 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 3px;
  padding: 2px; background: rgba(0, 0, 0, 0.2);
}
.language-switcher a:hover { opacity: 1; background: rgba(0, 0, 0, 0.4); }
.language-switcher a.active-lang {
  opacity: 1; border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
.language-switcher a img { display: block; }

/* --- Logo kao <p> (isti izgled kao #header .logo h1 na postojećoj) --- */
#header .logo .logo-p {
  font-size: 34px; margin: 0; padding: 0; line-height: 1;
  font-weight: 700; letter-spacing: 1px; font-family: 'Montserrat', sans-serif;
}
#header .logo .logo-p a, #header .logo .logo-p a:hover { color: #55acee; text-decoration: none; }

/* --- Naslovna traka podstranica (isti gradijent kao hero) --- */
.page-title-band {
  padding: 140px 0 60px;
  background: linear-gradient(rgba(55, 142, 181, 0.55), rgba(55, 142, 181, 0.35)),
              url("../img/hero-bg.jpg") top center / cover no-repeat;
  color: #fff;
}
.page-title-band .page-eyebrow {
  font-family: "Raleway", sans-serif; text-transform: uppercase;
  letter-spacing: 2px; font-size: 14px; margin-bottom: 8px; color: #fff; opacity: 0.9;
}
.page-title-band .page-h1 {
  font-family: "Raleway", sans-serif; font-weight: 700; color: #fff;
  font-size: 42px; margin-bottom: 12px; text-shadow: -1px 0 2px #2f4d5a;
}
.page-title-band .page-lead {
  color: #fff; font-size: 18px; max-width: 760px; margin-bottom: 0;
  text-shadow: 0 1px 2px rgba(47, 77, 90, 0.6);
}
@media (max-width: 768px) { .page-title-band .page-h1 { font-size: 30px; } }

/* --- Sekcije sadržaja podstranica --- */
.content-section { padding: 60px 0; }
.content-section .section-title { padding-bottom: 20px; }
.content-section p { color: #444444; }

/* --- Checklist i koraci --- */
.checklist { list-style: none; padding-left: 0; margin-top: 15px; }
.checklist li { padding: 4px 0; color: #444444; }
.checklist li i { color: #3498db; margin-right: 8px; vertical-align: middle; }
.steps { margin-top: 15px; padding-left: 20px; }
.steps li { margin-bottom: 10px; color: #444444; }
.steps li::marker { color: #3498db; font-weight: 700; }

/* --- FAQ (details/summary) --- */
.faq-item { border-bottom: 1px solid #e1f0fa; padding: 14px 0; }
.faq-item summary {
  cursor: pointer; font-family: "Raleway", sans-serif; font-weight: 600;
  font-size: 17px; color: #222222; list-style: none; position: relative; padding-right: 30px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 0; color: #3498db; font-size: 22px; line-height: 1;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item[open] summary { color: #3498db; }
.faq-item p { margin: 10px 0 0; color: #444444; }

/* --- Cjenik (na icon-box podlozi postojećeg stila) --- */
.price-box { width: 100%; text-align: left; }
.price-box .title { text-align: center; }
.price-box .price {
  text-align: center; font-family: "Raleway", sans-serif;
  font-size: 34px; font-weight: 700; color: #3498db; margin: 8px 0 4px;
}
.price-box .description { text-align: center; min-height: 48px; }
.price-featured { border: 2px solid #3498db; box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15); }
.price-disclaimer { font-size: 14px; color: #777777; margin-top: 10px; }

/* --- CTA gumb (isti stil kao .call-to-action .cta-btn, plava varijanta) --- */
.cta-btn, .cta-btn:visited {
  font-family: "Lato", "Open Sans", sans-serif; font-weight: 400; font-size: 16px;
  letter-spacing: 1px; display: inline-block; padding: 8px 28px 10px;
  border-radius: 25px; transition: 0.5s; border: 2px solid #fff; color: #fff; text-decoration: none;
}
.cta-btn:hover { background: #3498db; border-color: #3498db; color: #fff; }
.cta-btn-blue, .cta-btn-blue:visited { border-color: #3498db; color: #3498db; }
.cta-btn-blue:hover { background: #3498db; color: #fff; }

/* --- Povezane usluge (chipovi) --- */
.related-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.related-chip {
  display: inline-block; padding: 8px 22px; border-radius: 25px;
  border: 1px solid #3498db; color: #3498db; text-decoration: none; transition: 0.3s;
}
.related-chip:hover { background: #3498db; color: #fff; text-decoration: none; }

/* --- Blog kartice (na portfolio-wrap podlozi) --- */
.blog-card { height: 100%; }
.blog-card-body { padding: 25px; }
.blog-date {
  font-family: "Raleway", sans-serif; text-transform: uppercase;
  letter-spacing: 1px; font-size: 13px; color: #3498db; margin-bottom: 8px;
}
.blog-card h4 { font-size: 19px; font-family: "Raleway", sans-serif; font-weight: 600; }
.blog-card h4 a { color: #222222; }
.blog-card h4 a:hover { color: #3498db; }
.blog-more { color: #3498db; font-weight: 600; }

/* --- Članci --- */
.article-body h2 {
  font-family: "Raleway", sans-serif; font-weight: 600; font-size: 24px;
  color: #222222; margin: 30px 0 12px;
}
.article-body p { color: #444444; }

/* --- Portfolio: naslov u infou može biti link --- */
.portfolio .portfolio-info h4 a { color: inherit; }
.portfolio .portfolio-info h4 a:hover { color: #3498db; }

/* --- Kontakt info uz formu --- */
.contact-info h3 { color: #3498db; font-family: "Raleway", sans-serif; font-weight: 700; }
.contact-info .checklist li { color: #444444; }

/* --- Blog kartice: bijele, klikabilne, bez portfolio overlaya --- */
.blog-card {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 5px 25px rgba(52, 152, 219, 0.10);
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(52, 152, 219, 0.18);
}
.blog-card p { color: #444444; }

/* --- Cjenik: na hover icon-boxa (plava pozadina) svi plavi elementi postaju bijeli --- */
.price-box:hover .price,
.price-box:hover .checklist li,
.price-box:hover .checklist li i,
.price-box:hover .price-note { color: #fff; }
.price-box:hover .cta-btn-blue,
.price-box:hover .cta-btn-blue:visited { border-color: #fff; color: #fff; }
.price-box:hover .cta-btn-blue:hover { background: #fff; color: #3498db; }
.price-featured:hover { border-color: #fff; }

/* --- Anti-spam e-mail (obrnuti tekst, kao na postojećim pravnim stranicama) --- */
.rtl { unicode-bidi: bidi-override; direction: rtl; }

/* --- Pravne stranice --- */
.privacyterms h3 {
  font-family: "Raleway", sans-serif; font-weight: 600; font-size: 20px;
  color: #222222; margin: 28px 0 10px;
}
.privacyterms p, .privacyterms li { color: #444444; }
.privacyterms ul { padding-left: 20px; }
.privacyterms li { margin-bottom: 10px; }
