.site-footer{
  width: 100%;
  background: var(--white);
}

.site-footer .footer-inner{
  max-width: 1380px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Menu */
.site-footer .footer-menu{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer .footer-menu li{
  margin: 0;
  padding: 0;
}

.site-footer .footer-menu a{
  display: inline-flex;
  align-items: center;

  font-size: 12px;
  line-height: 1.2;

  color: var(--heading-color);
  text-decoration: none;

  padding: 10px;           /* რომ hover-ზე არ “ხტებოდეს” */
  border-radius: 5px;
  background: transparent;

  transition: background-color .15s ease, color .15s ease, outline-color .15s ease;
}

/* Active item */
.site-footer .footer-menu .current-menu-item > a,
.site-footer .footer-menu .current-menu-ancestor > a,
.site-footer .footer-menu .current-menu-parent > a{
  color: var(--white);
  background: var(--adjarnet-color, var(--adjaranet-color));
}

/* Hover / Focus (accessibility) */
.site-footer .footer-menu a:hover,
.site-footer .footer-menu a:focus-visible{
  color: var(--white);
  background: var(--adjarnet-color, var(--adjaranet-color));
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* Copyright */
.site-footer .footer-copyright{
  font-size: 12px;
  line-height: 1.2;
  color: var(--heading-color);
  white-space: nowrap;
}



/* --- Footer responsive --- */
@media (max-width: 1024px){
  .site-footer .footer-inner{
    padding: 14px 14px;
    gap: 12px;
  }

  /* menu stays left, copyright goes right but can wrap nicely */
  .site-footer .footer-menu{
    gap: 8px;
  }

  .site-footer .footer-menu a{
    padding: 9px 10px;
    font-size: 12px;
  }

  .site-footer .footer-copyright{
    margin-left: auto;
    font-size: 12px;
  }
}

@media (max-width: 560px){
  .site-footer .footer-inner{
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer .footer-menu{
    width: 100%;
  }

  /* copyright goes under menu, aligned left (clean on very small screens) */
  .site-footer .footer-copyright{
    margin-left: 0;
    width: 100%;
    white-space: normal;
  }
}

/* Optional: bigger tap targets on touch devices */
@media (hover: none){
  .site-footer .footer-menu a{
    min-height: 40px;
  }
}


#colophon { margin-top: 50px; }