/* ══════════════════════════════════════════════════════
   footer.css — stil za skupni site-footer (vse jezikovne strani)
   ══════════════════════════════════════════════════════ */

.site-footer {
  background: #0d0d0d;
  color: #999;
  padding: 40px 20px 24px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.footer-age {
  display: inline-block;
  background: #E22222;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  margin-bottom: 14px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.footer-logo-text {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: #fff;
}

.footer-logo-dot {
  width: 9px;
  height: 9px;
  background: #E22222;
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
}

.footer-tagline {
  font-size: 13px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-bottom: 22px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 12px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.15s;
}
.footer-links a:hover { color: #E22222; }

.footer-cities {
  margin: 0 auto 16px;
  max-width: 640px;
  padding: 0 20px;
}
.footer-cities p {
  font-size: 11px;
  color: #555;
  line-height: 1.7;
}

.footer-divider {
  border: none;
  border-top: 1px solid #262626;
  max-width: 640px;
  margin: 0 auto 16px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 24px;
  padding: 0 12px;
}

.footer-copy {
  font-size: 12px;
  color: #666;
}

.footer-legal {
  display: flex;
  gap: 16px;
}
.footer-legal a {
  font-size: 12px;
  color: #666;
  text-decoration: none;
}
.footer-legal a:hover { color: #999; }

/* Mobile fine-tuning */
@media (max-width: 480px) {
  .site-footer { padding: 32px 16px 20px; }
  .footer-links { gap: 8px 14px; }
  .footer-links a { font-size: 12.5px; }
}
