/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.site-footer {
  background: var(--accent-blush);
  margin-top: 0;
  border-top: 1px solid #7e4e62;
}
.site-footer .container {
  max-width: var(--page-width);
  margin-left: auto;
  margin-right: auto;
}

/* Flexbox layout for prefooter */
/* Glavni wrapper */
.prefooter {
  padding: 15px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-family: 'Figtree', sans-serif;

  margin-top: 1rem;
}

.prefooter .container {
  display: flex;
  justify-content: space-between; /* razdvaja leve i desne elemente */
  align-items: center; /* vertikalno centriranje */
  gap: 20px; /* razmak između kolona */
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Leva strana */
.prefooter-left p {
  font-size: 15px;
  color: #222;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Desna strana (naslov + ikonice) */
.prefooter-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Naslov “CONNECT WITH US” */
.prefooter-right .prefooter-left p {
  margin: 0;
  font-size: 14px;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Ikonice u liniji */
.prefooter-right .social-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.prefooter-right .social-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.prefooter-right .social-links li a:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* SVG ikone */
.prefooter-right .social-links img {
  width: 22px;
  height: 22px;
  display: block;
  filter: invert(0%) brightness(0) saturate(100%); /* crna boja */
}
.prefooter-right .social-links a:hover img {
  filter: invert(20%) brightness(80%) saturate(120%); /* efekat na hover */
}

/* ===== FOOTER LAYOUT ===== */
.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap; /* omogućava prelamanje na manjim ekranima */
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  /* background-color: #fff; */
  border-top: 1px solid #eee;
}

/* ===== POJEDINAČNE KOLONE ===== */
.footer-column {
 /* flex: 1 1 300px;  širina svake kolone, ali fleksibilna */
  min-width: 250px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

/* mala linija ispod naslova */
.footer-column h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: #000;
  margin-top: 6px;
}

/* ===== LINKOVI ===== */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  color: #444;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #7a3451;
  /* padding-left: 3px; */
}

.copyright {
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-column {
    flex: auto;
  } 
  
  .footer-columns {
    gap: 30px;
  }

  .footer-column h4 {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
  }

  .footer-column {
    width: 100%;
  }

  .footer-column h4 {
    font-size: 16px;
  }
}
