/* =======================================================
   CUSTOM.CSS — Zlatna d.o.o.
   Poboljšanja stila, margine, padding, fontovi, responsivnost
   ======================================================= */

/* ---- Globalne varijable ---- */
:root {
  --zl-primary:    #E63619;
  --zl-dark:       #1D1D1D;
  --zl-muted:      #6b7280;
  --zl-border:     #e5e7eb;
  --zl-radius:     12px;
  --zl-shadow:     0 4px 24px rgba(0,0,0,.08);
  --zl-shadow-lg:  0 12px 40px rgba(0,0,0,.14);
  --zl-transition: .3s ease;
}

/* ---- Tipografija ---- */
body { font-size: 15px; line-height: 1.72; }
p    { line-height: 1.78; }
h6   { letter-spacing: 1.5px; }

/* Section padding */
.section-padding { padding: 80px 0; }
@media (max-width: 991px)  { .section-padding { padding: 60px 0; } }
@media (max-width: 575px)  { .section-padding { padding: 44px 0; } }

/* Section title */
.gt-section-title h6 {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--zl-primary);
  margin-bottom: 8px;
}
.gt-section-title h2 { margin-top: 6px; }

/* ================================================================
   HERO — originalni split layout + centralni logo
   ================================================================ */

/* Logo centriran iznad tekst+image reda */
.hero-logo-top {
  text-align: center;
  margin-bottom: 28px;
}
.hero-logo-top img {
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,.6));
}
@media (max-width: 991px) {
  .hero-logo-top img { max-width: 180px; }
  .hero-logo-top { margin-bottom: 18px; }
}
@media (max-width: 575px) {
  .hero-logo-top img { max-width: 140px; }
  .hero-logo-top { margin-bottom: 14px; }
}

/* Smanji gornji padding heroja da logo ima mjesta */
.gt-hero-1 { padding-top: 100px !important; }
@media (max-width: 1199px) { .gt-hero-1 { padding-top: 80px !important; } }
@media (max-width: 767px)  { .gt-hero-1 { padding-top: 60px !important; } }

/* ================================================================
   BRENDOVI
   ================================================================ */
.gt-brand-section {
  background: #fff;
  border-top: 1px solid var(--zl-border);
  border-bottom: 1px solid var(--zl-border);
  padding: 8px 0;
}

/* ================================================================
   SERVICE CARDS — slike od ruba do ruba kartice
   ================================================================ */

/* Kartica: overflow hidden + border-radius na razini kartice */
.gt-service-card-items {
  border-radius: var(--zl-radius) !important;
  overflow: hidden !important;
  box-shadow: var(--zl-shadow);
  transition: transform var(--zl-transition), box-shadow var(--zl-transition);
  background: #fff;
}
.gt-service-card-items:hover {
  transform: translateY(-5px);
  box-shadow: var(--zl-shadow-lg);
}

/* Thumb: nema border-radius, nema margin — od ruba do ruba */
.gt-service-card-items .gt-thumb {
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  height: 260px;
  overflow: hidden;
  display: block;
}
.gt-service-card-items .gt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 !important;
}

/* Content ispod slike */
.gt-service-card-items .gt-content {
  padding: 22px 24px 28px !important;
}
.gt-service-card-items .gt-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

/* ================================================================
   WHY / PURPOSES section
   ================================================================ */
.gt-purposes-wrapper { padding: 80px 0; }
@media (max-width: 991px) { .gt-purposes-wrapper { padding: 60px 0; } }

/* ================================================================
   CONTACT — kartice
   ================================================================ */
.contact-card {
  border-radius: var(--zl-radius) !important;
  transition: transform var(--zl-transition), box-shadow var(--zl-transition);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.1) !important;
}
.contact-card h4 { font-size: 1.05rem; margin-bottom: 10px; }
.contact-card a  { color: var(--zl-dark); }
.contact-card a:hover { color: var(--zl-primary); }
.contact-card li { margin-bottom: 6px; font-size: 14px; }

/* ================================================================
   FORMA — kontakt
   ================================================================ */
.contact-form-wrap { border-radius: var(--zl-radius) !important; }
.contact-form-wrap h2 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); margin-bottom: 20px; }

.contact-form-wrap .form-control,
.contact-form-wrap textarea {
  border-radius: 9px !important;
  border: 1px solid #d1d5db !important;
  padding: 11px 14px !important;
  font-size: 14px !important;
  color: #111 !important;
  background: #fff !important;
  transition: border-color var(--zl-transition), box-shadow var(--zl-transition);
}
.contact-form-wrap .form-control:focus,
.contact-form-wrap textarea:focus {
  border-color: var(--zl-primary) !important;
  box-shadow: 0 0 0 3px rgba(230,54,25,.1) !important;
  outline: none;
}
.contact-form-wrap .form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--zl-dark);
  margin-bottom: 5px;
}

#form-result, #modal-form-result {
  border-radius: 9px;
  font-size: 14px;
  padding: 12px 16px;
}

/* Modal kontakt forma */
.gt-join-club-form .form-clt input,
.gt-join-club-form .form-clt textarea {
  border-radius: 9px !important;
  border: 1px solid #d1d5db !important;
  padding: 11px 14px !important;
  font-size: 14px !important;
  width: 100%;
}
.gt-join-club-form .form-clt input:focus,
.gt-join-club-form .form-clt textarea:focus {
  border-color: var(--zl-primary) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(230,54,25,.1) !important;
}

/* ================================================================
   FOOTER
   ================================================================ */
.gt-footer-section {
  font-size: 14px;
}
.gt-footer-section p {
  font-size: 14px;
  line-height: 1.78;
  color: rgba(255,255,255,.62);
}
.gt-footer-widget-items .gt-widget-head h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--zl-primary);
  display: inline-block;
}
.gt-list-area li {
  font-size: 13px;
  margin-bottom: 9px;
  color: rgba(255,255,255,.62);
}
.gt-list-area li a {
  color: rgba(255,255,255,.62);
  transition: color var(--zl-transition), padding-left var(--zl-transition);
}
.gt-list-area li a:hover {
  color: var(--zl-primary);
  padding-left: 4px;
}

/* Contact lista u footeru — sprječava prelom telefona/adrese */
.gt-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gt-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 12px;
  color: rgba(255,255,255,.62);
  flex-wrap: nowrap;
}
.gt-contact-list li .icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.gt-contact-list li .icon span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  white-space: nowrap;
}
.gt-contact-list li > a,
.gt-contact-list li > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(255,255,255,.82);
}
.gt-contact-list a { color: rgba(255,255,255,.82); }
.gt-contact-list a:hover { color: var(--zl-primary); }

/* Simpler contact list for footer — replace icon-based with icon-font */
.gt-footer-contact-simple {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gt-footer-contact-simple li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 12px;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}
.gt-footer-contact-simple li i {
  flex-shrink: 0;
  width: 14px;
  margin-top: 2px;
  color: var(--zl-primary);
  font-size: 12px;
}
.gt-footer-contact-simple li a,
.gt-footer-contact-simple li span {
  color: rgba(255,255,255,.82);
}
.gt-footer-contact-simple li a { white-space: nowrap; }
.gt-footer-contact-simple li a:hover { color: var(--zl-primary); }

.footer-bottom {
  font-size: 12px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  margin-top: 10px;
  color: rgba(255,255,255,.4);
}
.footer-bottom b { color: rgba(255,255,255,.72); }

.gt-footer-widget-wrapper {
  padding-top: 52px;
  padding-bottom: 20px;
}

/* Footer logo */
.gt-footer-logo img {
  max-width: 150px;
  margin-bottom: 16px;
}

/* Newsletter */
.gt-footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin: 24px 0;
}
.gt-newsletter-content h3 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 14px;
}
.gt-newsletter-content .form-clt {
  display: flex;
  gap: 0;
}
.gt-newsletter-content .form-clt input {
  border-radius: 6px 0 0 6px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
  padding: 10px 16px;
  font-size: 13px;
  min-width: 200px;
  flex: 1;
}
.gt-newsletter-content .form-clt input::placeholder { color: rgba(255,255,255,.45); }

/* Social ikone u footeru */
.gt-social-icon a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: 13px;
  margin-right: 6px;
  transition: var(--zl-transition);
}
.gt-social-icon a:hover {
  background: var(--zl-primary);
  border-color: var(--zl-primary);
  color: #fff;
}

/* ================================================================
   BREADCRUMB
   ================================================================ */
.gt-breadcrumb-wrapper {
  position: relative;
  padding: 70px 0;
}
.gt-breadcrumb-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.52);
}
.gt-breadcrumb-wrapper > * { position: relative; z-index: 1; }
.gt-breadcrumb-wrapper .gt-page-heading { text-align: center; }
.gt-breadcrumb-wrapper h1 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); color: #fff; }
.gt-breadcrumb-wrapper .gt-breadcrumb-items {
  display: flex;
  gap: 8px;
  justify-content: center;
  color: rgba(255,255,255,.85);
  margin-top: 10px;
  font-size: 14px;
}
.gt-breadcrumb-wrapper .gt-breadcrumb-items a { color: rgba(255,255,255,.85); }
.gt-breadcrumb-wrapper .gt-breadcrumb-items a:hover { color: var(--zl-primary); }

/* ================================================================
   RESPONZIVNOST
   ================================================================ */
@media (max-width: 575px) {
  .gt-footer-newsletter { flex-direction: column; align-items: flex-start; }
  .gt-newsletter-content .form-clt { flex-direction: column; gap: 8px; }
  .gt-newsletter-content .form-clt input { min-width: unset; border-radius: 6px; }
  .footer-bottom { text-align: center; }
}
